8
If you have set as default phpkaox theme in system > preferences > general settings...this gets recorded in the database.
If you then change the name phpkaox (being it default theme still) for something else the database will not be able to find the theme and render a white page. You would have to change the directory name to what it was before so the database reads it again. Yet changing a theme's directory name doesn't damage a database.
To change a theme name, 1st it can't be set as default theme in your admin settings until the name changes are done. 2nd you rename the theme folder to whatever you want, 3rd make sure inside the theme the blocks are being called by the new theme name in lines that look like this:
Quote:
<{include file="default/theme_blockcenter_l.html"}>
"default"= your new theme name, or better even replace it like this using
$xoops_theme Quote:
<{include file="$xoops_theme/theme_blockcenter_l.html"}>
that way you can keep changing the theme name, without worrying of the content theme code.
After that is done you can go to admin settings and make your newly named theme your default theme.