編碼的世界 / 優質文選 / 文明

PHP TP5框架 安裝運行 Warning: require(E:phpstudy_proWWWTP5 p5public/../thinkphp/base.php): ...


2022年7月12日
-   

創建一個新的項目:進入項目的根目錄執行 git 命令:
先執行
git clone -b 5.1 https://git.coding.net/liu21st/thinkphp5.git tp5

進入 tp5目錄
cd tp5

再執行
git clone -b 5.1 https://git.coding.net/liu21st/framework.git thinkphp

執行更新框架命令
git pull

最後在瀏覽器運行看能不能正常運行
http://localhost/TP5/tp5/public/

根據官方文檔安裝過程遇到一個坑,
Warning: require(E:phpstudy_proWWWTP5 p5public/../thinkphp/base.php): failed to open stream: No such file or directory in E:phpstudy_proWWWTP5 p5publicindex.php on line 16Fatal error: require(): Failed opening required 'E:phpstudy_proWWWTP5 p5public/../thinkphp/base.php' (include_path='.;C:phppear') in E:phpstudy_proWWWTP5 p5publicindex.php on line 16 
是因為thinkphp文件夾沒創建在tp5目錄下面導致的。 
完成

熱門文章