This topic is locked
[SOLVED]

 to make it go to a particular page after loggedas

2/13/2015 2:12:11 PM
PHPRunner General questions
S
sfuente author

PHPRunner 8.0 I can not, after logging, make it go to a particular page, I'm using the loggedas, anyone know how?

Regards

I'm new intergrante.

SAUL

HJB 2/13/2015

... go to VISUAL EDITOR section, move the cursor to the left side where the pages tree is seen and RIGHT CLICK on your mouse when the cursor is pointing to that very LANDING PAGE you wish to be seen after login and select SET AS LANDING PAGE, that's it. If you have still problem, see the MANUAL (Help File) and search for "landing" and choose the seen "user loging settings" page ... then drill down to "Setting landing page" in the "VISUAL EDITOR - ABOUT" page. HTH!

S
sfuente author 2/13/2015

thanks for replying, I want to make is that, if invited, is directed to a screen and if admin to another url.

Sergey Kornilov admin 2/14/2015

Use AfterSuccessfulLogin event for this purpose.

if ($_SESSION["UserID"]=="admin")

header("Location: onepage.php");

else

header("Location: anotherpage.php");