Question #204289 on PHPDevShell changed:
https://answers.launchpad.net/phpdevshell/+question/204289
Status: Open => Answered
Greg proposed the following answer:
Yes change this line:
if ($plugin->lookupUser(array('username' => $username, 'password' =>
$password))) {
to
if (is_a($plugin, 'iAUTH_plugin') &&
($plugin->lookupUser(array('username' => $username, 'password' =>
$password)))) {
However the other change is likely to trigger the exception you
reported, so if you changed:
line 48
throw new PHPDS_exception('Unable to implement auth plugin');
to
return false;
it should be working
--
You received this question notification because you are a member of
PHPDevShell, which is an answer contact for PHPDevShell.
_______________________________________________
Mailing list: https://launchpad.net/~phpdevshell
Post to : [email protected]
Unsubscribe : https://launchpad.net/~phpdevshell
More help : https://help.launchpad.net/ListHelp