can't access roundcube(webmail) after ispconfig upgrade from 3.0.4.6 to 3.0.5.3

Discussion in 'Installation/Configuration' started by gertk, Feb 9, 2014.

  1. gertk

    gertk New Member

    Hi,

    today I did upgrade from ispconfig 3.0.4.6 to 3.0.5.3 and after that I can't access roundcube mail anymore:

    ERROR 403 - Forbidden!
    The following error occurred:
    You are not permitted to access the requested URL.
    Please contact the webmaster with any queries.

    apache error log:
    [Sun Feb 09 12:07:12 2014] [error] client denied by server configuration: /var/www/webmail/

    /etc/apache2/conf.d/roundcube.conf
    # RoundCube alias and redirect functions
    Alias /webmail /var/www/webmail
    <Directory /var/www/webmail>
    Options +FollowSymLinks
    # This is needed to parse /var/www/webmail/.htaccess. See its
    # content before setting AllowOverride to None.
    DirectoryIndex index.php

    <IfModule mod_php5.c>
    AddType application/x-httpd-php .php

    php_flag magic_quotes_gpc Off
    php_flag track_vars On
    php_flag register_globals Off
    php_value include_path .
    </IfModule>
    AllowOverride All
    order allow,deny
    allow from all
    </Directory>
    # Protecting basic directories:
    <Directory /var/www/webmail/config>
    Options -FollowSymLinks
    AllowOverride None
    </Directory>
    <Directory /var/www/webmail/temp>
    Options -FollowSymLinks
    AllowOverride None
    Order allow,deny
    Deny from all
    </Directory>
    <Directory /var/www/webmail/logs>
    Options -FollowSymLinks
    AllowOverride None
    Order allow,deny
    Deny from all


    What is wrong with my configuration?
     
  2. till

    till Super Moderator Staff Member ISPConfig Developer

    Do you try to access roundcube on port 80 or 8080?
     
  3. gertk

    gertk New Member

    I tried on both ports
     
  4. gertk

    gertk New Member

    I found it :) - In /etc/apache2/conf.d/ directory was also roundcube.conf.save configuration file. Strange, it generated or saved 1 hour after my update.
     
  5. till

    till Super Moderator Staff Member ISPConfig Developer

    try:

    a2enmod php5
    /etc/init.d/apache2 restart
     
  6. gertk

    gertk New Member

    Thanks.
    I deleted /etc/apache2/conf.d/roundcube.conf.save file, no problem anymore.
     

Share This Page