Unfortunately the theme wasn't uploaded correctly. Thats why the readme states:
|
Quote:
|
|
Test the theme by selecting it in Your Account. Do Not select the theme in the admin preferences until you are sure it was installed correctly.
|
Regardless, save the code below as themefix.php and upload to your root folder (where your mainfile.php and config.php are) then point your browser to it. (
http://yoursite.com/themefix.php)
If your not using the DeepBlue theme then replace the theme name with one that you know works.
|
Code:
|
<?php
require_once("mainfile.php");
$theme= "DeepBlue";
$sql = "UPDATE ".$prefix."_config SET Default_Theme = '".$theme."'";
$result = $db->sql_query($sql);
echo "Thanks for using this fix! Your theme has been reset to ".$theme."";
?> |