[SOLVE] Problem after upgrade ISPConfig 3.1.1

Discussion in 'Installation/Configuration' started by Andres Hocevar, Nov 6, 2016.

  1. Andres Hocevar

    Andres Hocevar New Member

    Hi there.
    I have a problem after upgrade from 3.0.5.4p8 to 3.1.1 using "ispconfig_update.sh" script in stable method, after login with admin user it's appear:

    "The following changes are not yet populated to all servers:"

    And then an empty list, (see attached file)
    img3.png

    I'm on:
    • openSUSE 13.1 x64
    • apache 2.4.6
    Thanks in advance.

    ****UPDATE****

    ispconfig.vhost
    Code:
    Listen 8080
    NameVirtualHost *:8080
    
    <VirtualHost _default_:8080>
       ServerAdmin webmaster@localhost
    
       <FilesMatch "\.ph(p3?|tml)$">
         SetHandler None
       </FilesMatch>
    
       <IfModule mod_fcgid.c>
         DocumentRoot /srv/www/ispconfig/
         SuexecUserGroup ispconfig ispconfig
         <Directory /srv/www/ispconfig/>
           Options -Indexes +FollowSymLinks +MultiViews +ExecCGI
           AllowOverride AuthConfig Indexes Limit Options FileInfo
             <FilesMatch "\.php$">
               SetHandler fcgid-script
             </FilesMatch>
           FCGIWrapper /srv/www/php-fcgi-scripts/ispconfig/.php-fcgi-starter .php
           Require all granted
         </Directory>
         IPCCommTimeout  7200
         MaxRequestLen 15728640
       </IfModule>
    
       <IfModule mpm_itk_module>
         DocumentRoot /usr/local/ispconfig/interface/web/
         AssignUserId ispconfig ispconfig
         AddType application/x-httpd-php .php
         <Directory /usr/local/ispconfig/interface/web>
           # php_admin_value open_basedir "/usr/local/ispconfig/interface:/usr/share:/tmp"
           Options +FollowSymLinks
           AllowOverride None
           Require all granted
           php_value magic_quotes_gpc  0
         </Directory>
       </IfModule>
    
       ServerSignature Off
    
       <IfModule mod_security2.c>
         SecRuleEngine Off
       </IfModule>
    
       SSLEngine On
       SSLProtocol All -SSLv2 -SSLv3
       SSLCertificateFile /usr/local/ispconfig/interface/ssl/ispserver.crt
       SSLCertificateKeyFile /usr/local/ispconfig/interface/ssl/ispserver.key
    </VirtualHost>
    
    <Directory /srv/www/php-cgi-scripts>
       AllowOverride None
       Require all denied
    </Directory>
    
    <Directory /srv/www/php-fcgi-scripts>
       AllowOverride None
       Require all denied
    </Directory>
    
    
    I have this error in all externals css and javascript:
    Code:
    <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
    <html><head>
    <title>403 Forbidden</title>
    </head><body>
    <h1>Forbidden</h1>
    <p>You don't have permission to access /themes/default/assets/stylesheets/bootstrap.min.css
    on this server.</p>
    <p>Additionally, a 403 Forbidden
    error was encountered while trying to use an ErrorDocument to handle the request.</p>
    </body></html>
    
     
    Last edited: Nov 6, 2016
  2. Andres Hocevar

    Andres Hocevar New Member

    it's fixed now

    chmod -R 755 /srv/www/ispconfig/*
     

Share This Page