>>
Site Map
>>
Forums
>>
PHP-Nuke Newbie FAQ's
Forum module - topics in forum:
PHP-Nuke Newbie FAQ's - <font color=red>Within this forum are a selection of faq's, unlike our common problems forum these are aimed at the newbie.</font>
[FAQ] Removing the security code up to version 6.8
------------------------------------------------
Find the 7 occurrences of exactly this:
extension_loaded("gd")
There will be five in the modules/Your_Account/index.php, one in the admin.php, and one in the auth.php.
Change all 7 to this:
0
So, the 'if' statements will go from looking like this
if (extension_loaded("gd")
to this
if (0
or if you're really concerned about squeezing out cycles, change the whole 'if' statement to
if (0)
or comment out that whole 'if' block!
---------------------------------------------
Altenatively - grab hold of the Your Account Tweak for your version of Nuke and there is the option to turn it on /off and set different settings for the security gfx in your admin panel.