寶塔裡Laravel或thinkphp框架報Warning: require(): open_basedir() restrictijon in effect. FIle() 錯誤
open_basedir是PHP限制訪問資料夾的配置引數,寶塔裡自動配置了.user.ini,但是目錄限制到了public,我們需要將其改到專案根目錄
開啟 專案根目錄/public/.user.ini檔案open_basedir=/www/wwwroot/zmxyphp/public/:/tmp/:/proc/
把public刪除
open_basedir=/www/wwwroot/zmxyphp/:/tmp/:/proc/
重啟PHP,OK!
本作品採用《CC 協議》,轉載必須註明作者和本文連結