0

对于那些对 cakeDC 评论插件有经验的人,我能得到一些指导吗?

我的视图页面上的输出是这样的:

Element Not Found: Elements/Commentscomments/tree/main.ctp

我知道它找不到正确的文件夹,因为在查找文件时缺少正斜杠。

添加到此页面的查看代码是:

<div id="post-comments">
    <?php $this->CommentWidget->options(array('allowAnonymousComment' => false));?>
    <?php echo $this->CommentWidget->display();?>
</div>

我该如何解决这个问题?在修复路径问题方面,我不知道要寻找什么或在哪里寻找。

提前致谢。

4

2 回答 2

0

据我所知,cakeDC 创建的这个插件还没有完全移植到 2.X 上。我已经在

public function display(){} controller found in the CommentWidgetHelper.php file.

$this->element()您还需要调整其他一些调用。如果不更改这些项目,它不会从评论插件中正确读取它们。

于 2012-08-28T17:14:02.103 回答
0

我发现这个提交为我解决了这个问题:https ://github.com/CakeDC/comments/commit/75cf8085fa96d1491cb31d2eed10b2ce18331e99

于 2013-08-05T11:00:10.977 回答