Re: Rails App Unexplainably Not Compatible With Ruby Buildpack

2017-11-14 Thread richard schneeman
You need to have a `Gemfile` https://github.com/heroku/heroku-buildpack-ruby/blob/master/bin/detect This is in the "activation" section of the ruby support doc https://devcenter.heroku.com/articles/ruby-support#general-support-activation On Fri, Nov 10, 2017 at 12:44 AM, John Wolfe

Re: Heroku + remote database

2017-03-05 Thread richard schneeman
You can get a fixed IP if you need one with an add on  https://elements.heroku.com/addons/fixie. --- Richard Schneeman http://www.schneems.com _ From: Jason Fleetwood-Boldt <t...@datatravels.com> Sent: Sunday, March 5, 2017 7:27 PM Subject: Re: Heroku + remote da

Re: Why are Gems bundled at RubyGems smaller than ones built from Github?

2015-02-08 Thread richard schneeman
Rubygems compresses your code into a tar archive. GitHub pulls all the code in source control similar to if you did a manual clone and it doesn't compress. What you're seeing is expected. — Sent from Mailbox On Sun, Feb 8, 2015 at 2:35 PM, Jason Fleetwood-Boldt

Re: Request Entity Too Large

2014-11-12 Thread richard schneeman
This would be a better question for heroku support or the heroku discussion forums: https://discussion.heroku.com/ On Tue, Nov 11, 2014 at 1:20 PM, Grigor Yeghiazaryan yeghiazar...@gmail.com wrote: Greetings Heroku community! I'm trying to submit a form with a file to a Node+Express server.

Re: SpelEvaluationException for DATABASE_URL

2014-07-02 Thread richard schneeman
What about database_url wasn't correct? What did you do to fix it?— Richard Schneeman On Wed, Jul 2, 2014 at 6:52 AM, zog oujevaisles...@gmail.com wrote: I got it : the value of DATABASE_URL was not right so getUserInfo was null Le mercredi 2 juillet 2014 10:11:18 UTC+2, zog a écrit : Hello

Re: Stratergies to stop CDN always hitting Heroku

2014-04-29 Thread richard schneeman
I would recommend checking out a rack based solution such as https://github.com/kickstarter/rack-attack On Tue, Apr 29, 2014 at 9:19 PM, railsnerd rails.n...@gmail.com wrote: Hi If I have a blog url structure, something like www.blog.com/12343/Hello-World I'm happy to cache that page

Re: Is the server running on host 127.0.0.1

2014-03-05 Thread richard schneeman
You should use the backtrace to find the code connecting to the database. If you manually add a database addon and promote it then deploy that is one way to work around the connection issue. We only provision a database for your app _after_ the first deploy. — Richard Schneeman On Wed

Re: Heroku does NOT compile files under assets pipelines in Rails 4

2014-01-08 Thread richard schneeman
It appears you skipped my previous suggestion. If you add in https://github.com/schneems/sprockets_better_errors you'll never make this mistake again, it checks for this problem in development so you don't deploy broken code to production. Parts of it have already been merged into Rails master.

Re: Heroku does NOT compile files under assets pipelines in Rails 4

2014-01-08 Thread richard schneeman
into rails master asap! On Wednesday, January 8, 2014 12:15:46 PM UTC-8, richard schneeman wrote: It appears you skipped my previous suggestion. If you add in https://github.com/schneems/sprockets_better_errors you'll never make this mistake again, it checks for this problem in development so

Re: Heroku does NOT compile files under assets pipelines in Rails 4

2014-01-07 Thread richard schneeman
Install this https://github.com/schneems/sprockets_better_errors and run your dev environment. It will show you how you need to configure your app.— Sent from Mailbox for iPhone On Tue, Jan 7, 2014 at 8:02 PM, roror stelli...@gmail.com wrote: I've been reading stackoverflow for more than 4

Re: Assets precompile issue on heroku

2013-11-17 Thread richard schneeman
Narrow down the line causing the failure by deleting a line, and pushing. Repeat until you find the line that when you remove it does not cause the failure. It's slow and painful, but it's the only good way to troubleshoot this problem. On Sun, Nov 17, 2013 at 8:49 PM, Kevin Patel

Re: Letting the pager solve R14 Errors

2013-11-11 Thread richard schneeman
In general threads consume more CPU while processes consume more RAM.  Reducing the number of threads may not have any considerable impact on your overall memory usage. You could try a memory profiling tool to identify memory leaks in your application or maybe there is a way to restart your

Re: Is Websockets support coming?

2013-10-08 Thread richard schneeman
I'm just going to leave this...right...here: https://blog.heroku.com/archives/2013/10/8/websockets-public-beta -- -- You received this message because you are subscribed to the Google Groups Heroku group. To unsubscribe from this group, send email to heroku+unsubscr...@googlegroups.com For

Re: dynamic content with cloudfront and rails?

2013-09-23 Thread richard schneeman
this with a Heroku US and EU region. -- Richard Schneeman On Mon, Sep 23, 2013 at 9:29 AM, Mike Atlas mikeat...@gmail.com wrote: Hi guys We're currently using SumoCDN (which leverages Amazon Cloudfront) to serve up our static assets successfully. However, I'm now curious about serving up our dynamic GET

Re: How can I use Unicorn with PHP?

2013-04-01 Thread Richard Schneeman
That is a Ruby specific answer. I would recommend posting this Facebook question to a new stack overflow query, and tagging it with PHP. -- Richard Schneeman http://heroku.com @schneems (http://twitter.com/schneems) On Monday, April 1, 2013 at 4:13 PM, Shahruk Khan wrote: I am trying

Re: Gem for serving Rail's assets on Cedar

2013-03-01 Thread Richard Schneeman
I saw this on HN this morning. I haven't seen the diff between this and Rails master, but is there any reason we wouldn't want this in Rails 4 by default? -- Richard Schneeman http://heroku.com @schneems (http://twitter.com/schneems) On Wednesday, February 27, 2013 at 4:46 PM, jonathan

Re: Speed up your App with CDN Sumo (beta add-on)

2013-02-07 Thread Richard Schneeman
CDN server to the visitor. If you're doing this though, make sure that if the file changes that it's filename changes. There is more info in the docs about this, or you can email he...@cdnsumo.com for direct questions. -- Richard Schneeman http://heroku.com @schneems (http://twitter.com

Speed up your App with CDN Sumo (beta add-on)

2013-02-06 Thread richard schneeman
CDN Sumo (https://addons.heroku.com/cdn_sumo) provides edge cache CDNs to speed up your app. We're in beta and looking for more feedback on the provisioning and integration experience. If you're running Rails 3 (https://devcenter.heroku.com/articles/cdn_sumo), or Rails2

Re: 12 factor application testing

2013-02-06 Thread Richard Schneeman
dotenv gem supports .env.test, .env.development, and .env.production https://github.com/bkeepers/dotenv -- Richard Schneeman http://heroku.com @schneems (http://twitter.com/schneems) On Wednesday, February 6, 2013 at 1:23 PM, Pedro Belo wrote: This is a great question! I think

Re: remove my first app message from post to wall box

2012-11-26 Thread Richard Schneeman
employees who do so only do it on their free time. -- Richard Schneeman http://heroku.com @schneems (http://twitter.com/schneems) On Monday, May 7, 2012 at 4:54 PM, John Callaghan wrote: I'm having the same problem, the copy should come from the og:description in the index.php but I think

Re: Connecting to D.B from localhost application

2012-10-21 Thread Richard Schneeman
Yep $ heroku config | grep DATABASE_URL Though if you're using a non production database (one of the free ones) this url may change (though it's not likely). If you get connection errors just run the command above and see if it's changed. -- Richard Schneeman http://heroku.com @schneems

Re: Upgrade Postgres plan cant access old database

2012-10-21 Thread Richard Schneeman
Did you get this to work? Not sure by that last post. Have you tried opening a ticket on heroku.com ? -- Richard Schneeman http://heroku.com @schneems (http://twitter.com/schneems) On Sunday, October 21, 2012 at 12:38 PM, Oded Elharar wrote: https://devcenter.heroku.com/articles

Re: About Heroku Hosting Service

2012-10-08 Thread Richard Schneeman
to them but they are cleared when the machine restarts. If you need to store something like images use S3. If you need to store session data use a database, memcache, and/or signed cookies. -- Richard Schneeman http://heroku.com @schneems Sent from the road On Sunday, October 7, 2012 at 11:53

Re: Background Jobs For Mission Critical Info

2012-09-27 Thread Richard Schneeman
The maintainer of Resque (Terence Lee (http://twitter.com/hone02)) works for Heroku. Failed Resque jobs can be retried via the built in web interface. I've never had a bad experience with Delayed Job, but if you are using it heavily it can impact your database performance. -- Richard

Re: Multiple differently-sized memcache caches

2012-08-18 Thread Richard Schneeman
let us know. Depending on your situation you might consider putting at TTL (expires in) on your large data, so that it will expire by itself rather than relying on memcache to reclaim memory, this might decrease the amount of items you care about falling out of cache. -- Richard Schneeman

Re: Can I open another PORT other than the provided $PORT ?

2012-08-18 Thread Richard Schneeman
/unicorn.rb -- Richard Schneeman http://heroku.com @schneems (http://twitter.com/schneems) On Saturday, August 18, 2012 at 9:02 PM, Daniel Qian wrote: Hi all, I'm trying to use jbossjta on app. Everything is fine on my local machine, but things go wrong after I deployed to Heroku

Re: PGError: ERROR: permission denied for relation

2012-08-13 Thread Richard Schneeman
Please open up a support ticket: http://support.heroku.com -- Richard Schneeman http://heroku.com @schneems (http://twitter.com/schneems) On Monday, August 13, 2012 at 5:35 AM, Duncan Gough wrote: Hello, I've recently gone through the database migration process as outlined here

Re: PGError: ERROR: permission denied for relation

2012-08-13 Thread Richard Schneeman
/heroku-sql-console and then running: $ heroku sql To verify you have access to the tables listed in your database. -- Richard Schneeman http://heroku.com @schneems (http://twitter.com/schneems) On Monday, August 13, 2012 at 9:28 AM, Duncan Gough wrote: Hi Richard, Thanks

Re: hyper_table and wkhtmltopdf issue

2012-08-08 Thread Richard Schneeman
You can set the DATABASE_URL in your config variables on Heroku to point at your hyper table database hosted anywhere else in the world. -- Richard Schneeman http://heroku.com @schneems Sent from the road On Wednesday, August 8, 2012 at 6:16 AM, Ravindra Kanchikare wrote: I have built

Re: hyper_table and wkhtmltopdf issue

2012-08-08 Thread Richard Schneeman
How does this work? You only connect and use hyper table when your RAILS_ENV is set to hypertable ? -- Richard Schneeman http://heroku.com @schneems (http://twitter.com/schneems) On Wednesday, August 8, 2012 at 1:59 PM, Ravindra Kanchikare wrote: Hi Richard, Thanks for the reply

Re: App Crashed on unidle

2012-07-14 Thread Richard Schneeman
Kevin, If you $ heroku run bash Do you see the file in the right directory? -- Richard Schneeman http://heroku.com @schneems Sent from the road On Saturday, July 14, 2012 at 5:39 PM, Kevin Mooney wrote: Here's a bit more context on that log: 2012-07-13T01:08:43+00:00 heroku

Re: all heroku local commands fail with no such account work

2012-06-26 Thread Richard Schneeman
Can you please give us the error? -- Richard Schneeman http://heroku.com @schneems Sent from the road On Monday, June 25, 2012 at 9:27 PM, SimonS wrote: I've completely sewed up my Heroku setup had a ticket open for over 24 hours hours and am running out of options. Please help. I

Re: reverse proxying with an Apache dyno

2012-06-25 Thread Richard Schneeman
, it will take load off of your server so it can handle more requests. -- Richard Schneeman http://heroku.com @schneems (http://twitter.com/schneems) On Monday, June 25, 2012 at 7:00 PM, Brandon Rhodes wrote: Hosting providers like WebFaction make it easy to assemble full web sites out of smaller

Re: Reverse Proxying

2012-06-20 Thread Richard Schneeman
For Reverse proxy in Rails app, I haven't used one but this looks promising: https://github.com/jaswope/rack-reverse-proxy You could do it _in_ the rails app, but it will be much more performant if you do it through a rack middleware. -- Richard Schneeman http://heroku.com @schneems

Re: pgbackups:restore permission issues

2012-06-04 Thread Richard Schneeman
Can you create an issue for this? http://support.herouk.com -- Richard Schneeman http://heroku.com @schneems Sent from the road On Monday, June 4, 2012 at 5:30 PM, Kallin Nagelberg wrote: Hey everyone, I have two apps on Heroku, both with Ronin databases. One is production and works

Re: Installing the Heroku Commands

2012-05-21 Thread Richard Schneeman
Can you post this question to Stack Overflow and then give us a link to the post? In the stack overflow question please provide us with any error messages your getting and we can try to help, and tag it with heroku -- Richard Schneeman http://heroku.com @schneems (http://twitter.com/schneems

Re: Heroku push failed due to unrecognized error / jekyll

2012-05-11 Thread Richard Schneeman
Whats the error output of the push? -- Richard Schneeman http://heroku.com @schneems (http://twitter.com/schneems) On Friday, May 11, 2012 at 2:47 PM, Jay Vyas wrote: Hi guys : I changed the buildpack for my heroku site from ruby to a custom jekyll one as per this tutorial : https

Re: Multiple Ruby Version Support on Heroku

2012-05-10 Thread Richard Schneeman
You will need to move to cedar to use this feature -- Richard Schneeman http://heroku.com @schneems (http://twitter.com/schneems) On Thursday, May 10, 2012 at 6:50 AM, Daniel Doubrovkine wrote: I tried to get it to work on bamboo and I can't get Heroku to use bundler 1.2.0-pre

Re: Renaming the Hosting URL for a Facebook App

2012-04-23 Thread Richard Schneeman
After I remove it, I can add it back. Let me know if that doesn't work. -- Richard Schneeman http://heroku.com @schneems (http://twitter.com/schneems) On Saturday, April 21, 2012 at 6:31 AM, nK0de wrote: given is to remove it. No option to edit/change. Is that setting in -- You

Re: Issues with Asset Sync

2012-04-20 Thread Richard Schneeman
have questions about these settings, or run into issues. -- Richard Schneeman http://heroku.com @schneems (http://twitter.com/schneems) On Friday, April 20, 2012 at 9:33 AM, brianthecoder wrote: So I followed the guide here https://devcenter.heroku.com/articles/cdn-asset-host-rails31

Re: Renaming the Hosting URL for a Facebook App

2012-04-20 Thread Richard Schneeman
You need to change your hosting url http://stark-river-7862.herokuapp.com no longer exists -- Richard Schneeman http://heroku.com @schneems (http://twitter.com/schneems) On Friday, April 20, 2012 at 12:44 PM, nK0de wrote: I just started developing a Facebook App. I'm having trouble

Re: set process.env.PORT

2012-04-16 Thread Richard Schneeman
There are some limitations with socket communication check out this article https://devcenter.heroku.com/articles/realtime-polyglot-app-node-ruby-mongodb-socketio#pushing_messages_to_the_browser_with_socketio -- Richard Schneeman On Monday, April 16, 2012 at 5:17 AM, Yusuf X wrote: I

Re: H12 Request Timeout

2012-04-02 Thread Richard Schneeman
more work for sinatra https://devcenter.heroku.com/articles/error-codes#h12__request_timeout You can also consider increasing your dyno count. What web server are you using? -- Richard Schneeman http://heroku.com @schneems On Monday, April 2, 2012 at 12:27 PM, kowsik wrote: We are seeing

Re: H12 Request Timeout

2012-04-02 Thread Richard Schneeman
I'm not sure then. If it is just happening sporadically can you contact support.heroku.com please? -- Richard Schneeman http://heroku.com @schneems Sent from the road On Monday, April 2, 2012 at 1:54 PM, kowsik wrote: Neil, Just the odd timeouts. Thanks, K. --- http://blitz.io

Re: Upload from Rails app to S3 bucket upload failing with No such file or directory

2012-03-30 Thread richard schneeman
For file uploads to S3 I would recommend using paperclip https://github.com/thoughtbot/paperclip, that is what I typically use in my projects. I've never tried directly manipulating an S3 bucket as a file, and I believe you need to go through their API. I have also used Fog

Re: Problems installing toolbelt on Ubuntu

2012-03-27 Thread richard schneeman
Can you create a support ticket for this http://support.heroku.com ? -- 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. To unsubscribe from this group, send email to

Re: How to save user responses on the server

2012-03-24 Thread richard schneeman
You will need to store the results to a data store such as PostgreSQL or use a third party questionnaire provider. Heroku does provide a shared PostgreSQL database with each Heroku App where you could store the data. That woul require you to set the schema and then insert and select the data you

Re: publishing a static website on to Heroku

2012-03-13 Thread richard schneeman
Hey Tony, Glad you're trying out node! If you want to create a separate application that hosts your static html, it is possible to do this using an article by Heroku's own Kenneth http://kennethreitz.com/static-sites-on-heroku-cedar.html . If you already have a Node.js site and the static