Answers for "PHP Startup: Unable to load dynamic library"

PHP
1

PHP Startup: Unable to load dynamic library 'curl'

apt-get update && apt-get upgrade
Posted by: Guest on July-10-2020
1

PHP Startup: Unable to load dynamic library

If you are a windows user, make sure to uncomment this line in your php.ini 
file:
	
extension_dir = "ext"
Posted by: Guest on January-01-2021
1

php warning: php startup: unable to load dynamic library

It means there is an extension=... or zend_extension=... line in one of your php configuration files (php.ini, or another close to it) that is trying to load that extension : ixed.5.2.lin

Unfortunately that file or path doesn't exist or the permissions are incorrect.

Try to search in the .ini files that are loaded by PHP (phpinfo() can indicate which ones are) - one of them should try to load that extension.
Either correct the path to the file or comment out the corresponding line.
Posted by: Guest on March-06-2021
0

PHP Warning: PHP Startup: Unable to load dynamic library 'apc.so'

comment out this line by adding a semi-colon in front
;extension=apc.so
Posted by: Guest on October-15-2020

Code answers related to "PHP Startup: Unable to load dynamic library"

Browse Popular Code Answers by Language