I installed Oxwall through Softaculous but i can't access the page, when i go to the my domain i get "Default Web Page", when i try to go to admin panel, i get "Internal Server Error" (500).
3Likes
I installed Oxwall through Softaculous but i can't access the page, when i go to the my domain i get "Default Web Page", when i try to go to admin panel, i get "Internal Server Error" (500).
I made all my folders CHMOD 755 and all the files CHMOD 644 (including those in subdirectories). It didn't change anything.
Here's the content of my .htaccess file:
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{REQUEST_URI} .*/http-bind
RewriteRule (.*) /http-bind [L]
RewriteCond %{REQUEST_URI} !^/index.php
RewriteCond %{REQUEST_URI} !/ow_updates/index.php
RewriteCond %{REQUEST_URI} !/ow_updates/
RewriteCond %{REQUEST_URI} (/|\.php|\.html|\.htm|\.feed|\.pdf|\.raw|/[^.]*)$ [NC]
RewriteRule (.*) index.php
Last edited by ingrida.leisiute24; 06-09-2011 at 10:47 AM.
Hello,
You need to add another line into the htaccess, so it reads:
Code:Options +FollowSymLinks RewriteEngine On RewriteBase / RewriteCond %{REQUEST_URI} .*/http-bind RewriteRule (.*) /http-bind [L] RewriteCond %{REQUEST_URI} !^/index.php RewriteCond %{REQUEST_URI} !/ow_updates/index.php RewriteCond %{REQUEST_URI} !/ow_updates/ RewriteCond %{REQUEST_URI} (/|\.php|\.html|\.htm|\.feed|\.pdf|\.raw|/[^.]*)$ [NC] RewriteRule (.*) index.php