Problems with php modules.
Moderator: General Moderators
Problems with php modules.
I have php 4.3.10 running with an Apache 2 on windows (XP)
I can't get it to use the various modules (dlls). When apache starts I get the following error(warning):
Unknown(): Unable to load dynamic library 'C:\php4310\extensions\php_iconv.dll' - The specified module could not be found.
and so on for each of the modules in the php.ini file which looks like:
....
extension_dir = "C:\php4310\extensions"
....
extension=php_iconv.dll
extension= . . .
extension= . . . and so on...
everything is fine, as in there really is a C:\php4310\extensions\ with each and every dll file listed in the php.ini but i still get the error/warning when Apache starts.
I can't get it to use the various modules (dlls). When apache starts I get the following error(warning):
Unknown(): Unable to load dynamic library 'C:\php4310\extensions\php_iconv.dll' - The specified module could not be found.
and so on for each of the modules in the php.ini file which looks like:
....
extension_dir = "C:\php4310\extensions"
....
extension=php_iconv.dll
extension= . . .
extension= . . . and so on...
everything is fine, as in there really is a C:\php4310\extensions\ with each and every dll file listed in the php.ini but i still get the error/warning when Apache starts.
No, no...
That was just an example...
None of the dlls (modules) work!
__________________________
i just checked.... there IS an iconv.dll in /windows/system/
just to be shure I copied it into the /extensions dir of php...
still nothing...
what else could it be?
__________________________
almost none of the dlls in the list in php.ini won't work...
That was just an example...
None of the dlls (modules) work!
__________________________
i just checked.... there IS an iconv.dll in /windows/system/
just to be shure I copied it into the /extensions dir of php...
still nothing...
what else could it be?
__________________________
almost none of the dlls in the list in php.ini won't work...
- feyd
- Neighborhood Spidermoddy
- Posts: 31559
- Joined: Mon Mar 29, 2004 3:24 pm
- Location: Bothell, Washington, USA
you may want to check in phpinfo() to make sure php is loading the php.ini you think it is, along with all the settings correctly matching what you think they should be. I've talked with a few people recently that have had issues where they accidentally were editing the wrong php.in, among other issues...
no, no, no.... php works fine.
I needed to use the multibyte (mb_*) functions and openssl so I de-comented the corresponding lines in php.ini and made the rest of modifications necessary...
but, for every module I get the same 'Unknown(): ... can't find...' warning/error on startup... and php generates 'unknown function reference error'
I needed to use the multibyte (mb_*) functions and openssl so I de-comented the corresponding lines in php.ini and made the rest of modifications necessary...
but, for every module I get the same 'Unknown(): ... can't find...' warning/error on startup... and php generates 'unknown function reference error'
- feyd
- Neighborhood Spidermoddy
- Posts: 31559
- Joined: Mon Mar 29, 2004 3:24 pm
- Location: Bothell, Washington, USA
As I said:
feyd wrote:you may want to check in phpinfo() to make sure php is loading the php.ini you think it is, along with all the settings correctly matching what you think they should be. I've talked with a few people recently that have had issues where they accidentally were editing the wrong php.in, among other issues...