简体   繁体   中英

Enable IMAP PHP in xampp (windows)

I am installing a CRM locally and I have a problem with IMAP. I am looking for and find that "extension = imap" must be enabled, but I do it and it remains the same.

Notice that I am using xampp in Windows 10.

在此处输入图像描述

I thank you in advance

You need to configure your php.ini file to enable IMAP extension

Search for the line ;extension=php_imap.dll and remove semicolon( ; ) and restart your xampp. The line should look like as mentioned below.

extension=php_imap.dll

Update

New php version does not have dll anymore.

Steps

  1. Access your php.init file. [xampp\\php\\php.init]
  2. Remove the semicolon(;)
  3. Restart your xampp.

Demo

Image: https://prnt.sc/tu6frh

;extension=imap -> extension=imap

Open your php.ini file to enable IMAP extension

Search for the line ;extension=imap and remove semicolon(;) and restart your xampp.

 extension=imap

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM