Jump to content

Search the Community

Showing results for tags 'login logout redirection modu'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Welcome to ProcessWire
    • News & Announcements
    • Showcase
    • Wishlist & Roadmap
  • Community Support
    • Getting Started
    • Tutorials
    • FAQs
    • General Support
    • API & Templates
    • Modules/Plugins
    • Themes and Profiles
    • Multi-Language Support
    • Security
    • Jobs
  • Off Topic
    • Pub
    • Dev Talk

Product Groups

  • Form Builder
  • ProFields
  • ProCache
  • ProMailer
  • Login Register Pro
  • ProDrafts
  • ListerPro
  • ProDevTools
  • Likes
  • Custom Development

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests

Found 1 result

  1. dear all I try to implement another kind of login/logout redirection in a module. I have found some concerning methodes in ProcessLogin that I try to call in the init() methode of my module: class ProcessLoginRedirect extends ProcessLogin { public static function getModuleInfo() { return array( 'title' => 'Login Redirect', 'version' => 1, 'summary' => 'Define constant redirect page for login and logout process.', 'autoload' => true ); } public function init() { parent::init(); // required $this->setLoginURL('/'); $this->setLogoutURL('/'); } } for testing, I try to redirect to the homepages frontend ('/'), but this does not work at all... I suppose, that this code is not called at all... what do I wrong? what could I do for debugging? thanks for help
×
×
  • Create New...