Hey everyone,<br><br>I was wondering if it's possible to combine the two methods of lookup<br>so that a user can authenticate to both radius and local database (on the one<br>that he is defined).<br><br>to authenticate via radius it is done in my register section like this:
<br><br> if (!radius_www_authorize(""))<br> {<br> www_challenge("","0");<br> exit;<br> };<br><br>and so I was wondering if it's possible to do something like this:<br>
<br> if ( (!www_authorize("","subscriber")) || (!radius_www_authorize("")) )<br>
{<br>
www_challenge("","0");<br>
exit;<br>
};<br><br><br><br><br>Thanks,<br>Lir.<br>