Cake PHP站点在localhost上工作正常但在服务器上时出错

时间:2012-05-27 09:14:35

标签: php cakephp

所以情况就是如此。 我正常烘焙蛋糕php应用程序。该站点在本地服务器上运行正常。 但是当迁移到bluehost服务器时,它开始在hasmany中出现问题并且属于关联。 我发现的问题基本上是在包含数据的数组中。 例如 $ comments通常有数据

  

数组([评论] =>数组([id] => 46 [名称] => asddasd [电子邮件] => sdaa [网站] => asdasd [commentdata] => asdasd [postdate ] => 2012-04-27 08:20:00 [post_id] => 2)[发布] =>数组([id] => 2 [标题] =>战斗机[类别] =&gt ;军事[描述] => asddasdasdasdasdasd [body] =>你好这是第二次[创建] => 2012-04-10 18:41:43 [修改] => 2012-04-27 13:25: 33 [user_id] => 0))

但在网络服务器上看起来像是

  

数组([评论] =>数组([id] => 8 [姓名] => ddasdasdsdasd [电子邮件] => asdasd [网站] => asdasd [commentdata] => adasdasdasdad [postdate ] => 2012-04-23 23:15:00 [post_id] => 8))

因此最终显示以下错误

未定义索引:发布[APP / View / Comments / index.ctp,第24行] 第24行是

    <?php echo $this->Html->link($comment['Post']['title'], array('controller' => 'posts', 'action' => 'view', $comment['Post']['id'])); 

请告诉我这个问题?

1 个答案:

答案 0 :(得分:0)

查看本教程:http://ad7six.com/2007/08/24/Production-setup-revisited.html。我在这个网站上看到这个问题发布了很多,即:在这里:Cakephp Install on Bluehost和这里:Setting up cakephp 2.0 on bluehost