2012-09-30 111 views
1

我無法將我的PHP項目推送到Heroku。每次我試圖把我得到這個錯誤:無法將PHP應用程序推送到heroku

----> Heroku receiving push 
! Heroku push rejected, no Cedar-supported app detected. 

To [email protected]:intense-hamlet-7552.git 
! [remote rejected] master -> master (pre-receive hook declined) 
error: failed to push some refs to '[email protected]:intense-hamlet-7552.git' 

這是使用Heroku的我的第一次,所以這是我做了什麼(試圖按照this):

  1. 我已經創建了一個我的Eclipse工作區中的新文件夾。
  2. 在此文件夾中,我運行了git init
  3. 我在這個文件夾中創建了一個新的PHP項目(在Eclipse中)。我運行了heroku create
  4. 我用TortoiseGit提交我的文件(我也嘗試過使用命令行,沒有區別)。
  5. 我推存儲庫git push heroku master
  6. 然後我得到上述錯誤。

我已經嘗試了幾次新的文件夾,新的存儲庫,但它每次都會發生。

我在做什麼錯?

編輯:對於人提示覆制後:

我見過它描述了一個問題,一個Ruby應用程序,其中Gemfile是誤拼寫後Heroku push rejected, no Cedar-supported app detected。我的應用程序是一個PHP應用程序,沒有Gemfile

+1

編輯帖子並描述爲什麼它不是重複:) –

回答

3

我想,Heroku沒有將我的應用程序作爲PHP應用程序進行重新身份驗證。我創建了一個帶有hello世界腳本的index.php,並且繁榮!一切正常。

相關問題