guptarajesh / CodeIgnitor-3.2-Login-Register-Dashboard-CRUD-Operations

CodeIgnitor 3.2 based CRUD application, used to role based User Login, Registration, Dashboard and CRUD for Manage Customers, Manage Vehicles. Advanced Bootstrap 4.0 based UI for Admin Dashboard (AdminLTE)
GNU General Public License v3.0
8 stars 14 forks source link

User navigates to error page http://localhost:8081/CodeIgnitor-3.2-Login-Register-Dashboard-CRUD-Operations/loginMe, after attempting to login using admin / manager users #1

Open dineshkummarc opened 3 years ago

dineshkummarc commented 3 years ago

User navigates to error page http://localhost:8081/CodeIgnitor-3.2-Login-Register-Dashboard-CRUD-Operations/loginMe, after attempting to login using admin / manager users

eskemo commented 3 years ago

Hi Dinesh,

create a .htaccess file --

No directory listings

IndexIgnore *

Can be commented out if causes errors, see notes above.

Options +FollowSymlinks Options -Indexes

Mod_rewrite in use.

RewriteEngine On

RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]

RewriteCond %{REQUEST_URI} !^/index.php RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule .* index.php [L] }

This should fix your error.

dineshkummarc commented 3 years ago

Hello eskemo, Thank you for the resolution, i will try the same way.

sve95 commented 3 years ago

Dear Eskemo, after attempting to login with Request URL: http://10.230.16.154/fol/loginMe metod POST /fol/loginMe HTTP/1.1 server response HTTP/1.1 404 Not Found

sve95 commented 3 years ago

Problem was solved by change AllowOverride None to AllowOverride All

Romacrist commented 3 years ago

Hi sve95, Hi everybody,

One of you can post the integrality of your .htaccess with the solution please ? Thanks in advance

Rom1