please help i can not get fuel to install

edited September 2014 in Installation
I just downloaded fuel, follow the installation step but my fuel dont load more the the first welcome page once i add /fuel to access the admin it takes me back to my localhost/index page. please what am i missing out. used codeigniter pretty well

Comments

  • edited 8:02AM
    Check comfig file, if u ensble the admin to true?
  • edited 8:02AM
    Yes I did
  • edited 8:02AM
    Check .htaccess?
  • edited 8:02AM
    This is my .htaccess

    Options +FollowSymLinks


    RewriteEngine On
    RewriteBase /


    Order Deny,Allow
    Deny From All


    # 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]


    Options -Indexes
  • edited 8:02AM
    There are normally 2 things to check with .htaccess:

    1. Try one of the following:
    RewriteRule .* index.php?/$0 [L]
    OR without the "?"
    RewriteRule .* index.php/$0 [L]

    2. If FUEL is in a subfolder on your webserver, change the RewriteBase to include that folder:
    RewriteBase /myfolder/
Sign In or Register to comment.