Re: app transfer and billing

2013-01-09 Thread Martin Moss
Just email support, and they'll sort it for you Basically both the owner and the account to be transferred to should email support confirming the transfer, and they'll organise it for you. The billing will transfer to the new owner - or at least this was what happened to us. Marty On 17 Decembe

Re: Ask a web dyno if it is currently up, from the outside?

2013-01-09 Thread Martin Moss
I do this in python in this code https://github.com/martyzz1/heroku_proc_scalar_app/blob/master/worker.py def get_current_dynos(heroku_app, procname): try: web_proc = heroku_app.processes[procname] except KeyError: return 0 else: cpt = 0 for proc in web

Re: Hiding data files

2012-03-09 Thread Martin Moss
Have you tried creating a htaccess file? I use htaccess files on cedar and they seem to work ad you would expect Regards Marty On Mar 2, 2012 5:03 AM, "Eric Laberge" wrote: > Hi! > > I think this should be basic stuff, but I failed to find an answer through > the documentation or the maili

Re: Heroku Scheduler API ?

2012-03-09 Thread Martin Moss
How would I use this to run a PHP script? On Mar 5, 2012 3:02 AM, "Mark Pundsack" wrote: > Sorry for the delayed response. We updated the docs to mention running > Procfile entries via `heroku run`: > http://devcenter.heroku.com/articles/oneoff-admin-ps > > Anything that works via `heroku run` wo