codeigniator project localhost to live server 在很多地方都出错了
codeigniator project localhost to live server got errors in many sectors
我使用 codeignitor 框架制作了新闻门户网站,它工作正常,当我将它上传到服务器时,我在某些部分遇到了数据库错误之类的错误,有些工作正常。我也使用过身份验证库。 我是否必须对我使用的库授予一些权限?
除了更改配置文件和数据库文件之外的任何重大更改。
这是因为 MYSQL 5.7
如果你的字段 id
不会选择默认值然后在 insert
查询中你没有传递任何值那么它将通过这个错误所以设置 id
默认值为 null 那么它将正常工作。
In details ->Goto phpmyadmin
in then select database
and then login_attempts
table and then set id
column default value null
或 some custom
值
我使用 codeignitor 框架制作了新闻门户网站,它工作正常,当我将它上传到服务器时,我在某些部分遇到了数据库错误之类的错误,有些工作正常。我也使用过身份验证库。 我是否必须对我使用的库授予一些权限?
除了更改配置文件和数据库文件之外的任何重大更改。
这是因为 MYSQL 5.7
如果你的字段 id
不会选择默认值然后在 insert
查询中你没有传递任何值那么它将通过这个错误所以设置 id
默认值为 null 那么它将正常工作。
In details ->Goto phpmyadmin
in then select database
and then login_attempts
table and then set id
column default value null
或 some custom
值