How to compile PHP with -imap- in the windows, or windows NT, with IIS 4.0 for setting up a web based email, through pop3 server. Thanks. Karma
No need to compile, just enable🙂
Check to see if you have the php_imap.dll. If you installed PHP using the Win32 installer from php.net you'll need to return to php.net and grab the zip package to get the extension binaries.
Make sure the extension_dir directive in php.ini points to the folder which all your php_*.dll files are stored.
Also in php.ini, uncomment (remove semi-colon) the following line:
extension=php_imap.dll
Completely restart IIS (the whole bloat... not just the WWW Service).
Read the PHP Manual. This and a whole lot more is discussed very fully in the docs.
-geoff