Ravens PHP Scripts FAQ (Frequently Asked Questions)
Category: Main -> KISGB
Answer | |
· How do I create a new theme? 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 ] | |
· How do I change the default language? Modify this setting $language = "english.lang.php"; to one of the languages in the languages folder. [ Back to Top ] | |
· How do I change the default theme? Modify this setting $theme = "clouds.thm.php"; to one of the themes in the themes folder. [ Back to Top ] | |
· How can I keep users from changing the theme and/or language? These settings control whether or not the user can see (and change) them. Just set them to FALSE to restrict them.
[ Back to Top ]
| |
· How do I get rid of these Undefined Variable messages? 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 ] | |
· When I goto save an entry, I just get a blank page. Why? 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 ] | |
· How do I remove the Cannot Add Header Information error message? 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 ] | |
· The Preview screen is dropping values. 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 [ Back to Top ]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. |