Received this error

Uncaught exception thrown in session handler

Then my site because frozen. Any suggestions for salvage?

Comments

slater101’s picture

Now this error appears when page finally loads

PDOException: SQLSTATE[42000] [1203] User ventbbxc_slater already has more than 'max_user_connections' active connections in lock_may_be_available() (line 164 of /home/ventbbxc/public_html/includes/lock.inc).

UPDATE:

and now this

Fatal error: Allowed memory size of 268435456 bytes exhausted (tried to allocate 71 bytes) in /home/ventbbxc/public_html/includes/theme.inc on line 978

NO matter how much I increase the PHP.ini files allowances it always shows "Tried to allocate 71 bytes" or max script time up.

(I moved my ram allowance up to 1 gig and time allowance up to 30 minutes) just to try and get this to work. :-(

UPDATE: Used phpmyadmin to turn it off. Got into the site, checked it in modules page. It is off, tryd to delete the file and got an error so I flushed cache and ran cron then deleted files..

Back to a working website..

Still would like to have this module.

Is there a way I can manually uninstall this script?

civicpixel’s picture

After updating several of our sites to D7.7 we experienced the same issue with this module. Basically everything would time out / use up as much memory as the server would allocate.

My guess is this is related to the issue with some other contrib modules discussed here: http://drupal.org/node/1232346

A temporary solution can be had by removing use of the l() function in creativecommons_get_metadata_description, changing those to standard links resolves the issue. An easier hack for those that need it is to comment out line 81 in includes/creativecommons.views.inc:
//'help' => creativecommons_get_metadata_description($key),

olafkarsten’s picture

The comment out 'hack' works. But the issue isn't related to the one mentioned in #2. Even if you let creativecommons_get_metadata_description() return a plain string, the site crashes. I didn't find the cause yet. I don't even have an Idea.

fizk’s picture

Just ran into this issue too.

Taxoman’s picture

Title: After install Site frozen » Site freezes after installing CreativeCommons
Version: 7.x-1.0-alpha1 » 7.x-1.x-dev
Component: Miscellaneous » Code

Subscribing

tomogden’s picture

Yep, got it here too.

The INSTALL.txt instructions say to load the database table using the creativecommons.mysql file, but I don't see such a file included.

torbjoernk’s picture

This issue seems to be serious. I tried enabling this module on D7.10 but got into an infinite loop, memory exhaustion and HTTP_ERROR 510 in includes/theme.inc:609. Manually disabling the module in the DB by

UPDATE system SET status=0 WHERE name='creativecommons';

fixed the issue. To be sure I deleted sites/all/modules/creativecommons and run cron with drush.

Would be really great, this issue can be solved.

brammer’s picture

Subscribing