PHP Startup: Unable to load dynamic library
Has anyone else come across this repeated issue in their error logs? Mine is full of these two lines repeated (over 900 ,000 counts in just over a month):
Does anyone know how you would go about fixing it? I had a look at this thread: PHP Warning: PHP Startup: Unable to load dynamic library no-debug-non-zts I think it might have something to do with 'Zend'. I have the following lines at the end of my php.ini file:
Any help is appreciated :)
[15-Jan-2016 08:18:27 America/Chicago] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/php54/lib/php/extensions/no-debug-non-zts-20100525/ixed.5.4.lin' - /opt/php54/lib/php/extensions/no-debug-non-zts-20100525/ixed.5.4.lin: cannot open shared object file: No such file or directory in Unknown on line 0
[15-Jan-2016 08:18:29 America/Chicago] PHP Warning: PHP Startup: Unable to load dynamic library '/opt/php54/lib/php/extensions/no-debug-non-zts-20100525/imagick.so' - /opt/php54/lib/php/extensions/no-debug-non-zts-20100525/imagick.so: cannot open shared object file: No such file or directory in Unknown on line 0
Does anyone know how you would go about fixing it? I had a look at this thread: PHP Warning: PHP Startup: Unable to load dynamic library no-debug-non-zts I think it might have something to do with 'Zend'. I have the following lines at the end of my php.ini file:
;[Zend]
;zend_loader.enable=1
; Disable license checks (for performance reasons)
;zend_loader.disable_licensing=0
; The Obfuscation level supported by Zend Guard Loader. The levels are detailed in the official Zend Guard Documentation. 0 - no obfuscation is enabled
;zend_loader.obfuscation_level_support=3
zend_extension = "/opt/php54/lib/php/extensions/no-debug-non-zts-20100525/ZendGuardLoader.so"
;extension=pdo.so
;extension=pdo_sqlite.so
;extension=sqlite.so
;extension=pdo_mysql.so
extension=imagick.so
;extension=magickwand.so
extension="ixed.5.4.lin"
Any help is appreciated :)
-
Hello :) Is this issue isolated to an individual account? If so, have you reviewed the account to determine if any custom php.ini files are utilized? Thank you. 0 -
Hello :) Is this issue isolated to an individual account? If so, have you reviewed the account to determine if any custom php.ini files are utilized? Thank you.
I only have 1 account on the server so it should be that one. And yeah, we have a custom php.ini file, I had a search through it for ' imagick.so' and found that Zend thing, which I don't remember adding. I'm wondering if anyone has come across it before?0 -
Hello :), Yes. Check your /opt/php54/lib/php/extensions/no-debug-non-zts-20100525/ directory, extension ixed.5.4.lin and imagick.so is not exist in that directory and due to that you are getting this error. If you have already installed these extension on your server then update correct path in your php.ini file. 0 -
You can try temporarily moving the php.ini file out of the way. EX: cp -a /home/$username/php.ini /root/php.ini.backup
Then, copy over the default php.ini file to the location of the php.ini file you moved, and make any custom changes that you require. Thank you.0
Please sign in to leave a comment.
Comments
4 comments