authvb.php looks like just the thing I need, but I've been tearing my hair out trying to get it to work on my server. After reading through the whole of this thread, I finally found the hack which should make it work on 3.5.x. My select statement now looks like this:
Code:
$sql = "SELECT * FROM user WHERE
username = '$PHP_AUTH_USER' AND
password = MD5(CONCAT(MD5('$PHP_AUTH_PW'), salt)) AND
(usergroupid = '6' or usergroupid = '11' or usergroupid = '12' or usergroupid = '2') ";
My test page is finding the script, as an .htaccess-type box pops up. However, when I enter a username and password it just presents me with an empty username/password box again. I've tried it with several different username/password combinations and checked that those usernames belong to one of the specified usergroupids.
Any ideas on what I should try next?
-- Tim L