Cake php 1.3.14突然停止保存数据,而它之前正在工作

时间:2017-09-05 07:06:58

标签: cakephp-1.3

您好我有一个用PHP 1.3.14开发的网站。所以它在服务器上运行良好。

但是我已经迁移了服务器并在那里设置了所有代码,现在数据不会保存在mysql中。

//Data

Array
 (
    [ListOfTeacher] => Array
    (
        [first_name] => Sunil
        [last_name] => Rawat
        [dob] => Array
            (
                [month] => 09
                [day] => 05
                [year] => 2007
            )

        [empid] => e001
        [list_of_house_id] => 1
        [list_of_class_id] => 1
        [username] => sunilrawat
        [password] => indivar@123
        [qualification] => mca
        [is_admin] => 0
        [uniqueid] => retret
    )

)

if ($this->ListOfTeacher->save($this->data)) {
            $this->Session->setFlash(__('The list of teachers has been saved', true));
            $this->redirect(array('action' => 'index'));
        } 
        else {
                $this->Session->setFlash(__('Record could not be saved. Please follow the instructions.', true));
        }

现在它会以其他方式解决所有事情。

任何人都可以帮助解决可能存在的问题。

提前致谢

1 个答案:

答案 0 :(得分:0)

我建议启用MySQL日志记录来帮助调试问题。首先运行set global general_log = "ON";,然后运行show variables,找到general_log_file设置。复制该路径,在控制台中对其执行tail -f,然后再次尝试保存。它应该让你知道MySQL方面是否有任何问题。祝你好运。