什么&x2019;Joomla 3.x中的这个模块有什么问题?

什么&x2019;Joomla 3.x中的这个模块有什么问题?,joomla,Joomla,我正试图用Joomla完成本教程!: mod_helloworld.xml如下所示: <description>A simple Hello, World! module.</description> <install> <sql> <file driver="mysql" charset="utf8">sql/mysql/install.mysql.utf8.sql</file> &

我正试图用Joomla完成本教程!:

mod_helloworld.xml如下所示:

  <description>A simple Hello, World! module.</description>
  <install>
    <sql>
      <file driver="mysql" charset="utf8">sql/mysql/install.mysql.utf8.sql</file>
     </sql>
  </install>
  <scriptfile>script.php</scriptfile>
但当我尝试安装模块时,我收到以下错误:

警告:安装:错误SQL DB函数报告没有错误。 扩展安装:SQL错误处理查询:DB函数报告否 错误

安装模块时出错


我会在mod_helloworld.xml中添加这些行来解决这个问题

<files>
    <folder>sql/mysql</folder>
</files>

sql/mysql

您绝对不应该使用MyISAM。从1.6开始需要Innodb。
<files>
    <folder>sql/mysql</folder>
</files>