Re: node version bump

2012-02-20 Thread David Dollar
Labs itself is fairly new and hasn't yet been widely publicized. As far as release timeline, we're in the process of an incremental rollout. The nodejs-versions feature is on by default for all new apps and you can flag any existing apps by hand. We'll be rolling out the feature to existing apps s

Re: node version bump

2012-02-20 Thread David Albrecht
That's fantastic. Is there any schedule to get this on a production/release track? I've been using Heroku over 1.5 years and had never even heard of "Labs" prior to today. DA On Mon, Feb 20, 2012 at 6:08 PM, David Dollar wrote: > Hi David, > > Last week we added the ability to select your Node.

Re: node version bump

2012-02-20 Thread David Dollar
Hi David, Last week we added the ability to select your Node.js version to Heroku Labs, our breeding ground for experimental new features. Check it out at: http://devcenter.heroku.com/articles/labs-nodejs-versions On Mon, Feb 20, 2012 at 8:56 PM, David Albrecht wrote: > Is there any plan to upg

node version bump

2012-02-20 Thread David Albrecht
Is there any plan to upgrade the version of node offered on Cedar past 0.4.7? Node's commit log shows this version became stable on April 22nd 2011, which is fast approaching a year ago. Thanks, DA -- You received this message because you are subscribed to the Google Groups "Heroku" group. To p

Re: Allow top-level domains to point to a vanity subdomain?

2012-02-20 Thread Keenan Brock
Hi Martin, There are 2 things. 1. The browser needs to resolve the domain name to heroku's servers. You tell DNS to point a.app.com (http://a.app.com) or example.com (http://example.com) to the right app server [app.heroku.com (http://app.heroku.com)]. The CNAME record does this. You can tell D

Re: Keeping your Heroku app awake

2012-02-20 Thread Neil Middleton
To be brutally honest, there is no hard and fast rule, but I have found the following: - Rails is really fast at slowing down, so ensure that your dependencies and initialisers are at an absolute minimum. - Keep things small and lightweight, break your application up into lots of smaller appli

Re: Keeping your Heroku app awake

2012-02-20 Thread Ed Jones
Neil said: > I host loads of apps on 1 web dyno and just make sure that the spin up time > is short enough that it's not a problem. Neil and others, thanks. I just launched a new (beta) app, and the response time is just horrible. Could you pass a few tips on how to "make sure that the spin up

Re: Keeping your Heroku app awake

2012-02-20 Thread Kevin Goslar
I think having a single permanent (i.e. always instantly responding) dyno for $10-20/month would make sense for a lot of people. It definitely provides for a much better user experience than the current free plan, especially for low traffic scenarios. It could work like this: free plan as befo

Re: Allow top-level domains to point to a vanity subdomain?

2012-02-20 Thread Scott Watermasysk
We do something similar on KickoffLabs. We require our customers to add CNAME that points back at our domain. In your app, you need to use the Heroku API to add the domain to your application. Something like this: heroku = Heroku::Client.new(username, password) heroku.add_domain('your app

PHP mcrypt

2012-02-20 Thread G13
Hi, I just installed ajaxplorer and it gives me a error saying mcrypt is not enabled. How can I install/enable php mcrypt module. Thank you. -- You received this message because you are subscribed to the Google Groups "Heroku" group. To post to this group, send email to heroku@googlegroups.com

Re: Play crud module on Heroku

2012-02-20 Thread James Ward
It looks like you declared the module dependency in the application.conf. You need to remove that and declare it in the dependencies.yml file instead. Some of the play docs seem to be out if date. Let me know if that helps. -James On Feb 20, 2012 11:32 AM, "florian adler" wrote: > I need your

Re: Keeping your Heroku app awake

2012-02-20 Thread Neil Middleton
I'm confused here. The 'starter' package is only ~$35/mo which isn't exactly monumentally expensive. Are you suggesting something between that and free? What you're suggesting sounds like your charged by the CPU cycle rather than the hours? To be brutally honest, I host loads of apps on 1 web

Play crud module on Heroku

2012-02-20 Thread florian adler
I need your help regarding Play on Heroku: I tried to deployed the minuteproject 4 play (1.2.4) sample (http:// minuteproject.wikispaces.com/Play). The play petshop demo app work locally on hsqldb. I git the project and follow the instruction from James article http://www.jamesward.com/2011/12/11/

Allow top-level domains to point to a vanity subdomain?

2012-02-20 Thread Martin Streicher
I have a Rails 3.2 app on Heroku. It accepts wildcards and subdomains, so each user can have a vanity subdomain, such as a.app.com, b.app.com, etc. What I want to do is let a user point example.com to a.app.com. What would I have to change in the example.com DNS config to make this work? And wha

PHP application deployment

2012-02-20 Thread G13
Hello, I am new to this group as well as Heroku. I am looking for a place to build my application. As far as I found Heroku is the best place for my app. I am planing to develop the app using PHP. But I could not find any official PHP application deployment document here http://devcenter.heroku.co

Same-dyno communication via TCP sockets (for worker task)

2012-02-20 Thread Mark Makdad
All, We're new to Heroku, so forgive me if we're trying to do something Completely Wrong or thinking about the problem The Wrong Way. We have a piece of code that we'd like to run on a worker dyno on Heroku. Let's just say... it's an open-source piece of code I didn't write, so if I can avoid op

FreeType Support

2012-02-20 Thread Raul Garcia
I want to use securimage captcha, but i get this error: Fatal error: Call to undefined function imagettfbbox() in /app/www/ securimage.php on line 867 I guess it's because the FreeType Support what can we do about it? -- You received this message because you are subscribed to the Google Groups