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 캐시:clear
위 내용은 Laravel 및 Vue Nginx 구성의 일반적인 문제를 해결하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!