[Solved] ISPconfig 3.1 with htaccess

Discussion in 'General' started by Achkile ethical, Jul 28, 2016.

  1. Achkile ethical

    Achkile ethical New Member

    I follow intruction perfect server ubuntu 16.04.

    When i upload my web (ci3) i got internal server error.

    Please help
     
  2. till

    till Super Moderator Staff Member ISPConfig Developer

    Check the error.log of the website.
     
  3. Achkile ethical

    Achkile ethical New Member

    how to access error.log, sir?

    this my httaccess
    Code:
    RewriteEngine on
    RewriteCond $1 !^(index\.php|images|js|css|favicon\.png)
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ ./index.php/$1 [L]
    in setup sites ISPConfig, i checked the CGI, SSI and Option PHP use Fast-CGI.
    if i use mod - php , my phpmyadmin showed error
     
  4. till

    till Super Moderator Staff Member ISPConfig Developer

    The error.log is in the log folder of that website.
     
  5. Achkile ethical

    Achkile ethical New Member

    This error.log containing following error
    Code:
    [Fri Jul 29 13:32:53.977761 2016] [fcgid:warn] [pid 6150] (70007)The timeout specified has expired: [client 104.148.71.26:3873] mod_fcgid: can't get data from http client
     

    Attached Files:

    Last edited: Jul 29, 2016
  6. Achkile ethical

    Achkile ethical New Member

    [Solved] i've changed my .htaccess
    Before
    Code:
    RewriteEngine on
    RewriteCond $1 !^(index\.php|images|js|css|favicon\.png)
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ ./index.php/$1 [L]
    After
    Code:
    RewriteEngine on
    RewriteCond $1 !^(index\.php|images|js|css|favicon\.png)
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ ./index.php?/$1 [L]
    and added into apache directive:
    Code:
    <Directory/var/www/clients/client10/web12>
    AllowOverride All
    </Directory>
    Thanks
     

Share This Page