Laravel Vue Nginx伺服器設定的常見問題總結
問題1:
Parse error: syntax error, unexpected '?' in D:Demolaravel56vendorlaravelframeworksrcIlluminateFoundationhelpers.php on line 233
解決方案:PHP的版本過低和安裝的laravel56不符。
執行下列指令將相關PHP版本升級到7.2:
rpm -Uvh https://mirror.webtatic.com/y... #更新源 rpm -Uvh https://mirror.webtatic.com/y... yum remove php-common -y #移除系统自带的php-common yum install -y php72w php72w-opcache php72w-xml php72w-mcrypt php72w-gd php72w-devel php72w-mysql php72w-intl php72w-mbstring #安装依赖包 php -v 查看php版本
#問題2:
file_put_contents(/www/wwwroot/BFERP/storage/framework/cache/data/b1/74/b174398831c15a6e1ed7c7e7873a44ebc1bdb6b2): failed to open stream: No such file or directory file_put_contents () 错误,failed to open stream: No such file or directory;
解決方法:php artisan cache:clear
以上是Laravel與Vue Nginx配置的常見問題如何解決的詳細內容。更多資訊請關注PHP中文網其他相關文章!