Script URL:
Version of script:
Hosting company:
URL of phpinfo.php:
URL of session_test.php:
What terms did you try when SEARCHING for a solution:
Write your message below:
Hi, I wish to setup IMAP protocol for emails fetching. Since IMAP is by default disabled in php I allowed the relative extension. In phpinfo() I see IMAP enabled, but when I reload the hesk administration panel the IMAP is still not available. Any advice about that?
Regards
Orazio
Enablig IMAP AFTER hesk installation
Moderator: mkoch227
Re: Enablig IMAP AFTER hesk installation
There is nothing in Hesk that needs to be done.
Hesk checks if the "imap_open" PHP function exists. If it does, IMAP is enabled. If it doesn't exist, IMAP isn't available.
If you are 101% sure your IMAP is enabled, maybe you have Hesk output cached on the server-side; turn off any server-side caching for Hesk and try again.
P.s.: you can save this as "test.php" and run it on your server to check if imap is available:
Hesk checks if the "imap_open" PHP function exists. If it does, IMAP is enabled. If it doesn't exist, IMAP isn't available.
If you are 101% sure your IMAP is enabled, maybe you have Hesk output cached on the server-side; turn off any server-side caching for Hesk and try again.
P.s.: you can save this as "test.php" and run it on your server to check if imap is available:
Code: Select all
<?php
if (function_exists('imap_open')) {
echo "IMAP enabled";
} else {
echo "IMAP not available";
}
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
Re: Enablig IMAP AFTER hesk installation
Hi,
I did run "test.php" and it says "IMAP enabled", but hesk still says that IMAP support is not present.
I also got rid of any cache element related to site...
I did run "test.php" and it says "IMAP enabled", but hesk still says that IMAP support is not present.
I also got rid of any cache element related to site...
Re: Enablig IMAP AFTER hesk installation
Hesk uses the exact same check so something must be cached somewhere.
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
Re: Enablig IMAP AFTER hesk installation
Ok, will check it.
Regards
Orazio
Regards
Orazio
Re: Enablig IMAP AFTER hesk installation
The only solution which worked has been remove hesk and install it again.
At that point the script recognize imap support in php and allows the relative settings.
Regards
Orazio
At that point the script recognize imap support in php and allows the relative settings.
Regards
Orazio
Re: Enablig IMAP AFTER hesk installation
Glad to hear that worked for you. It shows the problem was cached files server-side because nothing has changed in the code when you installed the new copy of Hesk.
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