SchoolErp
SchoolErp copied to clipboard
error 404
that's what i updated .htaccces file to.
still getting error 404
I Changed the controllers,models file name to ucfirst and it worked on the server. Basically you'll have to change all the php file names to ucfirst if it contains classes. e.g home.php to Home.php accounts.php to Accounts.php get_model.php to Get_model.php
Getting 404 ERROR..! anyone solved it yet? Do I need to ucfirst each controller / models / views ?
RewriteEngine On RewriteBase /schoolerp RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ /schoolerp/index.php/$1 [L] that's what i updated .htaccces file to.
still getting error 404
Change it to my way:
.htaccess:
RewriteBase /SchoolERP RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ /SchoolERP/index.php?$1 [L] </IfModule>