So I've taken a look at the php script:
Code:
if ( !file_exists( 'templates/'. $cur_template .'/index.php' ) ) {
echo '<font color=\"red\"><b>'.T_('Template File Not Found! Looking for template').'</b></font>'.$cur_template;
And I get
Template File Not Found! Looking for template
templatename
Yet I know that the directory and index.php file exist in that location. What can stop file_exists function from working correctly? I've heard of using the .htaccess file, but I have a Windows Host account and creating a file like that causes a 500 error.