Watir on heroku

2010-12-20 Thread Josal
Hi, guys. I want to scrap an HTML site which is using javascript to generate the contents. So, I can't use mechanize gem or similar ones. I've tried rdom and taka with johnson, but still some problems (I could give you more details). The best and easiest option I have at the moment is to use

Re: memcached servers

2010-12-20 Thread chris
FYI, dalli will detect that ENV variable automatically -- you shouldn't need to specify the server(s) at all. Here's our dalli configuration (rails3 app, yours may vary): config.cache_store = :dalli_store, { :namespace = 'll', :expires_in = 30.minutes, :compress = true,

Re: Wildcard subdomains with GoDaddy

2010-12-20 Thread Barry Welch
I am also having trouble with GoDaddy + Heroku with wildcard subdomains In my setup, since GoDaddy apparently doesn't allow wildcard CNAMES, I currently have 3 A-records that look like this: A-Record * 75.101.163.44 A-Record * 75.101.163.44 A-Record * 75.101.163.44 .. with no CNAMES.

cron to request a page

2010-12-20 Thread Martin Petrov
Hi, I'm using http caching and I want to run a daily cron to request a page in order to update the cache. I learnt how to make a cron at: http://docs.heroku.com/cron Could you tell me how to request a page? -- You received this message because you are subscribed to the Google Groups Heroku

Re: What is this output from heroku create

2010-12-20 Thread JK
I've got the the same problem. Were you able to fix the problem? On Dec 10, 2:59 pm, SWEngineer abder.rahman@gmail.com wrote: Hi, I'm trying to create a Heroku place using heroku create, and get the following: (What is the problem?) C:\Users\Software Engineerheroku create Creating

Re: What is this output from heroku create

2010-12-20 Thread JK
I have the same problem. Were you able to fix it? On Dec 10, 2:59 pm, SWEngineer abder.rahman@gmail.com wrote: Hi, I'm trying to create a Heroku place using heroku create, and get the following: (What is the problem?) C:\Users\Software Engineerheroku create Creating cold-flower-61...

OpenSSL::Random::RandomError: PRNG not seeded

2010-12-20 Thread floehopper
Does anyone have any idea why I might be seeing the exception in the subject of this post? The stack trace is as follows :- /usr/ruby1.8.7/lib/ruby/1.8/securerandom.rb:53:in `random_bytes' /usr/ruby1.8.7/lib/ruby/1.8/securerandom.rb:53:in `random_bytes'

Heroku and custom domain with Dreamhost

2010-12-20 Thread Braxo
Hello, I register my domains at Dreamhost. I have an application on Heroku and I am trying to use a custom domain. I have added the domain, both root and www to the application and also added the three A type records and the www CNAME record at Dreamhost. My NS type records still point to

Re: Wildcard subdomains with GoDaddy

2010-12-20 Thread Oren Teich
Add three more records for . or yourdomain.com. you need 6 if you're using wildcard - three for the wildcard, three for the root domain. Oren On Mon, Dec 20, 2010 at 11:15 AM, Barry Welch btwel...@gmail.com wrote: I am also having trouble with GoDaddy + Heroku with wildcard subdomains In my

Re: Heroku and custom domain with Dreamhost

2010-12-20 Thread Oren Teich
Wait 24 hours, and check again. DNS by its nature takes a while to get all around the internet. On Sun, Dec 19, 2010 at 7:29 PM, Braxo thoms...@gmail.com wrote: Hello, I register my domains at Dreamhost. I have an application on Heroku and I am trying to use a custom domain. I have added

Re: Wildcard subdomains with GoDaddy

2010-12-20 Thread Barry Welch
Thanks Oren. If this is true for all registrars, I would definitely point this out in your custom domains documentation. On Dec 20, 1:34 pm, Oren Teich o...@heroku.com wrote: Add three more records for . or yourdomain.com.  you need 6 if you're using wildcard - three for the wildcard, three

Re: Wildcard subdomains with GoDaddy

2010-12-20 Thread Keenan Brock
Hello Barry, I like having a single url for my address. So I setup a redirect that bounced www.mydomain.com to http://mydomain.com/ I remember godaddy was a little tricky on this one. Think they were able to redirect www.mydomain.com to mydomain.com but able to redirect mydomain.com to

Re: Heroku and custom domain with Dreamhost

2010-12-20 Thread Jesse Thomson
Thanks Oren, This was exactly the case, though it took a few hours longer than 24 hours which is why I started questioning what I did. Most other times I had to wait for DNS propagation, it only needed 6 hours or so. On Mon, Dec 20, 2010 at 14:35, Oren Teich o...@heroku.com wrote: Wait 24

Re: Rails3 + AmazonRDS addon: missing the mysql2 gem error

2010-12-20 Thread Chris Conley
I came across this error as well. For the time being, I've reverted to the 'mysql' gem. -Chris On Dec 15, 6:08 pm, vovayartsev vovayart...@gmail.com wrote: Hi all. There seem to be a bug in Amazon RDS addon (or I'm doing something wrong?). Here are the steps to reproduce: 1. Create an

Re: No joy with Rails 3: no such file to load -- dispatcher (LoadError)

2010-12-20 Thread Jonathan
I had to add config.ru to the repository. Rails 3 has some new components which must be included in your git push. One way to figure out what's missing is to compare your app with a new, empty Rails 3 app. git ls-files lists the files in your git repository. A commit with nothing changed

Re: memcached servers

2010-12-20 Thread Carson Gross
Thanks guys. I *think* we've got things installed correctly now. Is there an easy way to see the stats for our memcache? I tried what the docs say, and got this: mc = Memcached.new NameError: uninitialized constant Memcached /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.3.5/lib/