No PHP Installed on the Server??

Status
Not open for further replies.

techairlines

x10 Flyer
Community Support
Messages
2,867
Reaction score
165
Points
63
All our servers have PHP 5.2+ installed. What errors are you receiving?

Are you asking about specific PHP libraries?
 
Messages
14
Reaction score
0
Points
0
when i install Oxwall community It start giving Error 404 - not found
Please help me regarding that

---------- Post added at 08:43 PM ---------- Previous post was at 08:41 PM ----------

And i am installing it using softaculous
 

techairlines

x10 Flyer
Community Support
Messages
2,867
Reaction score
165
Points
63
Looking at your 404 error page, there might be an issue in your .htaccess file (with something like URL rewrites) either in your public_html root or in the desk folder. Your 404 error is displaying the full server path with your cPanel username rather than a relative URL like it should look like.

What is the contents of your .htaccess files?
 
Messages
14
Reaction score
0
Points
0
here are the contents 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
 

stpvoice

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

You'd need to change that file slightly like this:
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

Also, have you tried installing manually?

Thanks.
 
Status
Not open for further replies.
Top