Hi,
IMAP Fetching was enabled in the last version 2.8.x but now show "disabled - PHP is not compiled with IMAP support" but I have php-fpm with support '--with-imap' '--with-imap-ssl'
Anybody know why?
IMAP Fetching in 3.1.0
Moderator: mkoch227
Re: IMAP Fetching in 3.1.0
What do you get if you save this as test.php and run it?
Do you have uncommented in your php.ini file?
Do you see the imap section in your phpinfo?
Code: Select all
<?php
if (function_exists('imap_open')) {
echo "IMAP Enabled";
} else {
echo "IMAP Disabled";
}
Code: Select all
extension=imap
Do you see the imap section in your phpinfo?
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here 
You should follow me on Twitter here
Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools


Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools
-
- Posts: 5
- Joined: Mon Aug 28, 2017 6:37 pm
Re: IMAP Fetching in 3.1.0
You are right. I have dynamic PHP and forgot to configure the new subdomain
Now It works
thank you very much

Now It works

thank you very much