Tell me more ×
Drupal Answers is a question and answer site for Drupal developers and administrators. It's 100% free, no registration required.

Trying to setup the latest jquery update dev version, needed for the installation of the amazing social_count mobile-friendly count widget, I can't configure the module. When logging as user #1 and going to http://www.example.com/admin/config/development/jquery_update, all I get is access denied. I tried 'drush cc all' to clear the cache but in vain. Any ideas?

share|improve this question
Note - this is an admin user and it has the 'administer site configuration' pemission needed by hook_menu of the jquery_update module – Druvision Jan 21 at 0:19
As a bypass, I've added the needed version manually into jquery_update.module: $version = variable_get('jquery_update_jquery_version', '1.7'); – Druvision Jan 21 at 1:04
add comment (requires an account with 50 reputation)

1 Answer

Jquery Update doesn't implement hook_menu but instead uses form_alter with jquery_update_form_system_performance_settings_alter

You can find the configuration options at admin/config/development/performance.

share|improve this answer
No, the configuration option is not there. – Druvision Jan 21 at 12:51
Still unresolved – Druvision May 5 at 10:24
add comment (requires an account with 50 reputation)

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.