• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

horde not working

J

jgalvez

Guest
After a bad upgrade of plesk 8.1 to 8.2.
The mysql server started after a few fixes.
But horde dosen't works.
If i do webmail.mailtest.com/test.php start downloading
or webmail.mailtest.com no website of horde appears

Anyone knows how can i fix this?

Thanks
 
Webmail isn't working for me either. It appears that the settings are missing from the Apache configuration files.
 
same for me

I think plesk 8.2 has bugs, the same and other issues happened to me.
After upgrading it erased httpd.conf in a debian box, i restored an old one and the horde virtual was missing a virtual ip address.

Omar
 
If someone can post the virtual host section for the Horde webmail, please do so! I'd really appreciate it.
 
Found it:

Code:
<VirtualHost \
                        xxx.xxx.xxx.xxx:80 \
                        xxx.xxx.xxx.xxx: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/log:/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/log:/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>

<IfModule mod_ssl.c>

<VirtualHost \
                        xxx.xxx.xxx.xxx:443 \
                        xxx.xxx.xxx.xxx:443 \
                        >
        DocumentRoot /usr/share/psa-horde/
        Alias /horde/ /usr/share/psa-horde/
        Alias /imp/ /usr/share/psa-horde/imp/
        ServerName webmail
        ServerAlias webmail.*
        UseCanonicalName Off
        SSLEngine on
        SSLVerifyClient none
        SSLCertificateFile /etc/httpd/conf/httpd.pem
        <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/log:/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/log:/usr/share/doc"
                        php_admin_value include_path "/usr/share/psa-horde:/usr/share/psa-horde/pear:."
                </IfModule>
                SSLRequireSSL
                Order allow,deny
                Allow from all
        </Directory>
</VirtualHost>

</IfModule>
 
Back
Top