Re: ArgumentError when starting Unicorn on Heroku

2013-05-26 Thread Mark Pundsack
Might I suggest using foreman locally for better dev/prod parity? Mark On May 26, 2013, at 8:43 AM, Jack R-G wrote: > Hi Guys, > > Thanks for the advice. Turned out the problem was in my Procfile. I had > "web: bundle exec unicorn start -p $PORT -c ./config/unicor

Re: Single app with multiple processes vs multiple apps with single process

2013-04-16 Thread Mark Pundsack
In addition to those great points, it's worth noting that separating your app into multiple apps *just* for the purposes of avoiding paying for them is against Heroku's Terms of Services and subjects your account to termination. Mark On Apr 16, 2013, at 5:02 AM, John Pignata wro

Re: Cloning the rollback?

2013-01-30 Thread Mark Pundsack
ll is lost. Try heroku run bash to get a shell running on your slug. All of your code will be there. I'm not positive, but you might even be able to run git commands and find the commit hash you're looking for. Worst case, you can at least FTP or otherwise get your code out again.

Re: app transfer and billing

2013-01-09 Thread Mark Pundsack
You should use the Heroku Dashboard web interface to transfer paid apps. It's a relatively new addition and I believe the CLI still only lets you transfer free apps. If you try with the CLI, it should just fail. Mark On Jan 9, 2013, at 6:54 AM, Neil Middleton wrote: > No need

Re: Removing SSL endpoint

2012-04-05 Thread Mark Pundsack
Looks like you might be missing the updated SSL plugin. Try: heroku plugins:install https://github.com/heroku/heroku-certs.git On Apr 5, 2012, at 2:38 AM, Lukáš Linhart wrote: > We have not received address for our SSL proxy, thus we decided to > remove our SSL endpoint and to add it again. > >

Re: Questions about Heroku Scheduler

2012-03-08 Thread Mark Pundsack
On Mar 8, 2012, at 4:04 PM, Jack Royal-Gordon wrote: > Followup questions relating to question #2: > > 2.1) In the scenario addressed in question 2 below, would the two tasks run > in the same dyno, or does Heroku spin up another dyno for the second task? I > thought I had read that the schedu

Re: Questions about Heroku Scheduler

2012-03-08 Thread Mark Pundsack
On Mar 8, 2012, at 1:00 PM, Jack R-G wrote: > 1) The dashboard seems to offer only 30-minute increments on daily process > scheduling times. Is there a way to schedule for times not on the half-hour > (e.g. 8:15 UTC)? Sorry, no. > 2) What happens if a task scheduled to start at 8:00 is still

Re: Heroku Scheduler API ?

2012-03-04 Thread Mark Pundsack
leanup > > How exactly can the scheduler reference the cleanup process without > duplicating the 'bundle exec ..' line? > > K. > --- > http://blitz.io > @k0ws1k > > On Wed, Feb 22, 2012 at 8:04 AM, Mark Pundsack wrote: >> Thanks for the feedba

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

2012-02-23 Thread Mark Makdad
; side but not on the "receiving data" side (the 3rd party library we just want to use out of the box). However, FIFO may work. Thanks for the suggestion; I'll report back here with what I find. Cheers Mark -- You received this message because you are subscribed to the Google Group

Re: Heroku Scheduler API ?

2012-02-22 Thread Mark Pundsack
in the Procfile? > > K. > --- > http://blitz.io > @k0ws1k > > On Wed, Feb 22, 2012 at 7:13 AM, Mark Pundsack wrote: >> Sorry, there's no API for scheduler. Can I ask what you want one for? >> >> On Feb 22, 2012, at 3:05 AM, Michel Pigassou wrote: >

Re: Heroku Scheduler API ?

2012-02-22 Thread Mark Pundsack
Sorry, there's no API for scheduler. Can I ask what you want one for? On Feb 22, 2012, at 3:05 AM, Michel Pigassou wrote: > Hi > Is there an API for the Heroku Scheduler > (https://addons.heroku.com/scheduler) or do we have to go through the web UI ? > > -- > You received this message because

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

Re: No access to app despite being creator

2012-02-16 Thread Mark Pundsack
Did you have a different Heroku account at one point? It sounds like your ssh or API keys are messed up in some way. I've seen this before when you're still logging in using an old Heroku account. On Feb 2, 2012, at 10:30 AM, Jordan F wrote: > Hi all, > > I created a new Heroku instance with n

Re: When pushing to Heroku it crashes on Installing do_sqlite3 (0.10.7)

2012-01-23 Thread Mark Pundsack
' end group :development, :test do gem 'dm-sqlite-adapter' end Mark On Jan 13, 2012, at 9:39 PM, tripdragon wrote: > I have a bare bones Sinatra app that is using > gem 'dm-postgres-adapter' > gem 'dm-sqlite-adapter' > > while running git

Re: ENV['DATABASE_URL'] is nil in Sinatra app using DataMapper

2012-01-13 Thread Mark Pundsack
>From http://devcenter.heroku.com/articles/cedar, try: $ heroku addons:add shared-database:5mb New apps that have the `pg` gem specified in the Gemfile will get this automatically. If the app was created a while ago, or if you added the `pg` gem after the first push, it wouldn't have added the

Re: Interactive console on Cedar

2012-01-13 Thread Mark Pundsack
Just note that anything you do in that shell, or at least any files you save or edit, will be lost when you exit the shell. You're running in an isolated dyno with an ephemeral file system. On Jan 13, 2012, at 12:49 PM, Martin Aspeli wrote: > On 13 January 2012 20:39, Mark Pundsac

Re: Interactive console on Cedar

2012-01-13 Thread Mark Pundsack
Is it a ruby app? `console` is for the interactive ruby console. If it's some other language (or you haven't pushed any code at all yet), there may not be the equivalent. If you want a shell, then `heroku run bash` should work. On Jan 10, 7:25 am, Martin Aspeli wrote: > On 10 January 2012 15:15,

Multi-module pom project

2012-01-09 Thread Mark D
s cached in the local repository, resolution will not be reattempted until the update interval of spring-maven-release has elapsed or updates are forced and 'parent.relativePath' points at wrong local POM @ line 11, column 10 -> [Help 2] How do I get Heroku to work with multi-module

Re: GZIP & expxires header for static files

2011-12-22 Thread Mark Maximus Muskardin
if it's just a matter of tweaking a config. No luck finding a good answer yet. //Mark -- You received this message because you are subscribed to the Google Groups "Heroku" group. To view this discussion on the web visit https://groups.google.com/d/msg/heroku/-/k5f_HluuvMUJ. To pos

Re: Heroku Scheduler - Time Out?

2011-12-22 Thread Mark Pundsack
There are no hard limits; it's just that it wasn't designed for long- running tasks so you may not find it suitable. For example if you've set up a task to run every 10 minutes, but the task doesn't finish before the next scheduled run hits, you could end up with an escalating problem. On Cedar ap

Re: Is it possible to use CarrierWave on Heroku without relying on cache?

2011-05-25 Thread Mark Ellul
There is an s3 gem upload gem which allows straight from the browser to s3 uploads... gem 's3_swf_upload', :git => 'git://github.com/nathancolgate/s3-swf-upload-plugin' It uses a swf to do it though! -- You received this message because you are subscribed to the Google Groups "Heroku" group.

Re: Does Hoptoad Work for a Worker?

2011-03-20 Thread Mark Ellul
are your current errors getting reported correctly? -- 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 heroku+unsubscr...@googlegroups.com. For m

[Solved]Re: Forcing Heroku to Update Git based Gems

2011-01-20 Thread Mark Ellul
It looks like I was updating the gem's local files instead of the files which I was pushing to github. FACEPALM -- 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 gr

Re: Forcing Heroku to Update Git based Gems

2011-01-12 Thread Mark Ellul
Hi Matthew, Thanks for your response No it hasn't, as I see when its been updated. I think I have found the issue I will update the thread if I confirm what it is... Regards Mark -- You received this message because you are subscribed to the Google Groups "Heroku" gr

Forcing Heroku to Update Git based Gems

2011-01-12 Thread Mark Ellul
Hi, I am using a Gem that is hosted in Github. The Gem has been updated but the version number hasn't. I do the update locally (bundle update) and it pulls the latest changes, However on the server when I push the latest version of my app it does not update the Gem. Any Ideas? Regards

Re: access to logs when using the logging addon.

2011-01-10 Thread Mark Ellul
Hi Christos, Thanks by installing the plugin as well it seems to work now. Regards Mark -- You received this message because you are subscribed to the Google Groups "Heroku" group. To post to this group, send email to her...@googlegroups.com. To unsubscribe from this group, sen

access to logs when using the logging addon.

2011-01-10 Thread Mark Ellul
s with the logging addon? Regards Mark -- You received this message because you are subscribed to the Google Groups "Heroku" group. To post to this group, send email to her...@googlegroups.com. To unsubscribe from this group, send email to heroku+unsubscr...@googlegroups.com. For more

Re: logs:cron shows no output

2010-12-18 Thread Mark McGranaghan
On Dec 18, 10:36 pm, Mark McGranaghan wrote: > We recently found an error in our system that was causing cron logs to > become inaccessible some time after the cron job ran, and have > deployed a fix for it. Any cron jobs running from now forward should > have cron logs accessible

Re: logs:cron shows no output

2010-12-18 Thread Mark McGranaghan
sorry about the trouble; please let us know if you do not start to see your cron logs or if you otherwise have problems with cron logging. - Mark On Dec 14, 2:45 am, themire wrote: > I have an outstanding ticket with Heroku support on this. They've > suggested to upgrade to the new lo

Re: Why is this Eventmachine process being terminated?

2010-12-17 Thread Mark McGranaghan
gging/ - Mark On Dec 15, 4:32 am, Jonas wrote: > Hi guys, > > So I've been having some issues running an eventmachine worker on > Heroku. After some tedious debugging I realized that it didn't appear > to be what the event machine was doing that caused the problem. A &g

Re: multiple databases

2010-12-08 Thread Mark Ellul
Thanks Peter for your response! I think we are looking in the long term to merge the projects, so sharing the models will allow both projects to develop and share data easily make sense in the short term. -- You received this message because you are subscribed to the Google Groups "Heroku" gro

Re: multiple databases

2010-11-24 Thread Mark Ellul
he right to change the DATABASE_URL at any time for one > of the apps., so this is not a perfect solution. > > Wes > > On 11/23/10 8:16 AM, Mark Ellul wrote: > > > > > > > > > BUMP. > > > I need to know this as well, as I am creating a rails engi

Re: multiple databases

2010-11-23 Thread Mark Ellul
BUMP. I need to know this as well, as I am creating a rails engine which will be used by 2 apps so that data is shared across the two applications. What is the best way to do this? On Nov 6, 4:15 pm, linojon wrote: > Hi, my app needs to access an external database (cloud-accessible > postgres d

Re: xml-simple error stops deploy

2010-11-05 Thread Mark
Have had a response from Heroku support, this was caused by using vendor/cache gems and not having packaged up the xml-simple gem. I've removed the cached gems now and it seems to be working. On Nov 2, 1:26 pm, Mark wrote: > Hi there, > > I have a rails app running on Heroku, bu

xml-simple error stops deploy

2010-11-02 Thread Mark
.com/bundler ! Heroku push rejected, failed to install gems via Bundler The app runs fine locally, and the previous iteration of the app runs fine on Heroku, it's just since adding S3 stuff. How can I resolve this problem? Let me know if you need any more info. Thanks, Mark -- You rece

Re: Delayed_job worker + paperclip + s3 error

2010-10-27 Thread Mark Wang
exception because of last_error being too long, and the S3 write is never re-attempted. Changing the column type to text made things work fine because the S3 error goes away after a few seconds. On Oct 27, 3:40 am, Mark Wang wrote: > Hi all, > > I'm implementing a simple photo u

Delayed_job worker + paperclip + s3 error

2010-10-27 Thread Mark Wang
ems/rake-0.8.7/bin/rake:31 /usr/ruby1.8.7/bin/rake:19:in `load'' /usr/ruby1.8.7/bin/rake:19', "run_at" = '2010-10-27 10:31:15.149811', "updated_at" = '2010-10-27 10:31:10.155015' WHERE ("delayed_jobs"."id" = 1) (See

Re: ETA on db:pull not updating

2010-10-15 Thread Mark Swardstrom
#x27;s updating. Do it again a few minutes later and extrapolate your finish time. The table I am looking at is importing ~9K rows/minute. On Oct 15, 2010, at 12:06 PM, Mark Swardstrom wrote: > When I pull from heroku I don't see the ETA update, it just updates when the > r

ETA on db:pull not updating

2010-10-15 Thread Mark Swardstrom
d keep timing out for one reason or another, it would be great to know how long I need to go so I can make sure network disruptions / work distractions are avoided for an extended period of time. This used to work, but it hasn't been lately... - Mark -- You received this message because yo

Scheduled Maintenance: 9/25/2010 @ 8PM PDT

2010-09-24 Thread Mark Imbriaco
client - git repositories If you have any questions or concerns, please feel free to contact us via http://support.heroku.com/. Thank you for your patience. - Mark Imbriaco Heroku Cloud Operations -- You received this message because you are subscribed to the Google Groups "Heroku"

Re: Git, SVN and Heroku

2010-09-10 Thread Mark Swardstrom
Thanks - I think I have this figured out. It doesn't actually matter if it's SVN, the main hurdle for me was allowing multiple members of a team that use an existing repository (in svn, git, or whatever) push to heroku. You can't get clone first, so you just need to init (if you're on svn

Re: EU bucket cost implications

2010-08-19 Thread Mark
correct too. > > Steve > > --http://cloudmailin.com > @cloudmailin > Incoming email for your web app > > On Aug 19, 1:03 pm, Mark wrote: > > > > > Thanks Alex, I'm going to ask on Stack Overflow and will post back > > here. > > > On Aug 19, 11:50 

Re: EU bucket cost implications

2010-08-19 Thread Mark
Thanks Alex, I'm going to ask on Stack Overflow and will post back here. On Aug 19, 11:50 am, Alex wrote: > I don't actually know which of the locations Heroku runs from, perhaps > someone from heroku can help us out. -- You received this message because you are subscribed to the Google Groups

Re: EU bucket cost implications

2010-08-18 Thread Mark
Thanks Alex, that's great. Just to be sure, looking at creating a new bucket I am presented with US Standard and Northern California. I assume I should choose US Standard? So my bucket On Aug 18, 12:17 pm, Alex wrote: > From Amazon's site > > Data transferred between Amazon EC2 and Amazon S3 a

EU bucket cost implications

2010-08-17 Thread Mark
Hi I'm currently moving a late in development application over to heroku which seems utterly brilliant. My question is would using an EU located S3 bucket incur extra transfer costs? Most of my visitors will be over here but I expect significant user file uploads and if I have to pay extra for tr

ludicast / yaml_db specs not passing

2010-02-17 Thread Mark
Hello. I was using yaml_db for a project of mine, and because some of it requires large amounts of data for the testing I thought it would be useful to use ar-extensions to do multiple import (read faster) on the MySQL data. I started hacking around in the code, and got it working for me. Then I t

Herokugarden Still Has Issues

2009-05-18 Thread Mark
I am still having issues accessing my projects on herokugarden. I have to do multiple refreshes, and half of those get me 500 errors. (500 Internal Server Error nginx/0.6.32) Is there something going on? Is it just me? When will this be fixed? --~--~-~--~~~---~--~---

Re: Getting Heroku errors...any updates/suggestions?

2009-05-17 Thread Mark
I agree that the groups are not the right notification mechanism, but at least it is a way for people to know there are issues. BTW, I have had issues accessing herokugarden.com all night. On May 17, 8:53 am, Chris Schumann wrote: > On May 16, 1:48 pm, Alex Chaffee wrote: > > > And consideri

Re: http://herokugarden.com/ is down !

2009-05-16 Thread Mark
I am just glad I am not the only one having issues. On May 16, 8:58 pm, ref3at wrote: > Anyone know what's going on yet? > > On May 17, 12:25 am, Adam Alexander wrote: > > > I'm also having issues - trying to connect to herokugarden's git > > server.  Very happy with the innovative services her

Maruku + Blahtex

2009-03-05 Thread Mark Reid
Gs to file so provided blahtex can be run I should be able to include equations as PNGs in my application. Is it possible to have the binary for blahtex made available on Heroku? Thanks, Mark. --~--~-~--~~~---~--~~ You received this message because you are subscribe

Ajax error

2009-02-22 Thread Mark
<%= stylesheet_link_tag 'application', 'photos' %> <%= stylesheet_link_tag 'slideshows' %> Instead of a nice slideshow in Ajax, I get the following text with photo info: Basket basket.jpg and then this error: NoMethodE

Re: db:data:load error

2008-12-29 Thread Mark Holton
Hi Arjay, To answer your questions: This is a MySQL database. I did indeed install the yaml_db rails plugin. editing application on local machine (Mac Book Pro) Hope that helps clarify. Any suggestions? :Mark On Mon, Dec 29, 2008 at 1:57 AM, Arjay Orcasitas wrote: > hi mark, > >

Re: db:data:load error

2008-12-28 Thread Mark Holton
It's a good point I will look into in more details. I'll start small with a couple tables in the schema and work out from there. Thanks, :Mark On Sun, Dec 28, 2008 at 9:25 PM, Alfonso wrote: > > Have you checked your schema is completely loaded? If migrations went > s

Re: db:data:load error

2008-12-28 Thread Mark Holton
te: > hi, please try "rake db:data:load" this should solve your problem. Please > update me if it answers your question. > > > On Mon, Dec 29, 2008 at 5:15 AM, Mark Holton wrote: > >> Sample yaml.db attached. >> db:load successfully creates the sche

Re: db:data:load error

2008-12-28 Thread Mark Holton
Sample yaml.db attached. db:load successfully creates the schema from schema.rb, but whenever it gets to the db:data:load portion of that rake task it pukes with the PGError below. Thanks, :Mark On Sun, Dec 28, 2008 at 1:03 PM, Mark Holton wrote: > When I run "db:data:load"

Re: db:data:load error

2008-12-28 Thread Mark Holton
When I run "db:data:load" from the Rake console I get: >> db:data:load (in /mnt/home/userapps/51510) rake aborted! PGError: ERROR: current transaction is aborted, commands ignored until end of transaction block : DELETE FROM development (See full trace by running task with --tra

Re: editor improvement suggestion

2008-12-13 Thread Mark S.
Indeed.. but this is a perfect case where you should use git and a desktop-based editor for web development. I agree these features should make it into the browser-editor eventually but for the time being, I suggest everyone check out the git workflow. Personally, I find TextMate (mac only) works

Re: App just coming up with black bar

2008-12-08 Thread Mark S.
Same thing happening to me... tried to restart and don't get a console message back. On Dec 7, 4:32 pm, "Corey Haines" <[EMAIL PROTECTED]> wrote: > Thanks. I'll keep the restart in mind for later. > > On Sun, Dec 7, 2008 at 5:20 PM, Adam Wiggins <[EMAIL PROTECTED]> wrote: > > > This is the page

Re: Rails 2.2, soon?

2008-10-25 Thread Mark S.
I don't see why there would be.. 2.2 hasn't been finalized or released just yet AFAIK On Oct 25, 12:52 pm, Philipe Farias <[EMAIL PROTECTED]> wrote: > There's a date for Rails 2.2 support on Heroku? --~--~-~--~~~---~--~~ You received this message because you are su

Re: production mode messed up my app? how to get it back?!

2008-10-19 Thread Mark S.
Thank you Adam! On Oct 19, 8:20 pm, "Adam Wiggins" <[EMAIL PROTECTED]> wrote: > 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.c

production mode messed up my app? how to get it back?!

2008-10-19 Thread Mark S.
Today, I decided to try my app (name: tano-survey) in production. It hasn't worked since, even after switching it back into development mode through the heroku control panel. I haven't been able to take snapshots for a while but now, I can't even export data/code. Is anyone experiencing anything

Re: 504 Gateway Timeout

2008-10-07 Thread Mark
Great! It is up. Hmmm looks like some data loss. Oh well, I still love the service. Thanks Ivan. Do we know what caused this? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Heroku" group. To post to this group,

Re: 504 Gateway Timeout

2008-10-07 Thread Mark
Whoops, misspelled appname. "myappxl1" --~--~-~--~~~---~--~~ 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 [EMAI

Re: 504 Gateway Timeout

2008-10-07 Thread Mark
Mine is still down... App: myapxl1 On Oct 7, 5:29 pm, andoy <[EMAIL PROTECTED]> wrote: > works now.. thanks! > > On Oct 8, 6:52 am, Ivan <[EMAIL PROTECTED]> wrote: > > > Yes, it seems that the app was reset. I am working on pulling up the > > last files posted to the app in order restore it. > >

Re: 504 Gateway Timeout

2008-10-07 Thread Mark
I'm now getting the D'oh app offline for maintenance message. Also, the email address specified is invalid. On Oct 7, 5:43 am, Mark <[EMAIL PROTECTED]> wrote: > I'm getting the same error on the online editor and the a

Re: 504 Gateway Timeout

2008-10-07 Thread Mark
I'm getting the same error on the online editor and the app. App name: myappxl1 --~--~-~--~~~---~--~~ 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 unsubscri

Console says mongrel is not reponding

2008-09-10 Thread Mark
My console says: "Your mongrel is not responding, check to see if there is a crash log." I've checked for a crash log, but don't see anything there. Everything seems to be working ok except for being able to use the console. App Name: myappxl1 --~--~-~--~~~---~--~

Re: "500 Internal Server Error" and "no logs yet"

2008-08-29 Thread Mark
Just edit your environment file (add or space or something simple) then save it and your app will automatically restart. On Aug 29, 10:20 pm, DyingToLearn <[EMAIL PROTECTED]> wrote: > I recently ran 'git push' on my app. During that I got a message "HTTP > Basic: Access denied." > > Now I get a 5

Re: About merb

2008-08-28 Thread Mark
Stability, SSL, cron, long running processes, etc first.then sure >Quick straw poll: who > else is interested in being able to run Merb, or some other Ruby > framework, on Heroku? > > Adam --~--~-~--~~~---~--~~ You received this message because you are subscr

Re: ultrasphinx

2008-08-26 Thread Mark
On Jul 29, 11:58 am, "Orion Henry" <[EMAIL PROTECTED]> wrote: > We're going to be upgrading to postgres 8.3 soon on the backend.  When we > do, that will give everyone access to acts_as_tsearch for free as 'tsearch2' > is built into the database. Do you have an ETA on postgres 8.3? Looks like yo

Re: 500 status when clicking on Logs

2008-08-25 Thread Mark
That worked. Thanks --~--~-~--~~~---~--~~ 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: 500 status when clicking on Logs

2008-08-25 Thread Mark
myappxl1 On Aug 25, 6:18 pm, Morten Bagai <[EMAIL PROTECTED]> wrote: > Mark, > > What's the name of your app? I cannot find any accounts under the   > email address you use for the mailing list. > > /Morten > --~--~-~--~~~---~--

500 status when clicking on Logs

2008-08-25 Thread Mark
I'm getting a "We're sorry, but something went wrong." when trying to view the logs. --~--~-~--~~~---~--~~ 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 unsu

Heroku Update

2008-08-21 Thread Mark
features like async processes, SSL, etc? -What have you guys been up to lately ;) Thanks, Mark --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Heroku" group. To post to this group, send email

Re: App starting loop and snapshots failing

2008-08-20 Thread Mark S.
edev wrote: > > > > > I found this post (http://groups.google.com/group/heroku/ > > browse_thread/ > > thread/d8545430404d8ae0#) and a solution from Mark. > > > "I tried switching from dev to prod and back, and it cleared up." - > > Mark >

API <-> git <-> TextMate

2008-08-19 Thread Mark S.
Hi. I'm new to git but have been writing RoR apps with Heroku and TextMate for a while now. After making local changes, I usually issue the following command in a terminal (cd'ed to my git repo folder): `git add .; git commit -m "COMMENT"; git push` It works. Awesome. Is there a better way to do

Re: 502 Bad Gateway

2008-07-18 Thread Mark
This is probably a good sign that the Heroku team is working on it. Again though, if there is anything we can do to assist, please let us know. I can at least speak for myself, and probably many others when I say that Heroku Rocks! I want to see it a success. On Jul 18, 1:45 pm, nataskieva <[EM

Re: 502 Bad Gateway

2008-07-18 Thread Mark
I'm getting the same error. 502 Bad Gateway. Although this problem usually seems to be resolved relatively quickly, whether through automated means or intervention, I wonder if there is a fix in the works because this is a persistently annoying problem for many users. Let us know if there is any

Re: New Heroku Gem Released!

2008-06-28 Thread Mark
I wanted to test out the Windows Heroku gem a good while before I gave feedback. A good while has passed, and I haven't run into any issues yet. Nice work. -Mark --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google G

Re: Can't login to application

2008-06-28 Thread Mark
I'm guessing this issue is related to the 502 thread here (also having issues with restful_authentication plugin - which hasn't changed - since about a week or so ago): http://groups.google.com/group/heroku/browse_thread/thread/5a16ef96a8bf633d On Jun 27, 1:18 pm, elk_ <[EMAIL PROTECTED]> wrote:

Re: Can't login to application

2008-06-23 Thread Mark
I'm having a similar (related?) problem. I have the sitealizer plugin installed, and just recently when I login with correct credentials to view sitestats it says "App starting..." even when app was working fine. The interesting thing that I notice is an endless loop going to the "App starting..

Re: aws-s3 gem not installing on Heroku

2008-06-20 Thread Mark
Got it to work by just uploading the gem. --~--~-~--~~~---~--~~ 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 [EMA

aws-s3 gem not installing on Heroku

2008-06-20 Thread Mark
So I'm getting an alert box that says "Could not install gem: aws-s3" when I try to install the aws-s3 gem. Has anyone gotten this to work on Heroku? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Heroku" group. To

Re: Apps on Thin, toolbar on Rack

2008-06-20 Thread Mark
Noticeably faster, and I notice http compression now. Well done. --~--~-~--~~~---~--~~ 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 g

Re: google webmaster tools finding status 302 on robots.txt

2008-06-12 Thread Mark
If it helps...one of the files that got status 302 was /javascripts/ prototype.js A little odd. On Jun 12, 9:13 pm, Mark <[EMAIL PROTECTED]> wrote: > Googlebot is getting status302occasionally it seems (according to > webmasters tools) on other pages that never should redirect. I

Re: google webmaster tools finding status 302 on robots.txt

2008-06-12 Thread Mark
Googlebot is getting status 302 occasionally it seems (according to webmasters tools) on other pages that never should redirect. I can never reproduce this myself. I'm not sure if there is a way to log/ trace this. It seems to be recurring though. --~--~-~--~~~---~--

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

2008-06-12 Thread Mark
So far so good, it has been a while now. Nice job. On Jun 6, 8:19 pm, "Adam Wiggins" <[EMAIL PROTECTED]> wrote: > 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 --~--~-~--~~~---

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

2008-06-04 Thread Mark
And it's working. Thanks again. --~--~-~--~~~---~--~~ 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 PROTEC

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

2008-06-04 Thread Mark
Getting the same connection reset by peer error message. --~--~-~--~~~---~--~~ 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, sen

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

2008-06-02 Thread Mark
Now I get this message: Read from remote host 10.251.67.51: Connection reset by peer fatal: The remote end hung up unexpectedly I noticed someone else had this issue yesterday. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Googl

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

2008-06-02 Thread Mark
Here's the entire message. I get it with both pull and push Received disconnect from 10.251`.67.51: 2: fork failed: Resource temporarily unavailable fatal: The remote end hung up unexpectedly --~--~-~--~~~---~--~~ You received this message because you are subscrib

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

2008-06-02 Thread Mark
I'm getting the following error from git: Resource temporarily unavailable fatal: The remote end hung up unexpectedly --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Heroku" group. To post to this group, send email t

Re: Gruff Support, Scruffy Support

2008-06-01 Thread Mark
I'm not sure we can actually point ImageMagick to our app directories without access to the ImageMagick configs. Has anyone been able to successfully point ImageMagick to their rails app? On Apr 18, 11:37 am, "Adam Wiggins" <[EMAIL PROTECTED]> wrote: > > On Apr 7, 9:07 am, pietj <[EMAIL PROTECT

504 Gateway Timeout when editing or viewing app

2008-05-30 Thread Mark
I'm getting a 504 Gateway Timeout response when I try to edit/view/git my app expressloop from the heroku domain. I get a 500 error when I view from my custom domain. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "

Re: google webmaster tools finding status 302 on robots.txt

2008-05-27 Thread Mark
Morten, I just realized you are one of the few who just joined the Heroku team. Welcome aboard! Let me know if you need any additional info to troubleshoot this issue. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

Re: google webmaster tools finding status 302 on robots.txt

2008-05-27 Thread Mark
Thanks for the reply. I am indeed using Google Webmasters Tools, and it updates the robots.txt daily. It has read it correctly as 200 on occasion, but other times (including just today) it shows 302. I have not made any changes to my robots.txt file since it was read correctly. I think this ma

google webmaster tools finding status 302 on robots.txt

2008-05-27 Thread Mark
Google is finding status 302 on robots.txt, however whenever I browse to the file I am getting 200 and the correct robots.txt. Any ideas? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Heroku" group. To post to thi

Add nginx gzip/deflate support

2008-05-21 Thread Mark
I think a great addition to Heroku would be to support gzip/deflate on the nginx server. Here is a link describing the technology. http://sysoev.ru/en/ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Heroku" group

Re: Internal Server Error

2008-05-21 Thread Mark
And, it's back up. Thanks, powers that be (AKA Adam and Co.). --~--~-~--~~~---~--~~ 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 grou

Re: Internal Server Error

2008-05-21 Thread Mark
More Info: If I access the app from http://expressloop.heroku.com it works fine, but if I access it from http://survey.expressloop.com it gives the Internal Server Error message. This just started happening recently On May 21, 7:44 pm, Mark <[EMAIL PROTECTED]> wrote: > I just started g

  1   2   >