2014-02-24 83 views
0

這是安裝了所有內容後出現的錯誤:Laravel 4引導程序錯誤

這些是我安裝的步驟。

  1. 下載XAMPP
  2. 從根用戶

    打開命令終端:

    git clone -b develop git://github.com/laravel/laravel.git L4_site 
    
  3. 更改目錄cd L4_site
  4. 創建在根目錄中的文件composer.json或通過終端安裝:

    curl -S getcomposer.org/installer|php -d detect_unicode=off 
    

    *請參閱chris-schmitz.com/g ETTING-開始與 - laravel -4-

  5. 在終端類型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. 
    
  6. 然後點服務器,類型:

    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文件來獲取這些錯誤。

謝謝大家的幫助。

+0

HostGator的提供SSH。你有沒有嘗試直接在服務器上安裝? http://stackoverflow.com/questions/18281624/deploying-laravel-4-on-shared-hosting-server-hostgator。 – Dave

+0

我將我的目錄上傳到我的hostgator服務器。我有共享服務器託管。 –

回答

0

有步驟4的錯誤),你應該做的:

curl -S getcomposer.org/installer | php 

然後

php composer.phar install 

有關詳細說明,請參見https://getcomposer.org/doc/00-intro.md#locally安裝作曲

+0

我首先捲曲了作曲家,然後安裝了php composer.phar。第5步是php composer.phar安裝 –

+0

好吧,我看到你編輯了這個問題,看起來你有一個無效的composer.json – marcanuy

+0

我在哪裏可以得到一個有效的composer.json文件 –