I've read the tutorials on setting up template overrides, and they all seem to say the same thing, which is a good sign. But when I follow the steps, I get to the part where you click on Admin : Tools : Template Selection : Edit, and my custom theme doesn't appear in the dropdown list along with "Custom Contemporary Green". I'm running a fresh install of ZC 1.3.6 on PHP 4.4.4 / MySQL 4.0.27.

My custom theme directories are all called "pci".

1) I made a new template directory at includes/templates/pci and made sure it has the same permissions as the existing directories (755).
2) I made the sub-directories common, css, images, sideboxes, and templates, and made sure that they also had 755 perms.
3) I copied stylesheet.css from template default to includes/templates/pci/
4) I copied template_info.php to my custom template directory, and made sure it had 755 permissions.

So, my custom template directory structure looks like this:



I have carefully edited the template_info.php file, making sure that it has the right permissions, that it's in the correct location, and that I didn't do something stupid like use an apostrophe in the description inside the single quotes. It all checks out. In fact, here is the file's contents:


Code:
<?php
$template_name = 'pci';
$template_version = 'Version 1.0';
$template_author = 'frogtaco';
$template_description = 'PCI custom ZenCart template.';
$template_screenshot = '';
?>
As far as I can tell, it's all good. But when I go to Admin : Tools : Template Selection and click Edit, my new template doesn't appear in the dropdown box.

Can someone see what I'm doing wrong? I can't figure it out.

Thanks!
-Evan