PHP IMAP Extension – Install / Enable IMAP In PHP
by default, the IMAP for PHP is deactivated. First, you need to check whether PHP IMAP is installed or not. lets check with phpinfo() function.
Check PHP IMAP Is Install.
1) Create a new file in your root directory called “whatever.php” and put below small code on this file.
1 2 3 |
<?php phpinfo(); ?> |
Note: it is not a good practice to name the file “phpinfo.php”, because some attackers search for files with that name on your servers. so, please keep it in your mind.
2) Now, run this file from your favorite browser.
3) You can check the same as snap below.
If it is not installed don’t worry follow the below steps.
Enable IMAP in XAMPP
1) go to the file \xampp\php\php.ini and open php.ini in your editor.
2) find ;extension=php_imap.dll
3) Remove semicolon from ;extension=php_imap.dll.
4) Now, now it should looks like extension=php_imap.dll
5) Save your file and restart the xampp server.
Enable IMAP in Linux
In Linux, you need to install the PHP IMAP module with the following steps:
1) Open your terminal.
2) Run below command.
3) To enable IMAP you can run below command.
4) Restart apache server with the following command.
Install IMAP on Ubuntu for PHP 7.1
1) Run below command.
2) don’t forget to restart apache.
Thanks for your time, to know about me.
Hello I Am Vijay Poshiya. 🙂
Here’s My little description of your attention on Me and My blog. I am here to help you with PHP programming. I can give you a cake walkthrough platform where a complex program can make it easier for you. I will also provide you with the rare collections of task sets over the internet.
I hope you will find your solutions in better understanding shape within my blog.
You can read more about PHPAdvices at the “About” page.
Leave a Comment