Oxwall

Status
Not open for further replies.

ingrida.leisiute24

New Member
Messages
3
Reaction score
0
Points
0
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).
 

stpvoice

Community Support Rep
Community Support
Messages
5,987
Reaction score
212
Points
63
Hello,

Please ensure no folders are CHMOD 777. Generally, files should be 644 and folders 755. Also, please post the contents of the htaccess file in the Oxwall directory. If using cPanel file manager you'll have to enable the viewing of dotfiles.

Thanks.
 

ingrida.leisiute24

New Member
Messages
3
Reaction score
0
Points
0
Hello,

Please ensure no folders are CHMOD 777. Generally, files should be 644 and folders 755. Also, please post the contents of the htaccess file in the Oxwall directory. If using cPanel file manager you'll have to enable the viewing of dotfiles.

Thanks.

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:

stpvoice

Community Support Rep
Community Support
Messages
5,987
Reaction score
212
Points
63
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
 

ingrida.leisiute24

New Member
Messages
3
Reaction score
0
Points
0
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

It looks like it solved the problem, at least from the first sight. Need some time to make sure everything is working fine. Thank you.
 

stpvoice

Community Support Rep
Community Support
Messages
5,987
Reaction score
212
Points
63
Issue resolved; closed.
 
Status
Not open for further replies.
Top