2020-02-12, 13:21:16
for bayviewboom.org
website says:
Error log says:
My webhost doesn't support cpanel.
Correct path for the site's current PHP version on the server is
here's my .htaccess:
website says:
Quote:This page isn’t working
bayviewboom.org is currently unable to handle this request.
Error log says:
Code:
HTTP ERROR 500
error log says:
[Tue Feb 11 12:04:19.696058 2020] [core:alert] [pid 10136] [client 167.220.25.254:25275] /home/booma/bayviewboom.org/getsimple/.htaccess: Wrapper /usr/local/cpanel/cgi-sys/php5 cannot be accessed: (2)No such file or directory
[Tue Feb 11 12:04:19.697016 2020] [core:alert] [pid 10136] [client 167.220.25.254:25275] /home/booma/bayviewboom.org/getsimple/.htaccess: Wrapper /usr/local/cpanel/cgi-sys/php5 cannot be accessed: (2)No such file or directory
[Tue Feb 11 12:04:21.193264 2020] [core:alert] [pid 23077] [client 167.220.25.254:51587] /home/booma/bayviewboom.org/getsimple/.htaccess: Wrapper /usr/local/cpanel/cgi-sys/php5 cannot be accessed: (2)No such file or directory, referer: https://bayviewboom.org/
[Tue Feb 11 12:04:21.194293 2020] [core:alert] [pid 23077] [client 167.220.25.254:51587] /home/booma/bayviewboom.org/getsimple/.htaccess: Wrapper /usr/local/cpanel/cgi-sys/php5 cannot be accessed: (2)No such file or directory, referer: https://bayviewboom.org/
[Tue Feb 11 12:04:37.990220 2020] [core:alert] [pid 23072] [client 167.220.25.254:10760] /home/booma/bayviewboom.org/getsimple/.htaccess: Wrapper /usr/local/cpanel/cgi-sys/php6 cannot be accessed: (2)No such file or directory
[Tue Feb 11 12:04:37.991288 2020] [core:alert] [pid 23072] [client 167.220.25.254:10760] /home/booma/bayviewboom.org/getsimple/.htaccess: Wrapper /usr/local/cpanel/cgi-sys/php6 cannot be accessed: (2)No such file or directory
[Tue Feb 11 12:04:42.268812 2020] [core:alert] [pid 18439] [client 167.220.25.254:2289] /home/booma/bayviewboom.org/getsimple/.htaccess: Wrapper /usr/local/cpanel/cgi-sys/php6 cannot be accessed: (2)No such file or directory, referer: https://bayviewboom.org/
[Tue Feb 11 12:04:42.269909 2020] [core:alert] [pid 18439] [client 167.220.25.254:2289] /home/booma/bayviewboom.org/getsimple/.htaccess: Wrapper /usr/local/cpanel/cgi-sys/php6 cannot be accessed: (2)No such file or directory, referer: https://bayviewboom.org/
My webhost doesn't support cpanel.
Correct path for the site's current PHP version on the server is
Code:
/usr/local/php7.2
here's my .htaccess:
Code:
#
# GetSimple CMS htaccess ROOT file
# apache 2.4
#
# The following require certain allow overrides, if getting 500 error comment them out one by one
# can be resolved in apache httpd.conf to ensure security alternatives
# override charset
AddDefaultCharset UTF-8
# prevent directory listings
Options -Indexes
# Follow symbolink links, This is required for rewrites on some hosts
Options +FollowSymLinks
# Set the default handler.
DirectoryIndex index.php
# blocks direct access to the XML files - they hold all the data!
<Files ~ "\.xml$">
<IfModule !mod_authz_core.c>
Deny from all
</IfModule>
<IfModule mod_access_compat.c>
Deny from all
</IfModule>
<IfModule mod_authz_core.c>
<IfModule !mod_access_compat.c>
Require all denied
</IfModule>
</IfModule>
</Files>
<Files sitemap.xml>
<IfModule !mod_authz_core.c>
Allow from all
</IfModule>
<IfModule mod_access_compat.c>
Allow from all
</IfModule>
<IfModule mod_authz_core.c>
<IfModule !mod_access_compat.c>
Require all granted
</IfModule>
</IfModule>
</Files>
# handle rewrites for fancy urls
<IfModule mod_rewrite.c>
RewriteEngine on
# FORCE HTTPS SECURE
RewriteCond %{HTTPS} !=on
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
# Usually RewriteBase is just '/', but
# replace it with your subdirectory path
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule /?([A-Za-z0-9_-]+)/?$ index.php?id=$1 [QSA,L]
</IfModule>