0

我已经构建了自己的组件。我对这些东西非常了解,但突然间我想知道对我的自定义组件的 joomla 请求没有显示任何内容。它显示空白页。看到这个: http ://designsoft.bestplacestestserver.com/index.php?option=com_marketplacemanager

这是请求未到达的组件的“marketplacemanager.php”文件的初始代码。不知道为什么。

代码——marketplacemanager.php

定义('_JEXEC')或死亡;

jimport('joomla.application.component.helper');

回声'aa';出口; // 应该有一些显示在这里

4

3 回答 3

2

转到全局配置。在服务器选项卡上,将错误报告转为开发。重新加载页面。您现在很可能会看到该错误。

于 2013-03-20T12:03:18.560 回答
0

Try this, replace the first line of your code with:

defined('_JEXEC') or die('why is blank?');

If still does not show anything it means displaying errors on your server is locked, so checking the error log would be the only option.

于 2013-03-19T17:02:35.890 回答
0

这个问题已经解决。实际上 MVC 命名模式或其他东西是错误的。我没有正确重命名我正在重用的现有组件。

于 2013-03-26T06:15:35.387 回答