• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS.

Plesk - Horde IMP - PHP Issue

E

edesignway

Guest
Hello, I am looking for any suggestions.

Every time I upgrade to a new revision, the update breaks Horde IMP, usually after some playing around I can get it working... After the 7.5.6 update I am having no luck.

If you go to http://webmail.domain.com it will load the index.html page, however anything php will not load.

Below is everything that I have done.


First I ran the websrvmng.exe --reconfigure-webmail, that did no good.

Second I deleted webmail from IIS and then ran the above command, no go.

Next I uninstalled Horde IMP and then reinstalled it through add remove programs, no go.

I tried deleting webmail from IIS, the vhost dir, and then reinstalling Horde IMP then running the above command... no go.

Next I tried copying the php.ini file from the horde dir into the main webmail dir, no go.

Finally I tried copying the php.ini from the windows did over into the webmail and /horde dir, no go.

Thanks,
T R
 
It seems you need check if there is mapping for .php, .php3 and .phtml set for horde virtual dir under webmail webmail. If it's not set then add mapping and set php.exe in cgi mode to serve .php scripts.
 
You will also need to edit C:\Inetpub\vhosts\webmail\horde\lib\core.php as follows:

Change:

ini_set('include_path', dirname(__FILE__) . PATH_SEPARATOR . ini_get('include_path'));

To:

ini_set('include_path', dirname(__FILE__) . PATH_SEPARATOR . ini_get('include_path') . PATH_SEPARATOR . 'C:\Inetpub\vhosts\webmail\horde\pear');

It worked for me...
 
Back
Top