when using a login form on a php/tpl-based website?

  • Thread starter Thread starter ChocMorena
  • Start date Start date
C

ChocMorena

Guest
where can i find the page to edit where the user goes AFTER they login? I have searched everywhere!
basically, i am editing a page that has a login page. i need to redirect the visitor to a different page other than the one that is currently coded. instead of going to 'page 1' i need them to go to 'welcome' ..i cant find the redirect code anywhere
 
Find the login form and see where the action points to. You could also look at the page source in the browser to find it,
<form action="SOMETHING.php">
Than open that file ans search for "header" it may look like header("location: page1.php") that may be the redirect the script is using. Best i can do with out seeing any code.
 
Find the login form and see where the action points to. You could also look at the page source in the browser to find it,
<form action="SOMETHING.php">
Than open that file ans search for "header" it may look like header("location: page1.php") that may be the redirect the script is using. Best i can do with out seeing any code.
 
Back
Top