I'm making an Joomla 2.5.8 template, but joomla wont recognice it.
I have this file structure (note, it's an subdomain)
kadobos (root of subdomain)
|>templates
|>kadobosTemplate
|>index.php
|>templateDetails.xml
The index.php is now only holding the following code:
<!DOCTYPE html>
<html>
<head>
<title>KadoBos, voor al uw speelgoed</title>
</head>
<body>
Welkom op deze website
</body>
</html>
And the templateDetails.xml holds this code:
<?xml version="1.0" encoding="utf-8">
<install version="1.5" type="template">
<name>kadoBosTemplate</name>
<author>Marc Meesters</author>
<version>1.0</version>
<description>
Template op maat gemaakt voor KadoBos, door Marc Meesters
</description>
<files>
<filename>index.php</filename>
<filename>templateDetails.xml</filename>
</files>
</install>
But i don't see the template at the template manager. So i can't select it for the website as default template. How can i let joomla recognice it?