Unable to load dynamic library '/usr/local/lib/php/extensions/no-debug-non-zts-20090 |
Friends climbed the framework CodeIgniter 3.0 a Hosting and shows me this error:
A PHP Error was encountered Severity: Core Warning Message: PHP Startup: Unable to load dynamic library '/usr/local/lib/php/extensions/no-debug-non-zts-20090626/memcache.so' - /usr/local/lib/php/extensions/no-debug-non-zts-20090626/memcache.so: cannot open shared object file: No such file or directory Filename: Unknown Line Number: 0 Backtrace: help
It looks like you are trying to use memcache for a session or cache driver but don't have memcache configured on your server.
Check your session configuration (especially 'sess_driver'), usually found in /application/config/config.php. See http://www.codeigniter.com/user_guide/li...sions.html for details.
If you're using a cache driver, see the documentation for details on how to configure it to use a different driver: http://www.codeigniter.com/user_guide/li...ching.html
Those are PHP STARTUP errors and most likely have nothing to do with CI settings. Startup errors usually get triggered before PHP even gets to processing your code or in this case, CI.
Try disabling loading the memcache.so driver in your php.ini and restart the webserver. It's trying to load an extension that apparently isn't installed on the server (No such file or directory). |
Welcome Guest, Not a member yet? Register Sign In |