After moving server, gets jamroom 403 and 500 error
Installation and Configuration
Mmmm. Still forbidden.
Folders are 755 and files are 644.
The jamroom .htaccess file looks like it was modified on the day of the server move.
Does any of this look weird? This is not my area of expertise. I appreciate your help!
[code]
# BEGIN Force HTTPS
RewriteEngine On
RewriteCond $1 !^(/.well-known)
RewriteCond %{HTTP_HOST} ^empathcommunity.eliselebeau\.com [NC,OR]
RewriteCond %{HTTP_HOST} ^www.empathcommunity.eliselebeau\.com [NC]
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ <a href="https://www.empathcommunity.eliselebeau.com/$1" target="_blank" rel="nofollow">https://www.empathcommunity.eliselebeau.com/$1</a> [R,L]
# END Force HTTPS
# Jamroom 5 Apache .htaccess file
DirectoryIndex index.html index.php sitemap.xml modules/jrCore/router.php
Options +FollowSymLinks
Options -MultiViews -Indexes
# Use ETags
<IfModule mod_headers.c>
Header unset ETag
FileETag None
# Expires for CSS, JS and Images
<FilesMatch ".(ico|jpg|jpeg|png|gif|js|css|swf)$">
Header set Expires "Thu, 15 Apr 2018 20:00:00 GMT"
</FilesMatch>
<FilesMatch ".(eot|ttf|otf|woff)">
Header set Access-Control-Allow-Origin "*"
</FilesMatch>
</IfModule>
# Compress everything we can
<IfModule mod_filter.c>
AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/javascript text/javascript-x application/javascript
</IfModule>
# All requests through the router
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^(.*)$ modules/jrCore/router.php?_uri=$1 [NC,L]
</IfModule>
RewriteRule .*\.(jpg|jpeg|gif|png|bmp)$ - [F,NC]
# php -- BEGIN cPanel-generated handler, do not edit
# Set the “ea-php74” package as the default “PHP” programming language.
<IfModule mime_module>
AddHandler application/x-httpd-ea-php74 .php .php7 .phtml
</IfModule>
# php -- END cPanel-generated handler, do not edit
# BEGIN cPanel-generated php ini directives, do not edit
# Manual editing of this file may result in unexpected behavior.
# To make changes to this file, use the cPanel MultiPHP INI Editor (Home >> Software >> MultiPHP INI Editor)
# For more information, read our documentation ( <a href="https://go.cpanel.net/EA4ModifyINI" target="_blank" rel="nofollow">https://go.cpanel.net/EA4ModifyINI</a>)
<IfModule php7_module>
php_flag display_errors Off
php_value max_execution_time 300
php_value max_input_time 300
php_value max_input_vars 4000
php_value memory_limit 2048M
php_value post_max_size 256M
php_value session.gc_maxlifetime 1440
php_value session.save_path "/var/cpanel/php/sessions/ea-php74"
php_value upload_max_filesize 256M
php_flag zlib.output_compression On
</IfModule>
<IfModule lsapi_module>
php_flag display_errors Off
php_value max_execution_time 300
php_value max_input_time 300
php_value max_input_vars 4000
php_value memory_limit 2048M
php_value post_max_size 256M
php_value session.gc_maxlifetime 1440
php_value session.save_path "/var/cpanel/php/sessions/ea-php74"
php_value upload_max_filesize 256M
php_flag zlib.output_compression On
</IfModule>
# END cPanel-generated php ini directives, do not edit
[code]