Hướng dẫn imap php extension xampp

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

asked Feb 1, 2020 at 4:32

1

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

answered Jul 16, 2020 at 7:26

vkramsvkrams

7,00717 gold badges76 silver badges126 bronze badges

1

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: //prnt.sc/tu6frh

;extension=imap -> extension=imap

answered Aug 5, 2020 at 1:53

Open your php.ini file to enable IMAP extension

Search for the line ;extension=imap and remove semicolon[;] and restart your xampp.

extension=imap

answered Jul 24 at 9:11

For all the people coming here praying for:

1] a dead-easy way to read MIME attachments, or
2] a dead-easy way to access POP3 folders

Look no further.



[EDIT BY danbrown AT php DOT net: Contains a bugfix by "mn26826" on 09-JUN-2010, which fixed the erroneous reference to $imap as the parameter passed to imap_mailboxmsginfo[] within the user function pop3_stat[].  This was intended to be $connection.]

[EDIT BY visualmind AT php DOT net: Contains a bugfix by "elias-jobview" on 17-AUG-2010, which fixed the error in pop3_list function which didn't have: return $result]

[EDIT BY danbrown AT php DOT net: Contains a bugfix by "chrismeistre" on 09-SEP-2010, which fixed the erroneous reference to $mbox [should be $connection] in the pop3_list[] function.]

Chủ Đề