1

チュートリアル@ http://decielo.com/articles/350/wordpress-on-heroku-up-and-runningを使用して、ワードプレスをherokuアプリにデプロイしようとしてい ます

すべてがうまく機能し、ダンディになるまで...

18:25:53-~/code/abc_wordpress$ git push production master
Counting objects: 1080, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (1058/1058), done.
Writing objects: 100% (1080/1080), 4.48 MiB | 174 KiB/s, done.
Total 1080 (delta 66), reused 0 (delta 0)

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

To git@heroku.com:abc_wordpress.git
 ! [remote rejected] master -> master (pre-receive hook declined)
error: failed to push some refs to 'git@heroku.com:abc_wordpress.git'

また、参考までに

18:25:50-~/code/abc_wordpress$ git remote -v
production  git@heroku.com:abc_wordpress.git (fetch)
production  git@heroku.com:abc_wordpress.git (push)

そしてこれも…

18:21:48-~/code/abc_wordpress$ heroku config
=== abc_wordpress Config Vars
CLEARDB_DATABASE_URL: mysql://...
DATABASE_URL:         mysql://...

どうしたの?

4

1 に答える 1

8

wordpress/アプリケーションを git リポジトリのルートから移動したり、ルートに移動したりするステップを見逃したと思います。別の言い方をすれば、 ではなくgit ls-filesを表示する必要があります。index.phpwordpress/index.php

PHP ビルドパックでは、index.phpリポジトリを PHP アプリケーションとして検出するために、ルートにが必要です。

于 2012-12-04T03:49:06.367 に答える