I need PHP libraries to run my website
But there is no PHP!!!!
please install all PHP libraries on your server
I need PHP libraries to run my website
But there is no PHP!!!!
please install all PHP libraries on your server
All our servers have PHP 5.2+ installed. What errors are you receiving?
Are you asking about specific PHP libraries?
Best regards,
Brian Yang - TechAirlines
How am I doing? Click thestar button at the bottom left to rate this post. Thanks.
Terms of Service | Account Portal | Wiki
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
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?
Best regards,
Brian Yang - TechAirlines
How am I doing? Click thestar button at the bottom left to rate this post. Thanks.
Terms of Service | Account Portal | Wiki
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
got no reply till now!!!!!!!!!!!
Hello,
You'd need to change that file slightly like this:
Also, have you tried installing manually?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
Thanks.