8 users online. Create an account or sign in to join them.Users
Install error / 500 server error
This is an open discussion with 2 replies, filed under Installation.
Search
I think the RewriteBase should be /sym/
That’s true, thanks!
Create an account or sign in to comment.
Hello everyone!
I’ve just installed Symphony on a Bluehost server following the step by step guide in the tutorial section (folders permissions are fine).
free-lab.org/sym
returns me a 500 server error
and
free-lab.org/sym/symphony
returns me a 404 error file not found.
My .htaccess is:
Symphony 2.0.x
Options +FollowSymlinks -Indexes
RewriteEngine on RewriteBase /showcase-ensemble/ ### DO NOT APPLY RULES WHEN REQUESTING "favicon.ico" RewriteCond %{REQUEST_FILENAME} favicon.ico [NC] RewriteRule .* - [S=14] ### IMAGE RULES RewriteRule ^image/(.+.(jpg|gif|jpeg|png|bmp))$ extensions/jit_image_manipulation/lib/image.php?param=$1 [L,NC] ### CHECK FOR TRAILING SLASH - Will ignore files RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_URI} !/$ RewriteCond %{REQUEST_URI} !(.*)/$ RewriteRule ^(.*)$ $1/ [L,R=301] ### ADMIN REWRITE RewriteRule ^symphony/?$ index.php?mode=administration&%{QUERY_STRING} [NC,L] RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^symphony(/(.*/?))?$ index.php?symphony-page=$1&mode=administration&%{QUERY_STRING} [NC,L] ### FRONTEND REWRITE - Will ignore files and folders RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*/?)$ index.php?symphony-page=$1&%{QUERY_STRING} [L]#
What am I missing?
Thank you!