Cake php 1.3.14 之前正在运行时突然停止保存数据
Cake php 1.3.14 suddenly stop save data while it was working before
您好,我有一个用 cake 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));
}
现在它进入 else 条件一切。
任何人都可以帮助解决问题。
提前致谢
我建议打开 MySQL 日志记录以帮助调试问题。先运行set global general_log = "ON";
,再运行show variables
,找到general_log_file设置。复制该路径,在控制台中对其执行 tail -f
,然后再次尝试保存。它应该让您知道 MySQL 方面是否有任何问题。祝你好运。
您好,我有一个用 cake 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));
}
现在它进入 else 条件一切。
任何人都可以帮助解决问题。
提前致谢
我建议打开 MySQL 日志记录以帮助调试问题。先运行set global general_log = "ON";
,再运行show variables
,找到general_log_file设置。复制该路径,在控制台中对其执行 tail -f
,然后再次尝试保存。它应该让您知道 MySQL 方面是否有任何问题。祝你好运。