This forum has moved to a new location and is in read-only mode. Please visit talk.octobercms.com to access the new location.
Hello
I am trying to install october on a shared hosting subdomain, installation goes well but after it's done, I get error 500 on both backend and frontend links. I also get error 500 if I try to access index.php directly.
There are no errors in the install.log The .htaccess file that comes with october is there and I tried to uncomment the RewriteBase / line with no success I also tried changing mask to 775 or 755 but it didn't help.
Does anyone know what is going on?
Last updated
Try adding this line to .htaccess:
RewriteCond %{REQUEST_URI} !/index\.php$
at this position:
https://github.com/octobercms/october/blob/master/.htaccess#L32
More info: https://github.com/octobercms/october/issues/1826
Last updated
I added this code in .htaccess and it works ok:
<IfModule mime_module>
AddType application/x-httpd-ea-php70 .php .php7 .phtml
</IfModule>
<IfModule mod_security.c>
SecFilterEngine Off
</IfModule>
Last updated
1-5 of 5