Click to See Complete Forum and Search --> : PHP --with-imap--


Anon
10-23-2001, 05:13 AM
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

mithril
10-23-2001, 08:27 PM
No need to compile, just enable:)

1. 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.

2. Make sure the extension_dir directive in php.ini points to the folder which all your php_*.dll files are stored.

3. Also in php.ini, uncomment (remove semi-colon) the following line:

  extension=php_imap.dll

4. Completely restart IIS (the whole bloat... not just the WWW Service).

5. Read the PHP Manual. This and a whole lot more is discussed very fully in the docs.

-geoff