Warning: Smarty error: unable to read resource: "mollio/index.tpl" in /home/renegade/public_html/youtubez/Smarty.class.php on line 1095
How do I fix this?
templates.tpl:
Code:
<br/>
<a href = "?template=borrowedgoods">Borrowed Goods from openwebdesign.org</a><br/>
<a href = "?template=mollio-beat">Mollio</a><br/>
Config.php
Code:
//Template
//define('The_Template', 'mollio-beat');
define('Allow_User_Change_Templates', true); // true or false
if(isset($_COOKIE['template'])){
$thetemp = $_COOKIE['template'];
} else {
$thetemp = "mollio-beat";
}
define('The_Template', $thetemp);
// ---