R
Asked
In My admin Login has problem.
First Login with right user password, show
"Error!
404 Not Found!
The page you are lookingfor can not be found."
After second try it works successfully.
In attachment has screenshot.
First Login with right user password, show
"Error!
404 Not Found!
The page you are lookingfor can not be found."
After second try it works successfully.
In attachment has screenshot.
- FUAnsweredHello my web site is running in production very well , but i just move my code to my localhost and now not work in my localhost, i can't do login , show "Error! 404 Not Found! The page you are lookingfor can not be found." .
this is my production .htaccess :
```
DirectoryIndex index.php index.html
<IfModule mod_rewrite.c>
RewriteEngine On
# RewriteBase /basepath/
RewriteCond $1 !^(index\.php|assets|install|update)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# For godady Shared Hosting Server uncomment the line below
RewriteRule ^(.*)$ index.php?/$1 [L]
# Please comment this if you have uncommented the above
# RewriteRule ^(.*)$ index.php/$1 [NC,L,QSA]
</IfModule>
# DO NOT REMOVE THIS LINE AND THE LINES BELLOW SSL_REDIRECT:elcanastodavida.com
RewriteEngine on
RewriteCond %{HTTPS} off
RewriteCond %{HTTP_HOST} (www\.)?elcanastodavida.com
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
# DO NOT REMOVE THIS LINE AND THE LINES BELLOW SSL_REDIRECT:elcanastodavida.com
``` - FUAnsweredCan anyone help me run the administrator on my localhost?
- MSAnsweredHello,
Can you visit the products and other pages?
Please check the documentation.pdf in your download for 404 not found check list/suggestions.
---
**Why am I getting 404 Not Found error after installation?**
Please
1. check that .htaccess file is successfully uploaded and exists in the main directory
2. make sure that your apache mod_rewite is enabled and configured to use .htaccess from site directory
3. base_url in app/config/config.php - MSAnswered**[Freddy Urbina](/u/fruch17)** Hello,
You can remove lines after </IfModule> from local .htaccess file and check suggestions above.
Thank you - RAnsweredEverything is works fine. There is no problem with any page or menu.
But for login first time with user password its unsuccessful. After second time try with same user password admin can Logged in his accounts.
in first question attachment has screenshots - MSAnswered**[Rashed](/u/Rashed_019)** That's quite strange. I never listen this before. It should work exact same every time. Do you use any optimisation or cache plugin/module?
- Login to Reply