View Single Post
  #99  
Old 01-08-2011, 11:54 AM
wolfwalkereci
Discordant
 
Join Date: Dec 2005
Posts: 435
Default

Finally got it working. Had two errors come up for me. One was telling me something about authentication which after searching google I found this solution to:
Code:
SET PASSWORD FOR root@localhost = OLD_PASSWORD('mypass');
Then it would give me a error on line 90 of mysql.php in the classes folder.
So I just deleted the whole section listed here:
Code:
 // Deter UNION SQL Injection
if (stripos($value, 'union')) {
logSQL("SQL injection monitored by user at IP: '" . getIP() . "' using the query: '" . $value . "'.");
header ("Location: index.php");
exit;
}
I can login and hopefully have no more issues.
Note- I attempted to follow the walk through as close as I could, which included google searching and downloading the older apache and php.
Reply With Quote