该模块与您的 X-Cart 版本不兼容

The module is not compatible with your X-Cart version

我正在为 x-cart 创建一个模块。我正在学习本教程

http://kb.x-cart.com/display/XDD/Step+1+-+creating+simplest+module

该模块显示在管理面板的模块列表中,但显示 The module is not compatible with your X-Cart version.

我的x-cart版本是5.2.4。请指教

抱歉,文章有问题。您需要将模块的 getMajorVersion() 方法定义为:

public static function getMajorVersion()
{
    return '5.2';
}

与文章中定义不符:

public static function getMajorVersion()
{
    return '5.1';
}

我已经更正了文档,它应该不会成为未来参考的问题。

谢谢!

托尼