500 error after adding templates, using "*" tip in allowed hosts
So everything from the tutorial is working fine but the last last step. I set my local to debug false and my "hello world" and admin are still working locally (I used one of the forums tips adding ALLOWED_HOSTS = ['*'] to base.py). I pushed everything to heroku master but I am still getting a 500 error. Here is the heroku log:
2013-04-03T19:35:32+00:00 app[web.1]: [03/Apr/2013 14:35:32] "GET / HTTP/1.1" 500 27 2013-04-03T19:35:32+00:00 heroku[router]: at=info method=GET path=/ host=quiet-hollows-5000.herokuapp.com fwd="186.106.232.134" dyno=web.1 connect=37ms service=28ms status=500 bytes=27
Answers
What version of Django? I'd recommend only using 1.4.5 for the first set of lessons (the Microblog).
Also, try adding your Heroku domain (looks like quiet-hollows-5000.herokuapp.com) to the ALLOWED_HOSTS setting in settings/base.py.
I'm getting similar but can not login to admin page locally. It would seem the 500.html catch all page is blocking others no? I posted a question on this earlier today.