• 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.

Problem with Horde webmail : 404 Error

W

WolFoeniX

Guest
Hi all !

I've just installed a fresh Plesk 8.01 on my server that I've upgrated to 8.1 through common updater section.
Since the beginning 6 months ago with version 8.01 the webmail popup or URL show me a 404 Error. Now that I've version 8.1 it's exactly the same problem, nothing changed.

I check in the DNS section of my domain, I have a webmail.<domaine> ("A" DNS ) configured to my server IP. It seems to be normal.
I tried to search for a fix on thoses forums but the only fix I found whose for a windows version.

Has anybody an idea to help to make my horde webmail works ?

thx

WFX
 
check config file in /etc/httpd/conf.d

some reason the whole section to point to webmail was missing in my configuration
 
Thanks for your answer !
Witch file is it in conf.d directory ?

What should I add ?

I've found this in a file called "zz010_psa_httpd.conf" in the directory you told me :

<VirtualHost \
<MyIP>:80 \
>
DocumentRoot /usr/share/psa-horde/
Alias /horde/ /usr/share/psa-horde/
Alias /imp/ /usr/share/psa-horde/imp/
ServerName webmail
ServerAlias webmail.*
UseCanonicalName Off
<Directory /usr/share/psa-horde>
<IfModule sapi_apache2.c>
php_admin_flag engine on
php_admin_flag magic_quotes_gpc off
php_admin_flag safe_mode off
php_admin_value open_basedir "/usr/share/psa-horde:/etc/psa-horde:/etc/psa:/tmp:/var/tmp:/var/log/psa-horde:/usr/share/doc"
php_admin_value include_path "/usr/share/psa-horde:/usr/share/psa-horde/pear:."
</IfModule>
<IfModule mod_php5.c>
php_admin_flag engine on
php_admin_flag magic_quotes_gpc off
php_admin_flag safe_mode off
php_admin_value open_basedir "/usr/share/psa-horde:/etc/psa-horde:/etc/psa:/tmp:/var/tmp:/var/log/psa-horde:/usr/share/doc"
php_admin_value include_path "/usr/share/psa-horde:/usr/share/psa-horde/pear:."
</IfModule>
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
 
Back
Top