Great Reviews!Need help setting up your website, installing Apache, PHP, MySQL, or RavenNuke(tm)?Need help customizing or designing scripts?Please contact us via the Contact Us option for further details and pricing.
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.
·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".
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 On
That 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 ]