gpt4 book ai didi

php - codeigniter 中发生数据库错误。

转载 作者:可可西里 更新时间:2023-11-01 00:06:49 25 4
gpt4 key购买 nike

这是什么错误?我该如何解决?
我使用 codeigniter。

A Database Error Occurred
Error Number: 1048

Column 'captcha_time' cannot be null

INSERT INTO `captcha` (`captcha_time`, `ip_address`, `word`) VALUES (NULL, '31.57.141.7', NULL)

Filename: /home/324/public_html/123/models/login_model.php

Line Number: 79

第 79 行:

function create_captcha()
{
$vals = array(
'img_path' => './captcha/',
'img_url' => 'captcha/',
);
$cap = create_captcha($vals);
$data = array(
'captcha_time' => $cap['time'],
'ip_address' => $this->input->ip_address(),
'word' => $cap['word']
);
$query = $this->db->insert_string('captcha', $data);
$this->db->query($query); // this line 79
}

最佳答案

您收到此错误是因为文件夹“/captcha”不在您的服务器上或设置了错误的权限。

如果图像路径不存在,或者不可写,则 create_captcha() 函数返回 false,请查看验证码助手。

关于php - codeigniter 中发生数据库错误。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6888504/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com