cloudhead / toto

the 10 second blog-engine for hackers
MIT License
1.49k stars 244 forks source link

Malformed RSS XML file on Heroku #118

Closed iammichiel closed 6 years ago

iammichiel commented 12 years ago

When deploying a toto app on Heroku, errors might appear on the rss.xml file.

I appears the problem is the Heroku stack used to deploy the app. It should run on the bamboo 1.8.7 stack and not the bamboo 1.9.2 that is the default one.

For existing apps you can migrate easily doing the following :

heroku stack:migrate bamboo-ree-1.8.7

For new apps, you can use the following :

heroku create --stack bamboo-ree-1.8.7 
be commented 12 years ago

Thanks, saved the day. Index.xml was totally broken and could not be validated. Problem solved after migrating to bamboo 1.8.7.