Re: App not deploying, no errors

2008-03-03 Thread Adam Wiggins
On 3/2/08, ebdb [EMAIL PROTECTED] wrote: I guess I misunderstood. I thought that the upload form was a way to update an existing app. Is it more like a way to start from scratch? Correct, it completely wipes the app and replaces it with what you upload. If you want to work locally, try out

Re: SQLite vs. MySQL

2008-03-03 Thread Adam Wiggins
On 3/3/08, ebdb [EMAIL PROTECTED] wrote: If I change it to point to my local MySQL server, will that mess everything up when I try to run the app on Heroku? Or can I put whatever I want in my local database.yml? You can put whatever you want. Heroku uses Postgres; the API writes a custom

Re: Type columns

2008-03-06 Thread Adam Wiggins
On 3/1/08, mr_dizzy [EMAIL PROTECTED] wrote: I'm using STI and therefore have type columns in the database. I've dumped the data as YAML, but when trying to load the db with this data, tables containing a type column do not get imported. I've also noticed it is impossible to edit the type

Re: Authenticated AJAX Requests from Adobe AIR

2008-04-05 Thread Adam Wiggins
Great stuff Justin, thanks! Adam --~--~-~--~~~---~--~~ 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 [EMAIL

Re: ec2 routing outage right now

2008-04-07 Thread Adam Wiggins
It's fixed. Kudos to the Amazon engineers who got a fix turned around in under two hours: http://developer.amazonwebservices.com/connect/thread.jspa?threadID=20932start=0tstart=0 I can now go un-jigger everything. :) Adam --~--~-~--~~~---~--~~ You received

ec2 routing outage right now

2008-04-07 Thread Adam Wiggins
Folks, Just a heads-up that EC2 appears to be experiencing a load balancer issue of some sort right now. I'm able to get into our instances since a couple of them are still accessible from outside ec2, and then I can connect on the internal ip, so I jiggered a few things that I hope should keep

out of the woods

2008-04-14 Thread Adam Wiggins
Hey folks, I know the stability issues over the past couple weeks have been pretty rough. No one has felt that pain more than me, let me tell you. Explosive user growth + a codebase that's only six months old = lots late nights and long weekends for me and my partners. The good news is that

Re: using GitHub

2008-04-14 Thread Adam Wiggins
On Mon, Apr 14, 2008 at 12:33 AM, origin_developer [EMAIL PROTECTED] wrote: Can I get suggestions on how to move my app from GitHub to Heroku and back? You can do this if you're using git locally. The magic of decentralized revision control makes it possible, since every checkout is a full

Re: PGError: ERROR: invalid byte sequence for encoding UTF8

2008-04-14 Thread Adam Wiggins
I don't think yaml_db properly handles UTF8 yet. We haven't looked into this too deeply yet - might be a yaml issue, might be a database issue, might be a ruby/rails issue. But yaml_db is open source so fixing this is a chance for someone out there to achieve some brief community glory...

Re: The best way to do session expiration in HEROKU

2008-04-14 Thread Adam Wiggins
I strongly recommend switching to cookie store, which is the default on Rails 2 (and thus Heroku). This completely eliminates the need to do any housekeeping at all. For those that don't know, you can manage this by commenting out or deleting any line that looks like this: #

Re: Heroku API

2008-04-14 Thread Adam Wiggins
On Sun, Mar 30, 2008 at 12:58 PM, Mark S. [EMAIL PROTECTED] wrote: mbp-mark:~ mark$ heroku clone myapp Initialized empty Git repository in /Users/mark/myapp/.git/ fatal: '/userapps/11544': unable to chdir or not a git archive I think I may have fixed this. At the very least, I figured out

Re: Heroku clone not working

2008-04-14 Thread Adam Wiggins
On Sat, Apr 12, 2008 at 4:25 PM, Joc [EMAIL PROTECTED] wrote: but when I try: heroku clone appname The command returns with no response an nothing appears to have happened. No errors either. What happens if you type: git clone [EMAIL PROTECTED]:myapp.git ? Replace myapp with your

Re: Heroku clone myapp -- Activate!

2008-04-14 Thread Adam Wiggins
On Sat, Apr 12, 2008 at 7:24 PM, Kevin Triplett [EMAIL PROTECTED] wrote: kevin$ heroku clone mopacmedia Initialized empty Git repository remote: Generating pack... remote: Done counting 1324 objects. remote: Deltifying 1324 objects... remote: 100% (1324/1324) done Indexing 1324

Re: Cloning - internal server error

2008-04-15 Thread Adam Wiggins
On Tue, Apr 15, 2008 at 4:25 PM, Botolph [EMAIL PROTECTED] wrote: When trying to clone an app i get this error message: Just added some extra logging for this. Can you try again? Adam --~--~-~--~~~---~--~~ You received this message because you are subscribed

Re: Heroku clone not working

2008-04-15 Thread Adam Wiggins
On Tue, Apr 15, 2008 at 7:40 PM, Joe Lewis [EMAIL PROTECTED] wrote: It downloaded my directory structure for the app I'm working on, which is awesome. But it pulled down what appears to be yesterday's version of my app. What shows up on the Revisions page of the web editor? i.e., do you

Re: out of the woods

2008-04-16 Thread Adam Wiggins
On Mon, Apr 14, 2008 at 11:23 AM, justindz [EMAIL PROTECTED] wrote: It would be nice to see a list of features that you're intending to add, assuming stability remains in place. Not as a guaranteed, set-in- stone thing, but just some of the requests that you're planning to hit in the

Re: App Limit Suggestion

2008-04-17 Thread Adam Wiggins
On Thu, Apr 17, 2008 at 10:28 AM, Harro [EMAIL PROTECTED] wrote: Ive just reached the daily bandwidth limit for one of my apps, but im now unable to export the app so I can continue developing locally. Even if you reach your bandwidht limit, you should still be able to export the app.

Re: Gruff Support, Scruffy Support

2008-04-18 Thread Adam Wiggins
On Apr 7, 9:07 am, pietj [EMAIL PROTECTED] wrote: unable to read font `/usr/share/fonts/type1/gsfonts/n019003l.pfb' Looks like it's looking for system-wide fonts installed, and of course there are no fonts installed on a headless server. I suggest uploading the font file(s) it needs into

Re: Code Editor

2008-04-21 Thread Adam Wiggins
I've actually wanted to extract the javascript text editor as its own open source project for a while now, just haven't found the time. One of these days... :) Adam --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

Re: Unable to delete a directory

2008-04-29 Thread Adam Wiggins
On Sun, Apr 27, 2008 at 1:13 AM, Kevin Triplett [EMAIL PROTECTED] wrote: I accidently uploaded a plugin that has a git repository in the its directory. Doh. :S Sometimes this is actually what you want - you can import an app, including its entire git history. If not, though: Thanks for

Re: Importing an app with a db

2008-04-29 Thread Adam Wiggins
You should never need to, nor should you, modify the database.yml file on Heroku. As you said, it's scrambled randomly on a periodic basis, so anything you write there will be overwritten in any case. Adam --~--~-~--~~~---~--~~ You received this message because

Re: Error when viewing imported app

2008-04-29 Thread Adam Wiggins
On Sun, Apr 20, 2008 at 1:03 PM, Jake Dempsey [EMAIL PROTECTED] wrote: I just imported my opensource project eXPlainPMT but when I try to view the app i get the following in my mongrel crash log: dependencies.rb:478:in `const_missing': uninitialized constant

Re: primary_key_prefix_type

2008-04-29 Thread Adam Wiggins
On Thu, Apr 24, 2008 at 9:27 AM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: config.active_record.primary_key_prefix_type = :table_name_with_underscore Does this active record option break the Data Tab functionality of Heroku? Yes, the data tab relies on Rails conventions to explore your

Re: Edit DB text field with 'newline'

2008-04-29 Thread Adam Wiggins
On Wed, Apr 23, 2008 at 4:25 AM, McKracken [EMAIL PROTECTED] wrote: Hi to all! I found a problem using the DB interface fo Heroku. The particular case is about editing text like field with 'newline' character. The workaround for this right now would be to use the console to update the

Re: Code Editor

2008-04-29 Thread Adam Wiggins
On Tue, Apr 22, 2008 at 5:44 AM, DAZ [EMAIL PROTECTED] wrote: I've noticed that the editor has some short-cut keys like ctrl-s for saving and tab indents. Are there any more? Most of the key shortcuts are normal editing techniques, like ctrl-right arrow to highlight to the end of the word,

Re: New Plugin Request Rails Cells

2008-05-09 Thread Adam Wiggins
On Fri, May 9, 2008 at 2:36 AM, justin [EMAIL PROTECTED] wrote: Could we get the following plugin installed ? http://cells.rubyforge.org/ We get our plugin data from here: http://agilewebdevelopment.com/plugins Looks like the cells plugin is not in the directory. If you add it, it will

Re: Problem Importing

2008-05-09 Thread Adam Wiggins
Dornz, email the archive you are trying to import privately and I will look into it. Adam --~--~-~--~~~---~--~~ 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: 'Remove Plugin' link missing

2008-05-09 Thread Adam Wiggins
On Fri, May 9, 2008 at 9:37 AM, Kevin Triplett [EMAIL PROTECTED] wrote: Justin, I've been just deleting the folder from the editor. Don't know if that's the approved method but I've seen no problems with it. That's the approved method. :) Adam

Re: Freeze Edge Rails?

2008-05-09 Thread Adam Wiggins
On Fri, May 9, 2008 at 10:02 AM, sant0sk1 [EMAIL PROTECTED] wrote: I'm looking to freeze Rails edge into vendor/rails. To run your app on Heroku, you have to use our version of Rails, since we have some custom patches applied to it to make it work with our infrastructure. So the answer to your

autosnapshots, platform maturity

2008-05-09 Thread Adam Wiggins
Folks, Over the past six weeks or so we've been putting nearly all our development efforts into increasing the stability and especially data integrity of Heroku. We've done this by investigating every issue that you guys have reported (thanks!) really thoroughly, building a lot more redundancy

robots.txt

2008-05-09 Thread Adam Wiggins
Blessed apps now default to being crawlable by Googlebot and friends. That is, it serves up whatever you have in your public/robots.txt. Nonblessed apps will still serve a robots.txt that prevents all crawling - this is to prevent linkspammers from abusing Heroku. Please don't hesitate to

Re: Internal server error on 2 apps

2008-05-15 Thread Adam Wiggins
Hmm, I don't see some of the symptoms you mentioned, maybe they are cleared up now? But the main problem, which is that the app was throwing an exception, was due to invalid data in your heroku.yml file. I deleted it, so now your app loads. We'll try to make the heroku.yml loader more robust

Re: Git Error: fatal: The remote end hung up unexpectedly

2008-05-17 Thread Adam Wiggins
This should be fixed now. Adam --~--~-~--~~~---~--~~ 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 [EMAIL

Re: Problem Importing

2008-05-17 Thread Adam Wiggins
Is this the app named trails? If so, I saw a problem with it earlier today and fixed it. As for importing, it's definitely still less robust than I'd like it to be. There's lots of different things that can be wrong with the imported archive (persmissions, directory structure, or simply too

Re: internal server error

2008-05-17 Thread Adam Wiggins
On Sat, May 17, 2008 at 11:16 AM, holczer [EMAIL PROTECTED] wrote: dash.heroku.com mike.heroku.com amdb.heroku.com This should all be working now. Adam --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Heroku

Re: Migrations don't work after updating the app via git

2008-05-17 Thread Adam Wiggins
There was a bug with rake output not showing - it did run, just not display in the output window. That's fixed now. As for reporting bugs, yeah, on the mailing list or to the feedback email is what we're doing for now. Adam --~--~-~--~~~---~--~~ You received

Re: 400 Bad Request

2008-05-18 Thread Adam Wiggins
On Sun, May 18, 2008 at 7:14 AM, shammond42 [EMAIL PROTECTED] wrote: My app (cavcomcon) has been running well for a while and last night it started getting 400 Bad Request errors. The logs seem to be empy. Any idea what is going on? The front page seems to be working, was it a sub-url that is

openssh key vulnerability

2008-05-19 Thread Adam Wiggins
You guys may know about the Debian ssh key vulnerability announced last week: http://www.ubuntu.com/usn/usn-612-2 If you haven't, here's the quick summary: keys generated on Debian and Debian-derived distros, including Ubuntu, may be weak. We've thereby had to revoke any weak keys that have

Re: App names cannot start with numbers - incorrect validation?

2008-05-21 Thread Adam Wiggins
I agree that app names should be able to start with numbers, so I've made the change. It'll be available in the next deploy, probably today or tomorrow. Adam --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Heroku

Re: Internal Server Error

2008-05-22 Thread Adam Wiggins
Yup, there was a little glitch with custom domains yesterday, we got it sorted out with the help of everyone's quick feedback. Adam --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Heroku group. To post to this

Re: yaml_db load_records patch

2008-05-27 Thread Adam Wiggins
On Tue, May 27, 2008 at 8:22 AM, Michael Irwin [EMAIL PROTECTED] wrote: I've uploaded a patch to this group for yaml_db that fixes an issue with loading data and unquoted column names. Sure, that works. I'd probably prefer posting the patch inline or as an attachment straight to the list

Re: Heroku Editor Problem

2008-05-28 Thread Adam Wiggins
On Fri, May 23, 2008 at 6:12 AM, wbwarren57 [EMAIL PROTECTED] wrote: I create a new site, work on it for a while, then when I come back to it, the Heroku Editor only loads a portion of the directory structure and my browser tells me that it is getting javascript errors. I think this is fixed

Re: Blog/CMS engines

2008-05-28 Thread Adam Wiggins
I've gotten Mephisto working on Heroku recently - I started with the latest version from Github, though, so that might have helped. You do need to install one gem dependency, tzinfo, but other than that I'd expect it to just work. Adam --~--~-~--~~~---~--~~ You

Re: Git Error: Resource temporarily unavailable fatal: The remote end hung up unexpectedly

2008-06-02 Thread Adam Wiggins
I may have fixed this - not certain. If it happens again please let me know the email address on your account and your app name. You can email it to me privately if you prefer not to post that info publicly. Adam --~--~-~--~~~---~--~~ You received this message

Re: Questions regarding REST implementation

2008-06-06 Thread Adam Wiggins
On Thu, Jun 5, 2008 at 7:43 PM, neilrios [EMAIL PROTECTED] wrote: I just want to ask why Heroku doesn't support REST particularly PUT and DELETE http request. You can certainly use all four verbs. For example: require 'rest-client' RestClient.put 'http://rest-test.heroku.com/', 'hello'

Re: custom domain name issue

2008-06-06 Thread Adam Wiggins
On Thu, Jun 5, 2008 at 12:59 PM, jko170 [EMAIL PROTECTED] wrote: My domain is hosted on godaddy so I created a CNAME of 'www' that points to heroku.com. I added the domain name of 'www.mydomain.com' to my settings page. Now, when I go to http://mydomain.com sometimes it redirects to

Re: Git Error: Resource temporarily unavailable fatal: The remote end hung up unexpectedly

2008-06-06 Thread Adam Wiggins
I think I may have solved the git push / ssh problem. (Turned out to be a pretty gnarly one.) Post here if you see it again. Adam --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Heroku group. To post to this

Re: mootools on heroku

2008-06-08 Thread Adam Wiggins
On Sun, Jun 8, 2008 at 2:48 AM, schaf88 [EMAIL PROTECTED] wrote: toolbar. It would be great if one didnt have to stick with prototype but could use mootools, dojo or jquery. We have a rewrite of the toolbar in the works which will eliminate its dependency on any external javascript libraries,

Re: CAVComCon is Live

2008-06-08 Thread Adam Wiggins
Congrats! Nice drag-and-drop on the strikeforce setup. :) Adam --~--~-~--~~~---~--~~ 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

Re: migrations not working, looking for /tmp/mysql.sock

2008-06-09 Thread Adam Wiggins
On Mon, Jun 9, 2008 at 8:18 AM, bmctigue [EMAIL PROTECTED] wrote: I made the mistake of uploading a database.yml for mysql with the socket: /tmp/mysql.sock entry before I added database.yml to my .gitignore file. I have commited and pushed several times now, but the migration rake is still

Re: Scaleable File Storage with HerokuAssets

2008-06-12 Thread Adam Wiggins
On Thu, Jun 12, 2008 at 5:49 PM, Eaden McKee [EMAIL PROTECTED] wrote: Can I ask what is the point of using this over S3 directly? Sure. The answer is: easy of setup. You don't need to establish an Amazon account, install anything, or do any configuration. You just start using it. But if

Re: Scaleable File Storage with HerokuAssets

2008-06-13 Thread Adam Wiggins
On Fri, Jun 13, 2008 at 4:04 PM, DyingToLearn [EMAIL PROTECTED] wrote: This might be a naive suggestion, but what if there were a reserved folder, and everything that my apps saved to that folder got put into HerokuAssets? This is a cool idea Paul. My concern would be that it would be a bit

Re: App now starting...

2008-06-14 Thread Adam Wiggins
Seems likely the gem install confused things somehow, yeah. I restarted your server by editing config/environment.rb and then saving it, so it's back now. (A git push will also restart the server.) Adam --~--~-~--~~~---~--~~ You received this message because

Re: openid admin login + heroku toolbar = XML Parse Error

2008-06-14 Thread Adam Wiggins
Definitely a toolbar problem, disable it like this: http://groups.google.com/group/heroku/browse_thread/thread/49b05ad87082922b/a05a9ed36e901302 (We're going to be deploying a rewritten version of the toolbar soon that should put an end to these marker problems.) Adam

Re: Firewall?

2008-06-15 Thread Adam Wiggins
Paypal IPN definitely works - it's an incoming web request, so it's served the exact same way as viewing a regular web page or making a REST call. Try hitting the URL from your browser, curl, or RestClient to see what happens. And check your logs to look for the incoming request from Paypal.

Apps on Thin, toolbar on Rack

2008-06-19 Thread Adam Wiggins
Ricardo has rewritten the Heroku toolbar, porting it from a Rails monkeypatch + Mongrel gemplugin to Rack middleware. The benefits that you guys will see are: - All apps are now running on Thin, which gives a bit of a speed boost over Mongrel. - Toolbar is way faster to load: less static

Re: 500 error

2008-06-22 Thread Adam Wiggins
On Sun, Jun 22, 2008 at 5:39 PM, Kevin Triplett [EMAIL PROTECTED] wrote: Men of Heroku, I pushed my app and broke it. Now getting a 500 error. I don't see the 500 error on triplettelectronic.heroku.com, but I looked in your log/development.log and saw this: /!\ FAILSAFE /!\ Sun Jun 22

Re: Can't login to application

2008-06-23 Thread Adam Wiggins
What's the name of the app? Adam --~--~-~--~~~---~--~~ 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 [EMAIL

Re: Database going AWOL

2008-06-23 Thread Adam Wiggins
Guys - We are looking into this right now as our absolute top priority. (Glad no lasting harm was done, but even so...) Adam --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Heroku group. To post to this group,

Re: 502 Bad Gateway

2008-06-26 Thread Adam Wiggins
Next time this happens, can you tell me 1. the app name and 2. an exact timestamp (i.e., within a 5 minute window) including your timezone? This will let me look in the logs and see what's happening. Adam --~--~-~--~~~---~--~~ You received this message because

Re: yaml_db patch

2008-06-27 Thread Adam Wiggins
Michael - Excellent, thanks. Coincidentally, I spotted this very issue yesterday when trying to export a database from sqlite to mysql on my home box, which doesn't have postgres installed. I patched it by duck-typing the adapter:

safari fix

2008-06-27 Thread Adam Wiggins
Lots of you reported that Safari was not playing nice with Create New App. Pedro fixed that today and it's deployed now. All of the Heroku web app should be usable in any modern browser, with the one exception of the javascript text editor. But if you're doing all your editing locally, using

create / import app goes straight to welcome aboard

2008-06-27 Thread Adam Wiggins
Create New App and importing an app from a tarball both now take you through to the front of the app, instead of the editor. The idea is that this will be a little friendlier, especially with the new welcome aboard page which describes three ways to work on your app: edit online, import from a

Re: odd behavior installing plugin

2008-07-01 Thread Adam Wiggins
On Mon, Jun 30, 2008 at 8:15 PM, snlsn [EMAIL PROTECTED] wrote: I got the following message each time: Plugin not found: git://github.com/technoweenie/attachment_fu.git Sounds like people are switching their repos over to git:// urls already, even though that's not supported in Rails 2.0.

Re: Cheat heroku

2008-07-01 Thread Adam Wiggins
Nice Aaron, thanks! Love the last line especially. :) Here's the full URL: http://cheat.errtheblog.com/s/heroku/ Adam --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Heroku group. To post to this group, send

Re: 502 Bad Gateway

2008-07-05 Thread Adam Wiggins
Fixed. Adam --~--~-~--~~~---~--~~ 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 [EMAIL PROTECTED] For more

Re: Downloaded Archive is empty

2008-07-05 Thread Adam Wiggins
Fixed. Adam --~--~-~--~~~---~--~~ 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 [EMAIL PROTECTED] For more

Re: YamlDB rake db:data:dump

2008-07-05 Thread Adam Wiggins
On Fri, Jul 4, 2008 at 3:00 PM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: rake db:data:dump undefined method `each' for #Mysql:0x51ea848 That's surprising - I use yaml_db on mysql databases all the time, and I just checked with a fresh one that it works with the latest version. Can you tell

Re: internal server error on both edit and view

2008-07-08 Thread Adam Wiggins
Fixed. Adam --~--~-~--~~~---~--~~ 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 [EMAIL PROTECTED] For more

Re: Purpose of Heroku in the long run

2008-07-09 Thread Adam Wiggins
On Wed, Jul 9, 2008 at 8:49 AM, jjhall [EMAIL PROTECTED] wrote: What I'm more curious about is once I develop my app, where do I go from there? Will Heroku be available as a permanent environment for some sort of fee? Heroku as it is today is already a permanent environment. You can (and

Re: No database.yml

2008-07-16 Thread Adam Wiggins
Heroku doesn't use database.yml as of a few weeks ago, so you should be able to put anything in that file that you want. Where do you see this error - in the rake console, on an exception page, etc? (And if you provide the name of your app, we can look at it more closely.) One thing you might

Re: Is Heroku down?

2008-07-17 Thread Adam Wiggins
On Thu, Jul 17, 2008 at 8:13 PM, DAZ [EMAIL PROTECTED] wrote: I get nothing when I go to heroku.com Try: http://downforeveryoneorjustme.com/heroku.com --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Heroku

Re: db:data:dump won't won't work with Oracle

2008-07-18 Thread Adam Wiggins
On Fri, Jul 18, 2008 at 5:16 PM, Owen [EMAIL PROTECTED] wrote: Tom Locke gave me this fix. Seems to be running now! Cool, you or Tom want to post a patch on github so I can pull it into my master? http://github.com/adamwiggins/yaml_db/tree/master Adam

Re: 502 Bad Gateway

2008-07-18 Thread Adam Wiggins
Ah ha! James, it's editing your app specifically that's killing the editor, and it does so totally consistently. Now that I've got a reproducible test case I'm a lot closer to finding a solution. So thanks for the report, and in the meantime hang back on hitting that edit link so that you

Re: 502 Bad Gateway

2008-07-19 Thread Adam Wiggins
Think I got to the bottom of this - quite insidious, it's a crash deep in the bowels of Ruby. I did a quick patch that should stop this from happening for now; a real solution is forthcoming when I'm not exhausted from jetlag and a full day of Rubyfringe. :) Adam

Re: Can't import app with Git or tarball

2008-07-22 Thread Adam Wiggins
On Sat, Jul 19, 2008 at 9:32 AM, Marnen Laibow-Koser [EMAIL PROTECTED] wrote: All seems to go well for a while (and --dry-run suggests that everything is OK), but after about 60-100 MB of transfer or so, I get the following error: In either case (tarball or git), doing such a huge transfer is

Rails 2.1

2008-07-23 Thread Adam Wiggins
It's now possible to run Rails 2.1 apps on Heroku. Just change your config/environment.rb to contain: RAILS_GEM_VERSION = '2.1' We'll be supporting 2.0.2 for the foreseeable future, but I encourage you to try 2.1 when you get the chance. Most apps should require little or no porting work.

Re: How do I connect to an external database?

2008-08-26 Thread Adam Wiggins
Connecting to external databases is probably not a good idea. It may or may not work now, but I suspect it will definitely not work in the future after we make some other architectural changes we have in mind to facilitate scaling. I'd recommend rethinking your application architecture to

Re: 504 Gateway Time-out for my apps

2008-08-26 Thread Adam Wiggins
Should be back to normal now. If not, reply with your app name. Adam --~--~-~--~~~---~--~~ 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

Re: 504 Gateway Time-out

2008-08-26 Thread Adam Wiggins
Letting us know is the right thing to do. In this case we were already aware of the problem and working on it, but it never hurts to have additional information. Adam --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

Re: 504 Gateway Time-out for my apps

2008-08-26 Thread Adam Wiggins
foodstalker and unwwwired should both be ok now. Adam --~--~-~--~~~---~--~~ 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

Re: Heroku could be the ultimate publishing tool for Rails bloggers and gem/plugin developers

2008-08-28 Thread Adam Wiggins
Thanks Paul, we're glad you like Heroku so much. I totally agree that the possibilities for broader collaboration are really exciting - we have tons of ideas for this, some of which are already in the works. At the moment we're mostly focused on stabilizing the platform, but we're really

Re: About merb

2008-08-28 Thread Adam Wiggins
Small apps will always be free, and medium apps will be affordable to individuals and small companies. So don't worry on that front. As to running Merb or other frameworks besides Rails, you can't do it today, but it is something we've considered. Quick straw poll: who else is interested in

API update

2008-09-03 Thread Adam Wiggins
New client gem / API released today, now in Rubyforge (gem install heroku to update). New features: - Manage sharing (add/remove/list collaborators) - Manage multiple ssh keys for your user (add/remove/list keys) - Update settings (public true/false, mode production/development) - Rename an app

Re: Can't edit my app

2008-09-04 Thread Adam Wiggins
Fixed. Adam --~--~-~--~~~---~--~~ 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 [EMAIL PROTECTED] For more

Re: Can't edit my app

2008-09-04 Thread Adam Wiggins
Just fixed one other thing that was affecting some apps (different issue from the first one). If you're still having trouble, reply, and please remember to include the name of your app. Adam --~--~-~--~~~---~--~~ You received this message because you are

Re: Can't edit my app

2008-09-05 Thread Adam Wiggins
Fixed. Adam --~--~-~--~~~---~--~~ 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 [EMAIL PROTECTED] For more

Re: Mongrel Not Starting

2008-09-07 Thread Adam Wiggins
These seem to have corrected themselves, with the exception of jactwedding - I restarted the Thin and that brought it back. Adam --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Heroku group. To post to this group,

Re: Multiple GIT repositories + project in a subdirectory...

2008-09-24 Thread Adam Wiggins
One workaround you could use would be to make a rake task or shell script which creates a temporary git repo for the purpose of deploying. Something like this: cd subproj git init git add . git commit -m 'bundle for heroku deploy' git remote add heroku [EMAIL PROTECTED]:myapp.git git push -f

Re: quote_table_name adjustment

2008-09-27 Thread Adam Wiggins
Thanks for the heads-up. Better yet, how about sending a pull request with your patch? - http://github.com/adamwiggins/yaml_db Adam --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Heroku group. To post to this

Re: initializing and updating git submodules

2008-09-27 Thread Adam Wiggins
I highly recommend switching to cookie store sessions, i.e. put something like this in your environment.rb: config.action_controller.session = { :session_key = '_myapp_session', :secret =

Re: deployment issue with git push

2008-10-13 Thread Adam Wiggins
My guess is that some of your plugins were installed via git clone, and so contain a .git directory inside them on your local machine. This will cause git to skip over them when adding to the top-level repository, and thus they won't be pushed to Heroku. You can test this theory with a command

Re: download large file

2008-10-13 Thread Adam Wiggins
I've blessed your app, which will give you plenty of headroom on bandwidth, and cleared the overlimit flag for the day. Adam --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Heroku group. To post to this group, send

Re: git push and Gateway Timeout problems

2008-10-17 Thread Adam Wiggins
Fixed, there were both the same issue. Adam --~--~-~--~~~---~--~~ 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: New, small app over limit in error

2008-10-21 Thread Adam Wiggins
Your app went overlimit on bandwidth, although this reset at midnight so you're already back. I blessed the app which will give you plenty of headroom so you shouldn't hit this again. Adam --~--~-~--~~~---~--~~ You received this message because you are subscribed

Re: Git - Internal server error - fatal: The remote end hung up unexpectedly

2008-10-22 Thread Adam Wiggins
timesonline is fixed. Adam --~--~-~--~~~---~--~~ 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 [EMAIL PROTECTED]

Re: how do you collapse git revision history?

2008-10-23 Thread Adam Wiggins
You can run git's garbage collector like so: git gc This often reduces a repository size significantly. Another option is to rebase and remove commits of large binary files that have since been removed, but are still stored in the history. Run git gc afterward to clean it out. There's also

Re: App Overlimit

2008-10-27 Thread Adam Wiggins
I've cleared the overlimit flag, so you're back up. Adam --~--~-~--~~~---~--~~ 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

Re: Bandwidth Limits

2008-10-31 Thread Adam Wiggins
This is a sweet app Nathan, nice job! We can definitely crank your bandwidth limits and do some other things to make sure you're fully available on election day. I'll reply to you off-list about the details. Adam --~--~-~--~~~---~--~~ You received this message

Re: 504 Gateway Time-out

2008-11-06 Thread Adam Wiggins
Fixed. Adam --~--~-~--~~~---~--~~ 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 [EMAIL PROTECTED] For more options,

  1   2   >