這是安裝了所有內容後出現的錯誤:Laravel 4引導程序錯誤
這些是我安裝的步驟。
- 下載XAMPP
- 從根用戶
打開命令終端:
git clone -b develop git://github.com/laravel/laravel.git L4_site
- 更改目錄cd L4_site
創建在根目錄中的文件composer.json或通過終端安裝:
curl -S getcomposer.org/installer|php -d detect_unicode=off
*請參閱chris-schmitz.com/g ETTING-開始與 - laravel -4-
在終端類型L4_site目錄:PHP composer.phar安裝
This is the error I got after installing composer: Strikers-MacBook-Pro:L4_site striker$ php composer.phar install Loading composer repositories with package information Installing dependencies (including require-dev) Your requirements could not be resolved to an installable set of packages.
然後點服務器,類型:
php -S localhost:8888 -t public/
在我做了所有這些之後,我將目錄複製到了我的託管服務器(hostgator),並得到以下錯誤:
>Warning: require(/home/flemzy/public_html/l/bootstrap/../vendor/autoload.php) [function.require]: failed to open stream: No such file or directory in /home/flemzy/public_html/l/bootstrap/autoload.php on line 17
>Fatal error: require() [function.require]: Failed opening required '/home/flemzy/public_html/l/bootstrap/../vendor/autoload.php' (include_path='.:/opt/php53/lib/php') in /home/flemzy/public_html/l/bootstrap/autoload.php on line 17
我很接近得到一個工作laravel 4開始的應用程序。錯誤出現在依賴關係未正確安裝的地方。我想我需要一個正確的composer.json文件來獲取這些錯誤。
謝謝大家的幫助。
HostGator的提供SSH。你有沒有嘗試直接在服務器上安裝? http://stackoverflow.com/questions/18281624/deploying-laravel-4-on-shared-hosting-server-hostgator。 – Dave
我將我的目錄上傳到我的hostgator服務器。我有共享服務器託管。 –