03-28-2018, 10:49 AM
login.php is either:
-not in your DB
-in your DB as private
You need to run this query:
If there is a result, run this:
If there is no result run this:
So you're aware of what is happening:
usersc/login.php doesn't exist or exists and is private so it's pushing you to users/account.php
users/account.php is set to private and you aren't logged in, so it's redirecting you to users/login.php which in turn redirects you to usersc/login.php but then puts you in an endless loop.
-not in your DB
-in your DB as private
You need to run this query:
Code:
SELECT * FROM pages WHERE page = 'usersc/login.php'
If there is a result, run this:
Code:
UPDATE pages SET private=0 WHERE page = 'usersc/login.php'
If there is no result run this:
Code:
INSERT INTO pages VALUES (NULL,'usersc/login.php',0,'Login',0,NOW(),NULL
So you're aware of what is happening:
usersc/login.php doesn't exist or exists and is private so it's pushing you to users/account.php
users/account.php is set to private and you aren't logged in, so it's redirecting you to users/login.php which in turn redirects you to usersc/login.php but then puts you in an endless loop.