Reputation: 141
I install A3M Codeigniter library and there is and error when i try to sign in or sign up it returns me to the same page without posting posting, when sign up with facebook for example it back to page "Confirm your account information" and still return to this page when i click a submit button called "Complete".
What is the reason of this problem.
Thanks.
Upvotes: 1
Views: 166
Reputation: 55
I think the .htaccess file must be like this:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php/$0 [PT,L]
Upvotes: 1