Disabling the ”Security Code” feature of PHP-Nuke

Run the following commands:

cd /www/docs/mydomain.com/
grep -R “extension_loaded(”gd”)” * | awk -F”:” ‘{print $1}’ | sort | uniq

Wait at least 30 seconds. It’s searching all the files in this directory. Each of the files returned will contain the string ‘extension_loaded(”gd”)’, which must be replaced [...]

HowTo Set Up PHP Nuke (a quick guide)

This is more of a technical FYI, not really a practical guide for Linuxwhore.com server users :-). Well, actually, I suppose everything except for the mysql commands could be performed by users, the rest needs to be granted by root.
      mkdir phpnuke
      cd phpnuke/
      tar -zxvf ../PHP-Nuke-6.8.tar.gz
    [...]