http://www.perlmonks.org?node_id=953999


in reply to Re: RFC: Proposed tutorial - simple login script using CGI::Application
in thread RFC: Proposed tutorial - simple login script using CGI::Application

Sorry about that - I've fixed it. Thanks for the feedback.
  • Comment on Re^2: RFC: Proposed tutorial - simple login script using CGI::Application

Replies are listed 'Best First'.
Re^3: RFC: Proposed tutorial - simple login script using CGI::Application
by Anonymous Monk on Jan 21, 2016 at 13:02 UTC
    Hi, could you please suggest me, how to redirect after successful login however i dont to be change the http://localhost/cgi-bin/WebApp/simple.pl in the browser. Thanks,

      The CGI::Application::Plugin::Authentication config method provides the parameters POST_LOGIN_RUNMODE and POST_LOGIN_URL for this purpose (see the documentation). I actually make use of POST_LOGIN_RUNMODE in this demo to route control through my 'okay' runmode, whose main purpose is to transition from https back to http. Feel free to modify that run mode as needed for whatever you need to do.

        Thanks , I have created script with CGI Perl and I’m trying to add login page this tutorial and its working good . However when I’m trying to redirect page (calling my script with POST_LOGIN_URL) its complete change the new URL. im not sure how to add same URL with my script. Couple you please guide some example Thanks in advance!

      You don't need to redirect to a new script. You could redirect to http://localhost/cgi-bin/WebApp/simple.pl?loginSuccess=1 for example.

        Thanks , I have created script with CGI Perl and I’m trying to add login page this tutorial and its working good . However when I’m trying to redirect page (calling my script with POST_LOGIN_URL) its complete change the new URL. im not sure how to add same URL with my script. Couple you please guide some example Thanks in advance!