我正在尝试创建一个新模块(joomla),它将显示来自同一服务器上的外部数据库的同一类别的文章。 我正在尝试使用内部表修改使用该技巧的本机joomla模块。 (内部表:_asso,外部表:_rsc)
我更改了代码(本机模块)
$com_path = JPATH_SITE.'/components/com_content/';
用
$com_path = '/homez.420/kmxsiksf/rsc/components/com_content/helpers/route.php';
但是我收到了这个错误:
致命错误: require_once()[function.require]:无法打开所需的'/homez.420/AAAAAA/rsc/components/com_cont ent / helpers / route.phprouter.php'(include_path第14行/homez.420/AAAAAA/asso/modules/mod_articles_category/helper.php中的='。:/ usr / local / lib / php')
我是错误的还是在.Htaccess或Joomla的某个地方有安全措施禁用模块来显示来自外部表的类别或模块?
谢谢!
Ps:本机模块代码如下所示:
defined('_JEXEC') or die;
$com_path = JPATH_SITE.'/components/com_content/';
require_once $com_path.'router.php';
require_once $com_path.'helpers/route.php';
JModelLegacy::addIncludePath($com_path . '/models', 'ContentModel');
非常感谢!
答案 0 :(得分:1)
要回答问题,没有Joomla安全措施可以阻止显示您提及的任何内容。我不能说你的.htaccess设置,但这是非常值得怀疑的。