我正在制作一个 Joomla 2.5.8 模板,但 joomla 无法识别它。
我有这个文件结构(注意,它是一个子域)
kadobos (root of subdomain)
|>templates
|>kadobosTemplate
|>index.php
|>templateDetails.xml
index.php 现在只包含以下代码:
<!DOCTYPE html>
<html>
<head>
<title>KadoBos, voor al uw speelgoed</title>
</head>
<body>
Welkom op deze website
</body>
</html>
并且 templateDetails.xml 包含以下代码:
<?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>
但我在模板管理器中看不到模板。所以我不能为网站选择它作为默认模板。我怎样才能让 joomla 识别它?