|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2001-12-12 13:47 UTC] drobert at bfm dot bm
There is a dependency in certain modules (notably php_openssl) on apphelp.dll. This file seems to only be available on WindowsXP (and the file shipped with XP won't work on win2000). If I am correct (I'm not entirely sure), any use of this dll will render the extensions useless on any windows version prior to XP). Source: DLL Help on MSDN. (The file is only listed as part of Windows XP). PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 16:00:01 2025 UTC |
build a bogus apphelp.dll borland c++ source ---BEGIN APPHELP.C--- #include <windows.h> __declspec(dllexport) BOOL ApphelpCheckShellObject( REFCLSID ObjectCLSID, BOOL bShimIfNecessary, ULONGLONG* pullFlags ) { return FALSE; } ---END FILE--- then build it with bcc32 -WD apphelp.c copy it in a path directory it work on windows 2000 no problem so far with this fix. msdn has been quite usefull to know what this function basically do.