This topic is locked
[SOLVED]

 How To Change Start Up Page

1/13/2013 5:41:41 AM
PHPRunner General questions
D
dannche author

Hi All,
I would like to find out how to start up my application with a different page than the default page of showing me the menu page. I want to show ConferenceList_list.php as my start up page.
Any pointers is much appreciated.
Thanks.
Danny.

S
Saraxs 1/13/2013



Hi All,
I would like to find out how to start up my application with a different page than the default page of showing me the menu page. I want to show ConferenceList_list.php as my start up page.
Any pointers is much appreciated.
Thanks.
Danny.


Hi,
You can use the "After successful login"-event to redirect to your page.

C
cgphp 1/13/2013

In the "After successful login" event, enter the following code:

header("Location: ConferenceList_list.php");

exit();
D
dannche author 1/13/2013



In the "After successful login" event, enter the following code:

header("Location: ConferenceList_list.php");

exit();



Dear Cristian,
I don't have a login page. So how do I do this?
Thanks again.
Regards,

Danny.

S
Saraxs 1/13/2013



Dear Cristian,
I don't have a login page. So how do I do this?
Thanks again.
Regards,

Danny.


You can use the event in your menu page "Menu page: Before process" - event. Put the redirection code in there.

D
dannche author 1/13/2013



You can use the event in your menu page "Menu page: Before process" - event. Put the redirection code in there.


Thanks Saraxs. It works like a charm.