bug
QZHdream
这个作者很懒,什么都没留下…
展开
-
Access denied for user 'root'@'localhost' (using password:YES) 解决方法
遇到这个问题就是你输入的用户名和密码没有访问的权限 一般是修改了mysql数据库下的user用户权限表 解决方案: 1、打开MySQL目录下的my.ini文件,在文件的最后添加一行“skip-grant-tables”,保存并关闭文件。 2、重启MySQL服务。 3、在命令行中输入“mysql -uroot -p”(不输入密码),回车即可进入数据库。 4转载 2017-08-11 16:03:41 · 1294 阅读 · 0 评论 -
Namespace declaration statement has to be the very first statement in the script
今天在自己开发项目的时候遇到这样一个问题 就是在访问我的一个产品的时候报错 Namespace declaration statement has to be the very first statement in the script 翻译后: 命名空间声明语句必须是脚本中第一个语句 原因是保存时没有严格按照utf-8来保存 自动加上原创 2017-08-28 11:48:50 · 977 阅读 · 0 评论 -
lnmp环境 laravel5.2 框架上线后报404
首先确定你上传的地址是否是与访问路径相符 然后给框架访问权限 现在应该可以访问入口 但是访问测试路由还是不能访问 这时候在nginx的配置文件nginx.conf中的server中加入 location /laravel/public { try_files $uri $uri/ /laravel/public/index.php?$quer原创 2017-09-01 14:11:52 · 425 阅读 · 0 评论