CakePHP Uygulama Yönlendirme Döngü

0 Cevap php

Benim web uygulaması burada barındırılan ben CakePHP v1.2 kullanıyorum: http://lol-land.in

Uygulama Dün kadar iyi çalışıyordu, ancak aniden bazı yönlendirme döngüleri takılıp başladı. Mesajlar: Ne tuhaf kılan sorunu sadece bir kontrolör ile olduğu gerçektir. Ve hatta bu işlevlerin çoğu çalışıyoruz. Ama http://lol-land.in/posts kendisine yönlendirme sırayla hangi lol-land.in/posts/view/133 yeniden yönlendiriliyor.

Aslında form / ileti / bakış / içinde 117 mesaj 110 bu 302 yönlendirme sıkışmış.

Herkes ne bu neden olabilirdi bana söyleyebilir misiniz?

[CakePHP 1.3 ve PHP5]

Edit: Ekleme Görünüm Logic

function view($id = null) {
$this->log("View Logic Entry", LOG_DEBUG);
// These Log entires are missing 

$this->layout = 'postview';
if (!$id) {
    $this->Session->setFlash(__('Invalid Post.', true));
    $this->log("Redirect due to missing id", LOG_DEBUG);
    $this->redirect(array('action'=>'index'));
}
$log = $this->Session->read('Auth.User');
$logid = $log['id'];

$temp = $this->Post->read(null, $id);

$ratings = $temp['Rating'];

$this->set(compact('up', 'down', 'userrated', 'userrateid'));

$coms = $temp['Comment'];
$comuser = array();
for ($i=0; $i<count($coms); $i++) {
    $comuser[$i] = $coms[$i]['user_id'];
}
$comuser = $this->Post->User->find('list', array( 'fields'=>array('User.id', 'User.username'),
                      'conditions'=>array("User.id" => $comuser)
                      ));
$this->set(compact('comuser'));

$this->pageTitle = $temp['Post']['title'];
$this->set('post', $temp);
$alltypes = $this->Post->Type->find('list', array('fields'=> array('Type.id', 'Type.typename')));
$selectedtab = -1;
$this->set(compact('alltypes', 'selectedtab' ));


//Calling updateFBStats
// Removed because unnecessary.

}

0 Cevap