All is well except for I get the following errors when hovertip is enabled;
warning: filemtime() [function.filemtime]: stat failed for ?q=hovertip/settings_js in /home/openbior/public_html/bioreg/modules/javascript_aggregator/javascript_aggregator.module on line 49.
warning: file_get_contents(?q=hovertip/settings_js) [function.file-get-contents]: failed to open stream: No such file or directory in /home/openbior/public_html/bioreg/modules/javascript_aggregator/javascript_aggregator.module on line 68.
I have tried excluding hovertip from aggregation and can cofirm that it is not aggregating but the error remains.
Comments
Comment #1
nathanraft commentedAlso... hovertip stops working. It uses a global include for the js set on the settings page. here is the code.
Comment #2
derjochenmeyer commentedjust make sure... this is not an update issue? ... the version 1.3 of javascript aggregator was just released yesterday... did you try and have the same problem with version 1.2 ...
Comment #3
nathanraft commentedNot an upgrade problem...I have not tried 1.2...went straight to 1.3.
Thanks for the great module... just really need hovertip working to use this becuase I have text incorporated in so many places already.
Comment #4
derjochenmeyer commentedThe problem is that hovertip does something very unusual. It adds a javascript snippet with drupal_add_js() function. Here is the code from the hovertip module. This is not a file ("?q=hovertip/settings_js") and thats causing the error...
There are 2 things that you can try (try ONE of the both):
1. add
?q=hovertip/settings_jsto the exclusion list of the js aggregator on admin/settings/performance2. Hack the hovertip module and change the funtion above to the following just adding
, $scope = 'inline'Comment #5
nathanraft commentedI tried both of these and still get the error. I found this post for hovertip http://drupal.org/node/203088 and confirmed that using
drupal_add_js(_hovertip_get_javascript(), 'inline'); </code in the place of <code> drupal_add_js('?q=hovertip/settings_js', $scope = 'inline');solved the problem. Have posted a bug report. Thanks for taking the time to look into this and to point me in the right direction.Comment #6
robloachThe the exclude rule to avoid aggregating hovertip.
Comment #7
Anonymous (not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.