对于那些对cakeDC评论插件有经验的人,我可以得到一些指导。
我的视图页面上的输出是:
Element Not Found: Elements/Commentscomments/tree/main.ctp
我知道它无法找到正确的文件夹,因为在查找文件时缺少正斜杠。
添加到此页面的View代码为:
<div id="post-comments">
<?php $this->CommentWidget->options(array('allowAnonymousComment' => false));?>
<?php echo $this->CommentWidget->display();?>
</div>
我怎么能解决这个问题呢?我没有具体知道在修复路径问题方面要寻找什么或在哪里查看。
提前致谢。
答案 0 :(得分:0)
据我所知,这个由cakeDC创建的插件还没有完全移植到2.X.我已在
中设置了导致此问题的元素的特定路径public function display(){} controller found in the CommentWidgetHelper.php file.
您需要调整一些其他$this->element()
来电。它没有在注释插件中正确读取它们而不更改这些项目。
答案 1 :(得分:0)