"JInstaller :: Install: Cannot find Joomla XML installation file": unable to install Joomla templates

When I try to install Joomla Templates, I get this error:

 Warning JInstaller: :Install: Cannot find Joomla XML setup file 

Which file?

I am using Joomla 3. I downloaded several Joomla templates from the torrent and they all display this error. What is it? This may be the case for all the templates I downloaded. Is this because the Joomla 1.5 template will not work with Joomla 3?

How to install these templates? I see a file called templateDetails.xml .

Note:

Here is templateDetails.xml : thexml.html

+7
source share
6 answers

I found something while watching.

Just change the XML file in the templates folder.

change the 'install' tag to 'extension' and change the version to 2.5 or higher ... and it worked for me.

The step-by-step process is explained in the link below.

http://www.techaviyal.com/jinstaller-install-cannot-find-joomla-xml-setup-file-joomla/ (dead link)

+8
source

Is this because the Joomla 1.5 template will not work with Joomla 3? Answer YES . You cannot use Joomla 1.5 templates directly in Joomla 3. Since the structure of the Installer file has been changed from Joomla 1.6. You need to upgrade the Joomla 1.5 template to a newer version of Joomla. To do this, see the link below:

Update Joomla 1.5 template to Joomla 2.5

Basic template development

Hope this helps you.

+1
source

Sorry, at first I didn’t even see the xml file.

Well, the XML file was for the Joomla 1.5 template and therefore will not work.

I updated it so that now it will work for Joomla 3

http://pastebin.com/1Dv6g6ip

 <?xml version="1.0" encoding="utf-8"?> <extension version="3.0" type="template" method="upgrade"> <name>themza_j15_11</name> <version>1.0.1</version> <creationDate>2008-10-20</creationDate> <author>Themza Team</author> <authorEmail> templates@themza.com </authorEmail> <authorUrl>http://www.themza.com</authorUrl> <copyright>ThemZa 2008</copyright> <license>ThemZa TOS</license> <description>Computer Society</description> <files> <filename>index.php</filename> <filename>index.html</filename> <filename>templateDetails.xml</filename> <filename>template_thumbnail.png</filename> <filename>params.ini</filename> <filename>favicon.ico</filename> <filename>component.php</filename> <folder>css</folder> <folder>html</folder> <folder>images</folder> </files> <positions> <position>breadcrumb</position> <position>left</position> <position>right</position> <position>top</position> <position>user1</position> <position>user2</position> <position>user3</position> <position>user4</position> <position>debug</position> <position>syndicate</position> </positions> <config> <fields name="params"> <fieldset name="basic"> <field name="pageAlignment" type="radio" default="center" label="Page Alignment" description="Page Alignment"> <option value="left">left</option> <option value="center">center</option> <option value="right">right</option> </field> <field type="spacer" /> <field name="colorVariation" type="list" default="red" label="Color Variation" description="Color variation to use"> <option value="red">Red</option> <option value="blue">Blue</option> <option value="green">Green</option> <option value="orange">Orange</option> </field> <field type="spacer" /> <field name="hideLogo" type="radio" default="0" label="Hide Logo" description="Hide the logo."> <option value="0">No</option> <option value="1">Yes</option> </field> <field type="spacer" /> <field name="hideBannerArea" type="radio" default="0" label="Hide Banner Area" description="Hide the banner section under the menu."> <option value="0">No</option> <option value="1">Yes</option> </field> <field type="spacer" /> <field name="dateDisplay" type="radio" default="1" label="Date Display" description="Display the date in the top right corner of the template."> <option value="0">No</option> <option value="1">Yes</option> </field> </fieldset> </fields> </config> </extension> 

Hope this helps

+1
source

For JOOMLA 3.0

It's so simple unzip mod_as_scroller.zip, and then in the mod_as_scroller folder find the joomla 3.0 folder and set as_scroller.zip so that there are no more errors

0
source

Usually, when this happens, something is wrong with the XML file. If you made any changes, try to think about where these changes were and find the problem with the XML file.

Problems may be:

  • There is no start or end tag. Closing tags are easy to skip. Count them, make sure there is an opening and closing tag.
  • Duplicate tags. For example, it is easy to add two labels or showons , especially if you copy and paste.
  • Space before XML opening tag
  • No closing tag fieldset
  • There is no closing extension or config tag. Easy to remove if you replace the file

You can easily use such a tool:

https://www.w3schools.com/xml/xml_validator.asp

Which helps you find problems such as the lack of opening and closing tags.

0
source

All Articles