I can't find admin page

edited March 2015 in News & Announcements
Hi friends, I'm new with fuelcms, I foolow the instructions to the new installation, and i have installed the applicattion . but when I try to go to admin page the system goes to front end of xampp, I can'tfind the rout to edmin page???
can some body help me??

Comments

  • edited 10:18PM
    Did you change the .htaccess file and do you have mod_rewrite enabled with XAMP? Also, do you have the admin enabled per the instructions?
  • edited 10:18PM
    Yes I have put TRUE in admin enabled, mod_rewrite is on en apache, my application path is c:\bxampp\htdocs\fuelcms ; I don't know if my .htaccess is correct-- the .htaccess file is this:
    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

    Thanks for your attention, I appreciate you help.

    JAC
  • edited 10:18PM
    Try changing
    RewriteBase /
    to
    RewriteBase /fuelcms/
  • edited 10:18PM
    Thanks my friend.
    This information was rigth, I can going to admin page now.
    Do you know if there are some applications which I can download, or some books in order to study the applications, thanks again for your help
  • edited 10:18PM
    The user guide may be the most helpful as well as downloading other modules to see how they work:
    http://docs.getfuelcms.com/
    http://www.getfuelcms.com/developers

    Also, knowing CodeIgniter is important.
Sign In or Register to comment.