11 2020 档案

摘要:参考:https://www.cnblogs.com/rcltocode/p/6835468.html 如果更改了路由状态,要清理路由缓存 比如从get路由 切换到 post路由时, 以前的get路由被缓存了,导致访问失败出现403的错误! 解决方案: 每次在修改路由文件的时候,在项目中打开命令行, 阅读全文
posted @ 2020-11-18 18:31 一木人生 阅读(796) 评论(0) 推荐(0)
摘要:原因1:nginx伪静态的问题 参考: https://learnku.com/docs/laravel/8.x/deployment/9359 配置nginx 的vhost add_header X-Frame-Options "SAMEORIGIN"; add_header X-XSS-Prot 阅读全文
posted @ 2020-11-18 16:50 一木人生 阅读(1047) 评论(0) 推荐(0)
摘要:问题原因是 Windows不支持pcntl库 ,参考 https://stackoverflow.com/questions/30045085/how-to-install-pcntl-extension-in-windows 解决方案: https://stackoverflow.com/ques 阅读全文
posted @ 2020-11-18 16:48 一木人生 阅读(2617) 评论(0) 推荐(0)
摘要:ERROR Failed to compile with 4 errors These relative modules were not found: * ../../../public/ueditor/lang/zh-cn/zh-cn.js in ./node_modules/babel-loa 阅读全文
posted @ 2020-11-18 16:45 一木人生 阅读(760) 评论(0) 推荐(0)
摘要:参考: https://www.cnblogs.com/dekevin/p/13472543.html 1、搜索powershell,右键以管理员身份运行 2、若要在本地计算机上运行您编写的未签名脚本和来自其他用户的签名脚本,请使用以下命令将计算机上的 执行策略更改为 RemoteSigned执行: 阅读全文
posted @ 2020-11-18 16:43 一木人生 阅读(228) 评论(0) 推荐(0)
摘要:参考文档:https://www.cnblogs.com/sgm4231/p/11010325.html 这是因为我们在 resources/views/layouts/app.blade.php 中使用 mix() 方法,而我们还未运行 Laravel Mix 进行编译,找不到 mix-manif 阅读全文
posted @ 2020-11-18 16:38 一木人生 阅读(168) 评论(0) 推荐(0)
摘要:【命令讲解】 以下2条命令都可以关闭病毒进程 wmic process where name="kxajlwux.exe" call terminate wmic process where name="kxajlwux.exe" delete 产看隐藏文件dir /A * 删除隐藏文件 del / 阅读全文
posted @ 2020-11-18 16:27 一木人生 阅读(354) 评论(0) 推荐(0)