I installed the latest version of Raven PHP-Nuke, and the setup proceeded without any problems. However when I go to log in the first time to the admin panel it just says "Begone" . I am absolutely sure that I am using the username / password that I setup during the install. I am also sure that I am entering the security image correctly. Has anyone else experienced this problem?
The only thing I can think of is maybe the username that I set up has invalid characters? It was ".:SL:.Black.September" .
Also, is there anyway to get rid of all of the "Security Code" boxes. They are highly annoying.
if (isset($aid) && (ereg('[^a-zA-Z0-9_-]',trim($aid)))) {
die('Begone');
}
Which states, "if you see any character other than A-Z, a-z, 0-9, underscore or hyphen, kill the script and print to screen "Begone".
Use phpMyAdmin to edit your admin name in the authors table, or temporarily disable the code above, or edit the regex to allow periods and colons. I'd recommend the first option. = )
if (isset($aid) && (ereg('[^a-zA-Z0-9_-]',trim($aid)))) {
die('Begone');
}
Which states, "if you see any character other than A-Z, a-z, 0-9, underscore or hyphen, kill the script and print to screen "Begone".
Use phpMyAdmin to edit your admin name in the authors table, or temporarily disable the code above, or edit the regex to allow periods and colons. I'd recommend the first option. = )
Welcome to Raven's Forums!
PHrEEk
I definitely need to allow periods and colons in user names.
So...
Code:
if (isset($aid) && (ereg('[^a-zA-Z0-9_-]',trim($aid)))) {
die('Begone');
}
Would become...
Code:
if (isset($aid) && (ereg('[^a-zA-Z0-9_-.:]',trim($aid)))) {
die('Begone');
}
?
Additionally,
Quote:
Check config.php for $gfx_chk and rn_config for your settings.
$gfx_chk = 0; no check isnīt really recommended.
It seems like this would just remove the check, but the image block would still exist on the login area? If I am correct is there a way to remove it entirely?
Sorry if this has sort of evolved past the intent of this particular forum.
View next topic View previous topic
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
All logos and trademarks in this site are property of their respective owner.
The comments are property of their posters, all the rest Đ 2002-2008 by Raven
Proud to be listed at Lobo Links Web Directory
You can syndicate our news using the file
Website engines core code is Đ copyright by PHP-Nuke but has been heavily patched and modified by myself and others. PHP-Nuke is a free software released under the GNU/GPL.