my error log is full of below errors , what does it mean and how to to overcome it ?

debug-non-zts-20090626/: cannot open shared object file: No such file or directory in Unknown on line 0
[11-Feb-2011 08:53:04] PHP Warning:  PHP Startup: Unable to load dynamic library '/usr/local/lib/php/extensions/no-debug-non-zts-20090626/' - /usr/local/lib/php/extensions/no-debug-non-zts-20090626/: cannot open shared object file: No such file or directory in Unknown on line 0
[11-Feb-2011 08:53:04] PHP Warning:  PHP Startup: Unable to load dynamic library '/usr/local/lib/php/extensions/no-debug-non-zts-20090626/' - /usr/local/lib/php/extensions/no-debug-non-zts-20090626/: cannot open shared object file: No such file or directory in Unknown on line 0

    This error occurs when PHP is configured to load modules which it cannot find or which don't work for some reason. I am not super familiar with these types of errors or what 'Unknown' refers to.

    I'd try checking your PHP.ini file for the extensions section (any place where it says extension=something.ext):

    ;;;;;;;;;;;;;;;;;;;;;;
    ; Dynamic Extensions ;
    ;;;;;;;;;;;;;;;;;;;;;;
    ;
    ; If you wish to have an extension loaded automatically, use the following
    ; syntax:
    ;
    ;   extension=modulename.extension
    ;
    ; For example:
    ;
    ;   extension=msql.so
    ;
    ; Note that it should be the name of the module only; no directory information
    ; needs to go here.  Specify the location of the extension with the
    ; extension_dir directive above.
    

    You might have a line that says "extension=" without any extension file listed.

    Not sure if that'll help.

      i checked php.ini file but no such problem available ...

        It may also be that one of the extensions you are trying to load is corrupted or doesn't work. Does your PHP.ini specify any extensions? Are you sure you have the correct PHP.ini file? Is this PHP error showing up via command line or is this from your web server?

          i rewrited php.ini now the problem is almost over ,,

          thanks for your support.....

            Write a Reply...