摘要:
一、问题: 最近做一个项目,其中有一个小功能,页面传递一个文件名,后台查找该文件供前台下载 很简单的一个功能,都不知道写了多少遍,写好测试,无论文件是否存在,总是报错,满屏白,【the site of not reached】 二、分析: (1)是文件找不到? 由于项目是在linux上部署,是否会是 阅读全文
摘要:
一、问题: 在进行mysql操作导入库的时候,报出了【The MySQL server is running with the --event-scheduler=DISABLED】 查看后台日志是事件没有开启 二、解决: 找到mysql的库配置文件【my.ini】 (1)skip-grant-ta 阅读全文
摘要:
一、事件操作: (1)查看事件启动状态 show variables like 'event_scheduler'; select @@event_scheduler; (2)启动事件 set global event_scheduler=on; set global event_scheduler 阅读全文