tags:

views:

440

answers:

1

I am getting following errors when I try to execute any PHP application after I installed IIS FastCGI and PHP 5.3.0 non-thread-safe on Windows XP:

PHP Warning:  PHP Startup: Unable to
load dynamic library 'C:\Program
Files\PHP\ext\php_enchant.dll' - The
specified module could not be found.
in Unknown on line 0

PHP Warning:  PHP Startup: Unable to
load dynamic library 'C:\Program
Files\PHP\ext\php_oci8.dll' - The
specified module could not be found.
in Unknown on line 0

PHP Warning:  PHP Startup: Unable to
load dynamic library 'C:\Program
Files\PHP\ext\php_oci8_11g.dll' -
The specified module could not be
found.  in Unknown on line 0

PHP Warning:  PHP Startup: Unable to
load dynamic library 'C:\Program
Files\PHP\ext\php_pdo_oci.dll' - The
specified module could not be found.
in Unknown on line 0

How to get rid of this?

+1  A: 
  1. Check that the offending dlls actually are there in the ext folder
  2. Check that in your php.ini the extension_dir value is enclosed by quotes
  3. Finally, check the documentation of those extensions for additional dependencies (e.g. I recall the Oracle extensions requiring some dlls that come with the Oracle client...)
djn