2013-07-27 5 views
1

J'ai déjà installé joomla 3.1.4 et j'ai essayé d'installer un plugin, mais Im obtenir cette erreur: JInstaller:: Installer: Impossible trouver le fichier de configuration XML JoomlaJoomla 3.1.4, JInstaller:: Installer: Impossible de trouver fichier d'installation XML Joomla, erreur

Ceci est mon fichier xml:

<?xml version="1.0" encoding="UTF-8"?> 
    <!DOCTYPE install PUBLIC "-//Joomla! 1.5//DTD template 1.0//EN" "http://www.joomla.org/xml/dtd/1.5/template-install.dtd"> 
    <extension version="3.1" type="plugin" group="content" client="myjoomlasite"> 
     <name>plg_content_helloworld</name> 
     <author>Tahsin Çetin</author> 
     <creationDate>July 27th,2013</creationDate> 
     <copyright>Tahsin Çetin</copyright> 
     <licence>GNU General Public License</licence> 
     <authorEmail>[email protected]</authorEmail> 
     <authorUrl>http://tahsincetin.com</authorUrl> 
     <version>1.1.0</version> 
     <description>Simple Hello World plugin</description> 
     <files> 
      <filename plugin="helloworld">helloworld.php</filename> 
      <filename>index.html</filename> 
      <filename>helloworld.xml</filename> 
     </files> 
    </extension> 

Répondre

1

« Impossible de trouver le fichier de configuration XML Joomla » signifie généralement que vous essayez d'installer une extension qui n'a pas été conçu pour la version de Joomla vous installez à.

En savoir plus here

3

Vous n'avez pas besoin de spécifier "helloworld.xml" dans votre fichier xml file.Remove et installer again.This sera votre xml finale Fichier-

<?xml version="1.0" encoding="UTF-8"?>  
    <extension version="3.1" type="plugin" group="content" client="myjoomlasite"> 
     <name>plg_content_helloworld</name> 
     <author>Tahsin Çetin</author> 
     <creationDate>July 27th,2013</creationDate> 
     <copyright>Tahsin Çetin</copyright> 
     <licence>GNU General Public License</licence> 
     <authorEmail>[email protected]</authorEmail> 
     <authorUrl>http://tahsincetin.com</authorUrl> 
     <version>1.1.0</version> 
     <description>Simple Hello World plugin</description> 
     <files> 
      <filename plugin="helloworld">helloworld.php</filename> 
      <filename>index.html</filename>     
     </files> 
    </extension> 

Hope this aidera.

+1

Ceci est la réponse et devrait me marqué comme tel. –

1

Dans votre balise <extension> d'ouverture, vous n'avez pas besoin de spécifier un attribut client.

Où se trouve le fichier XML par rapport à votre paquet ZIP? Si ce n'est pas au niveau supérieur du ZIP, il ne sera pas trouvé.