I noticed an error_log file in the root of my Drupal with the following message:
[21-Jan-2009 19:15:43] PHP Warning: PHP Startup: Unable to load dynamic library '/usr/local/lib/php/extensions/no-debug-non-zts-20060613/ixed.5.2.lin' - /usr/local/lib/php/extensions/no-debug-non-zts-20060613/ixed.5.2.lin: undefined symbol: executor_globals in Unknown on line 0
[21-Jan-2009 19:15:45] PHP Warning: MySQL server has gone away
query: SELECT * FROM system WHERE type = 'theme' in /home/keghart/public_html/includes/database.mysql.inc on line 128
[21-Jan-2009 19:15:45] PHP Warning: MySQL server has gone away
query: UPDATE sessions SET uid = 1, cache = 1232581212, hostname = '99.245.34.155', session = 'FCKeditor|a:2:{s:13:\"UserFilesPath\";s:21:\"/sites/default/files/\";s:21:\"UserFilesAbsolutePath\";s:46:\"/home/keghart/public_html/sites/default/files/\";}', timestamp = 1232586945 WHERE sid = '802acffed9e897faec16389f42521269' in /home/keghart/public_html/includes/database.mysql.inc on line 128
[21-Jan-2009 19:15:45] PHP Warning: MySQL server has gone away
query: UPDATE users SET access = 1232586945 WHERE uid = 1 in /home/keghart/public_html/includes/database.mysql.inc on line 128

Anyone know how to fix this issue?

Comments

wwwizards’s picture

having the same problem

darumaki’s picture

And here I thought I was the only one getting this, has anyone figured out what it could be ?

I saw this one http://drupal.org/node/1125 it's an old post, not sure how relevant it is today.

dtabach’s picture

I have 4 Drupal sites running in the same ISP.
The 3 Drupal 5.x sites are having this problem. The Drupal 6.x site is OK.
All sites are apparently working fine, but these error_log files usually become hundreds of MBs big, making me run out of disk space.
Then I delete the error_logs and everything works again for a few days, untill new error_log files with hundreds of MBs are created again...

Durval Tabach

vako’s picture

Try disabling your modules one-by-one until you find the culprit.

velpan’s picture

For the warning

[21-Jan-2009 19:15:43] PHP Warning: PHP Startup: Unable to load dynamic library '/usr/local/lib/php/extensions/no-debug-non-zts-20060613/ixed.5.2.lin' - /usr/local/lib/php/extensions/no-debug-non-zts-20060613/ixed.5.2.lin: undefined symbol: executor_globals in Unknown on line 0

search the region [exif] inside your php.ini

[exif]
; Exif UNICODE user comments are handled as UCS-2BE/UCS-2LE and JIS as JIS. 
; With mbstring support this will automatically be converted into the encoding
; given by corresponding encode setting. When empty mbstring.internal_encoding 
; is used. For the decode settings you can distinguish between motorola and 
; intel byte order. A decode setting cannot be empty.
;exif.encode_unicode = ISO-8859-15
;exif.decode_unicode_motorola = UCS-2BE
;exif.decode_unicode_intel    = UCS-2LE
;exif.encode_jis = 
;exif.decode_jis_motorola = JIS
;exif.decode_jis_intel    = JIS

; Local Variables:
; tab-width: 4
; End:

;extension=ixed/ixed.5.2.lin

and put a semicolon at last line, to disable this extension.