1、sql文件过大会报异常: (42000): Variable 'sql_mode' can't be set to the value of 'NULL' ................ mysql配置修改:my.cnf: [mysqld] max_allowed_packet = 5000M ...
分类:
数据库 时间:
2020-06-02 11:04:04
阅读次数:
80
1. No suitable driver found for mysql:jdbc://localhost:3306/test
2. Not allowed to connect to this MySQL server
3. The server time zone value '?... ...
分类:
数据库 时间:
2020-05-30 22:04:20
阅读次数:
107
使用Ajax跨域请求资源,Nginx作为代理,出现:The 'Access-Control-Allow-Origin' header contains multiple values '*, *', but only one is allowed 错误。 服务端允许跨域配置: #region 设置允 ...
分类:
数据库 时间:
2020-05-28 19:33:40
阅读次数:
290
Django配置信息 配置信息主要由项目的settings.py实现,主要配置有项目路径、密钥配置、域名访问权限、App列表、配置静态资源、配置模板文件、数据库配置、中间件和缓存配置 当DEBUG为True且ALLOWED_HOSTS为空时,项目只允许以localhost或127.0.0.1在浏览器 ...
分类:
其他好文 时间:
2020-05-27 20:23:03
阅读次数:
64
错误代码: 1 NavigationDuplicated {_name: "NavigationDuplicated", name: "NavigationDuplicated", message: "Navigating to current location ("/index") is not ...
分类:
其他好文 时间:
2020-05-27 15:14:34
阅读次数:
200
一、405状态码含义 405 Method Not Allowed 解释:发起的请求中带有所请求的URL不支持的方法时,使用此状态码。应该在响应中包含Allow首部,以告知客户端所请求的资源可以使用哪些方法。 二、排查问题的思路 可以看出当前请求的URL不支持此请求方法。排查问题的思路是,先通过抓包 ...
分类:
其他好文 时间:
2020-05-24 23:42:06
阅读次数:
98
1.Mysql提示报错Too large的错误。 解决: show variables like '%max_allowed_packet%';【默认为1M】 set global max_allowed_packet = 2*1024*1024*10 2.Mysql8.0的版本,因为比较新的mys ...
分类:
数据库 时间:
2020-05-20 14:35:33
阅读次数:
66
Reports local variable of wrapper type though all usages allowed to be primitive and count of unnecessary boxing/unboxing operations reduces 报告包装器类型的局 ...
分类:
移动开发 时间:
2020-05-14 13:12:38
阅读次数:
65
修改 ueditor --> php --> Upload.class.php --> __construct()方法 $this->stateMap['ERROR_TYPE_NOT_ALLOWED'] = mb_convert_encoding($this->stateMap['ERROR_TYP ...
分类:
Web程序 时间:
2020-05-12 18:49:27
阅读次数:
104
AllowOverride DirectiveDescription: Types of directives that are allowed in .htaccess files When the server finds an .htaccess file (as specified by A ...
分类:
Web程序 时间:
2020-05-12 12:01:16
阅读次数:
74