Password problems
Password problems
Just signed up for logging a few hours ago.. I can log into the site, and RTB updates my site properly, but..
It keeps giving me the 'The script at http://yourhost/rtb/catcher.php has returned a password error!' message, even though the username and password in the config.php file are correct.
Any ideas?
It keeps giving me the 'The script at http://yourhost/rtb/catcher.php has returned a password error!' message, even though the username and password in the config.php file are correct.
Any ideas?
-GC
Nope.. I'm working out of http://uhoh-boom.com/gc/rtb/Jay wrote:what happens if you go to the url of the script in your browser? any PHP errors?
-GC
- Jay
- Will work for food (Administrator)
- Posts: 3025
- Joined: Mon Jan 14, 2002 12:48 am
- Location: Next Door
- Contact:
well this version of catcher was rewritten by Tom, I think that he removed the Register Globals override stuff I put in the last version.
Try putting this bit of code on line 4:
then see if it can log in.
Try putting this bit of code on line 4:
Code: Select all
if (isset($_REQUEST)) {
while(list($varname, $varvalue) = each($_REQUEST)) { $$varname = $varvalue; }
}
if (isset($_SERVER)) {
while (list($varname, $varvalue) = each($_ENV)) { $$varname = $varvalue; }
while (list($varname, $varvalue) = each($_SERVER)) { $$varname = $varvalue; }
}
- Jay
No luck. I put it right after include("config.php");Jay wrote:well this version of catcher was rewritten by Tom, I think that he removed the Register Globals override stuff I put in the last version.
Try putting this bit of code on line 4:then see if it can log in.Code: Select all
if (isset($_REQUEST)) { while(list($varname, $varvalue) = each($_REQUEST)) { $$varname = $varvalue; } } if (isset($_SERVER)) { while (list($varname, $varvalue) = each($_ENV)) { $$varname = $varvalue; } while (list($varname, $varvalue) = each($_SERVER)) { $$varname = $varvalue; } }
Is that correct?
-GC