目标:
在windows10或windows server上配置IIS、PHP8、PHP7、phpmanager、composer、Laravel环境。
参考:https://docs.microsoft.com/zh-cn/previous-versions/windows/it-pro/windows-server-2012-R2-and-2012/hh994589(v=ws.11)
一、部署IIS、PHP环境
1、通过控制面板->程序和功能->启用或关闭windows功能,安装IIS。
2、安装phpmanager
phpmanager是iis管理php的工具,可轻松实现i...
lnmp部署laravel项目报错:open_basedir
错误信息:
[10-Aug-2020 10:25:41 PRC] PHP Warning: require(): open_basedir restriction in effect. File(/home/wwwroot/ting/vendor/autoload.php) is not within the allowed path(s): (/home/wwwroot/ting/public/:/tmp/:/proc/:/home/wwwroot/huanyue/:/home/wwwroot/office/huanyue-office/:/home/wwwroot/office/ting/) in /home/wwwroot/ting/public/index.php on line 24
[10-Aug-2020 10:25:4...
phpmanager安装opcache
安装composer提示需要opcache,已经在phpmanager开启了opcache却依然提示错误:
PHP Warning: PHP Startup: Invalid library (appears to be a Zend Extension, try loading using zend_extension=php_opcache.dll from php.ini) in Unknown on line 0
查看php.ini发现phpmanager开启opcache有问题:
phpmanager是在php.ini中添加了:
[PHP_OPCACHE]
extension=php_opcache.dll
这是错误的,正确的...
laravel分词搜索
情况介绍:
接收一句话,把这句话分词,分词拿去匹配关键词库,从关键词库找到对应的文章。
先列举一下找到的相关文章:
1、使用 Laravel Scout,Elasticsearch,ik 分词
https://learnku.com/articles/4027/tutorial-write-a-search-use-laravel-scout-elasticsearch-ik-word-segmentation
https://blog.csdn.net/huangfenhu/article/details/94004316
2、