Install: Cannot find Joomla XML setup file, warning message -


i getting waring message, jinstaller: :install: cannot find joomla xml setup file

joomla version 3.0.

tried changing , 3.0 3.

   <?xml version="1.0" encoding="utf-8"?>     <!doctype install public "-//joomla! 3.0//dtd template 1.0//en"     "http://www.joomla.org/xml/dtd/1.6/template-install.dtd">     <extension version="3.0" type="template" client="site">         <name>aj_dynamic</name>         <creationdate>25 september 2012</creationdate>         272103_1_endan rahmel     </author>     <authoremail>drahmel@joomlajumpstart.com</authoremail>     <authorurl>http://www.joomlajumpstart.com</authorurl>     <copyright>copyright (c)2012-2013 dan rahmel.</copyright>     <license>gnu gpl</license>     <version>3.0</version>     <description>responsive template created in book         advanced joomla!</description>     <files>         <filename>index.php</filename>         <filename>templatedetails.xml</filename>     </files>     <positions>         <config>             <fields name="params"></fields>         </config>     </extension>     <position>debug</position>     <position>position-0</position>     </positions> 

your xml file little muddled up. has missing tags , tags in incorrect places.

it should follows:

<?xml version="1.0" encoding="utf-8"?> <extension version="3.0" type="template" method="upgrade" client="site">     <name>aj_dynamic</name>     <creationdate>25 september 2012</creationdate>     <author>272103_1_endan rahmel</author>     <authoremail>drahmel@joomlajumpstart.com</authoremail>     <authorurl>http://www.joomlajumpstart.com</authorurl>     <copyright>copyright (c)2012-2013 dan rahmel.</copyright>     <license>gnu gpl</license>     <version>3.0</version>     <description>responsive template created in book advanced joomla!</description>      <files>         <filename module="mod_aj_dynamic">mod_aj_dynamic.php</filename>         <filename>templatedetails.xml</filename>     </files>      <positions>         <position>debug</position>         <position>position-0</position>     </positions>      <config>         <fields name="params">             <fieldset name="basic">                  <field name="params1" label="param 1" default="" />                  <field name="params2" label="param 2" default="" />             </fieldset>         </fields>     </config> </extension> 

note have changed index.php mod_aj_dynamic.php. need apply name change actual file too.


Comments

Popular posts from this blog

java - How to specify maven bin in eclipse maven plugin? -

single sign on - Logging into Plone site with credentials passed through HTTP -

php - Why does AJAX not process login form? -