Error 500

I use Fuel cms version 1.3.1, but does not work.
I loaded everything into a subfolder.
I think that the problem is in the .htaccess file.

Options +FollowSymLinks <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /subdir/ <Files .*> Order Deny,Allow Deny From All </Files> # Allow asset folders through RewriteRule ^(fuel/modules/(.+)?/assets/(.+)) - [L] # Protect application and system files from being viewed RewriteRule ^(fuel/install/.+|fuel/crons/.+|fuel/data_backup/.+|fuel/codeigniter/.+|fuel/modules/.+|fuel/application/.+) - [F,L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule .* index.php/$0 [L] # Prevents access to dot files (.git, .htaccess) - security. RewriteCond %{SCRIPT_FILENAME} -d RewriteCond %{SCRIPT_FILENAME} -f RewriteRule "(^|/)\." - [F] </IfModule> Options -IndexesHelp me

Comments

  • My .htaccess is similar. On my test rig, the .htaccess works fine but on my live, shared hosting, I have to remove everything outside the IfModule block for it to work.

    Try removing "Options +FollowSymLinks" and "Options -Indexes"
  • edited 1:24AM
    I removed all that is outside the IfModule block, but I always get Internal Server Error
  • edited 1:24AM
    I reloaded all files and now I get another error

    Warning: include_once(/web/htdocs/www.mysite.org/home/subdir/fuel/application/../modules/fuel/config/fuel_constants.php): failed to open stream: No such file or directory in /web/htdocs/www.mysite.org/home/subdir/fuel/application/config/constants.php on line 39
  • edited 1:24AM
    Is there a subdir/fuel/modules/fuel/config/fuel_constants.php file?
Sign In or Register to comment.