1

私はすでに joomla 3.1.4 をセットアップしており、プラグインをインストールしようとしましたが、次のエラーが発生しました: JInstaller: :Install: Cannot find Joomla XML setup file

これは私の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>tcetin@yandex.com</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>
4

4 に答える 4

3

xml ファイルで「helloworld.xml」を指定する必要はありません。ファイルを削除して、再度インストールしてください。これが最終的な xml ファイルになります。

<?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>tcetin@yandex.com</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>

これが役立つことを願っています。

于 2013-07-30T07:21:38.753 に答える
1

「Joomla XML セットアップ ファイルが見つかりません」は通常、インストール先の Joomla のバージョン用に設計されていない拡張機能をインストールしようとしていることを意味します。

詳細はこちら

于 2013-07-28T09:43:28.640 に答える
1

開始<extension>タグでは、client 属性を指定する必要はありません。

ZIP パッケージに関連する XML ファイルはどこにありますか? ZIP の最上位にない場合は見つかりません。

于 2013-07-30T18:50:00.273 に答える