ผมใช้ Yii Framework ในการพัฒนาครับ แต่ติดปัญหาตรงที่ว่า ตอนผมพัฒนาในเครื่องนั้่นรันได้ทุกอย่างสมบูรณ์ แต่พอไปติดตั้งใน server กลับมี error ว่า "CoinController and its behaviors do not have a method or closure named "goBack"." ผมก็เลยเข้าไปดู Code เขียนดังนี้ครับ
Code
// if AJAX request, we should not redirect the browser
if(!isset($_GET['ajax']))
{
if(!$this->goBack())
$this->redirect(array('index'));
else
$this->goBack();
}