Hello,
Where can I download ming for windows.I tried http://ming.sourceforge.net/install.html or http://www.php4win.de/. However couldn't find the exe for windows.
Thanks
Jaco
Hi, there is not a .exe for ming, but a .dll: "php_ming.dll" And don't forgive to enable it in PHP.INI too.
see you
(if you have winXP, just enable in php.ini and, starting php, the system ask for the needed .dll...)
OK Thanks for the info.
I found php_ming.dll under C:\php4\php\extensions. Forgive for my ignorance. Where I am supposed to install this file and what do I need to do in php.ini file.
I've copyed php_ming.dll from extensions dir to parent (where is php.exe...)
Then in php.ini look for this line: ;extension=php_ming.dll
and remove the leading;
Now all work fine...😕 ... I hope! 😃
Originally posted by jacobelias OK Thanks for the info. I found php_ming.dll under C:\php4\php\extensions. Forgive for my ignorance. Where I am supposed to install this file and what do I need to do in php.ini file. Thanks Jaco
install.txt[You'll find it in the directory you installed PHP in] If you are using any php extension dlls then you will need those as well. To make sure that the dlls can be found, you can either copy them to the system directory (e.g. winnt/system32 or windows/system) or you can make sure that they live in the same directory as the main php executable or dll your web server will use (e.g. php.exe, php4apache.dll).
And
php.ini [You obviously already know about this one] ;;;;;;;;;;;;;;;;;;;;;; ; Dynamic Extensions ; ;;;;;;;;;;;;;;;;;;;;;; ; ; If you wish to have an extension loaded automatically, use the following ; syntax: ; ; extension=modulename.extension ; ; For example, on Windows: ; ; extension=msql.dll ; ; ... or under UNIX: ; ; 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.