Thanks for the reply, Marco.
I believe I found a fix, but it raises a bigger question that I need to ask the SSLExplorer people.
In login.php, I found that $_POST['do'] was NOT being passed correctly from SSLExplorer.
so I changed the following line:
if ($_POST['do'] == 'login')
to
if (($_REQUEST['do'] == 'login') AND ($_SERVER['REQUEST_METHOD'] == 'POST'))
and I am now able to login.
I believe that there might be an issue in SSLExplorer proxying the data from my browser to the actual vBulletin server, since 'do' is defined in both the $_GET and the $_POST.
What I'm concerned about now is what other features in vBulletin may run into the same type of problem where the $_POST value isn't passed correctly from my browser to the server.
Will keep you posted as I make more progress.
-Brian
|