![]() | ||
![]() The Theme Builder is one way. You construct your theme "live" and then save it. Then, tweak it manually if you want/need to. Alternatively you can copy the default.thm.php file to your_new_theme.thm.php file and modify it according to your needs. [ Back to Top ] |
![]() | ||
![]() Modify this setting $language = "english.lang.php"; to one of the languages in the languages folder. [ Back to Top ] |
![]() | ||
![]() Modify this setting $theme = "clouds.thm.php"; to one of the themes in the themes folder. [ Back to Top ] |
![]() | ||
![]() These settings control whether or not the user can see (and change) them. Just set them to FALSE to restrict them.
[ Back to Top ] |
![]() | ||
![]() This is a result of the error_reporting level setting in your php.ini file. Please see this forum post for more explanation. [ Back to Top ] |
![]() | ||
![]() This is my fault! In nuke versions prior to 5.1.0, I had hard coded the name of the prefix to the tables as 'nuke'. In addtogb.php, updategb.php, and view_private.php, I had hard coded the nuke_users table as nuke_users instead of $prefix."_users". [ Back to Top ] |
![]() | ||
![]() Please see How do I remove the Cannot Add Header Information error message? in the phpNuke FAQ. The answer is the same. [ Back to Top ] |
![]() | ||
![]() This seems to be a register_globals issue. If you are running your PHP with register_globals Off then the quick fix is to use a .htaccess file in your kisgb folder. In the .htaccess file, add this line PHP_FLAG register_globals OnThat should fix it. Some windows editors will not allow you to name a file that starts with a '.' as in .htaccess. If that is your case, then name the file htaccess.txt. Then, after you ftp it to your production site, rename it to .htaccess. [ Back to Top ] |