solved Install error

alt=
@aussieute
4 years ago
3 posts
Upon installation I'm getting the following error
"Unable to find the .htaccess file - please ensure the .htaccess from the Jamroom ZIP file is uploaded to your server."

As there is no .htaccess file supplied I'm wondering what's included in that file to complete the install.

Thanks
updated by @aussieute: 10/04/20 06:29:33PM
michael
@michael
4 years ago
7,692 posts
files that begin with a . are often hidden, make sure you un-hide the files before uploading.
alt=
@aussieute
4 years ago
3 posts
been there and done that.
Install doesn't include one.
created a blank .htaccess and got the install complete however the create an account didn't happen.
Was wondering if the .htaccess had something to do with that.
Great response time Michael
michael
@michael
4 years ago
7,692 posts
This is the contents of the .htaccess file:
# Jamroom Apache .htaccess file
DirectoryIndex modules/jrCore/router.php

Options +FollowSymLinks -MultiViews -Indexes

# Headers
<IfModule mod_headers.c>
Header unset ETag
Header always set X-Content-Type-Options nosniff
Header always set X-XSS-Protection "1; mode=block"
FileETag None
# Expires for CSS, JS and Images
<FilesMatch ".(ico|jpg|jpeg|png|gif|js|css|swf)$">
Header set Expires "Thu, 15 Apr 2022 20:00:00 GMT"
</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
RewriteRule ^modules/.*\.tpl$ - [F,L,NC]
RewriteRule ^skins/.*\.tpl$ - [F,L,NC]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^(.*)$ modules/jrCore/router.php?_uri=$1 [NC,L]
</IfModule>
alt=
@aussieute
4 years ago
3 posts
Ripper
All working as it should
Thanks so much

Tags