|
Posted by Jerry Stuckle on 12/03/07 22:50
pdhb_1 wrote:
> On Dec 3, 10:51 am, "Rik Wasmus" <luiheidsgoe...@hotmail.com> wrote:
>> On Mon, 03 Dec 2007 19:46:25 +0100, pdhb_1 <mbr...@phys.ksu.edu> wrote:
>>> I'm trying to run Apache2.2.6 with php. However, I keep getting a long
>>> list of error messages in the log file indicating that includes are
>>> failing. For example,
>>> "PHP Warning: PHP Startup: Unable to load dynamic library './ext/
>>> php_sybase_ct.dll' - The specified module could not be found.\r\n in
>>> Unknown on line 0"
>>> I have changed the "extension_dir" line in the php.ini file every way
>>> I can think of, including the original:
>>> extension_dir="C:/PHP/ext"
>>> and
>>> extension_dir=./ext/
>>> I have tried with and without quotes, foreward slashes, back slashes,
>>> etc. Both direct paths and indirect paths fail.
>>> How do I get php to find these files?
>> Well, first of all, are you sure these extensions are there? And are you
>> editing the right php.ini (check the output of phpinfo(): what file does
>> it say it uses, and does your extension_dir actually alter if you change
>> it (and you restart Apache afterwards offcourse, php.ini is only read on
>> startup....)
>>
>> --
>> Rik Wasmus- Hide quoted text -
>>
>> - Show quoted text -
>
> Yes, the extensions are there, and the path being searched does depend
> on how I set extension_dir.
> The log file will faithfully reproduce the path I indicate in the line
> reporting the error. For example,
> extension_dir="C:\PHP\ext"
>
> results in lines of the form:
>
> "PHP Warning: PHP Startup: Unable to load dynamic library 'C:\\PHP\
> \ext\\php_sybase_ct.dll' - The specified module could not be found.\r
> \n in Unknown on line 0"
>
This can also occur if one of the DLL's required by the PHP SyBase DLL
can't be found. Do you have the SyBase libs installed and available for
loading (i.e. in your PATH environment)?
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
[Back to original message]
|