Re: 502 Bad Gateway, is there a way to discover what Heroku objected to in the response?

2013-04-17 Thread William Billingsley

I've solved the issue (I think it was the Connection-Length: -1 that was 
being objected to) but that does mean I can't post the output from it 
failing now, sorry.

I think it also works out that it was the campus router complaining 
(between my laptop and heroku) rather than heroku or the app.  Sorry - the 
502 had an uninformative Via header and I'd assumed the proxy was at 
heroku's end and forgotten about the one closer to my desk!

Thanks very much for the swift response, though!


On Wednesday, 17 April 2013 08:46:59 UTC+10, Blake Gentry wrote:

 Can you include an example curl for the app on Heroku when it receives a 
 502? This would help verify whether the 502 response was sent by your app 
 or the Heroku router.

 Also, do your app's heroku logs show anything when this happens?

 On Monday, April 15, 2013 8:35:35 PM UTC-7, William Billingsley wrote:

 Is there a way to find out *what* Heroku's proxy objected to in a 
 response?

 I have an app which on its Server Sent Events url gets a 502 Bad Gateway 
 on Heroku (but for which its other urls work fine, and the app's own log 
 messages suggest the app did try to respond)

 When I run the app on localhost, this is the output from cURL to the 
 event stream, and I'm trying to work out if there's any part of this 
 response that Heroku's proxy would object to, that would cause it to 502 
 Bad Gateway on Heroku.

 $ curl -N -v http://localhost:9000/eventRoom/ssevents
 * About to connect() to localhost port 9000 (#0)
 *   Trying ::1...
 * connected
 * Connected to localhost (::1) port 9000 (#0)
  GET /eventRoom/ssevents HTTP/1.1
  User-Agent: curl/7.24.0 (x86_64-apple-darwin12.0) libcurl/7.24.0 
 OpenSSL/0.9.8r zlib/1.2.5
  Host: localhost:9000
  Accept: */*
  
  HTTP/1.1 200 OK
  Connection: close
 * Negative content-length: -1, closing after transfer
  Content-Length: -1
  Content-Type: text/event-stream
  Set-Cookie: 
 PLAY_SESSION=c115bf50b75969eeb9b9751b66f481829a1fd5c0-sessionkey%3A516cc2339acb3a6b00380eac;
  
 Path=/; HTTPOnly
  
 data: {type:ignore}

 data: {type:connected,listenerName:516cc2339acb3a6b00380eab}



-- 
-- 
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 more options, visit this group at
http://groups.google.com/group/heroku?hl=en_US?hl=en

--- 
You received this message because you are subscribed to the Google Groups 
Heroku Community group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to heroku+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: 502 Bad Gateway, is there a way to discover what Heroku objected to in the response?

2013-04-16 Thread Blake Gentry
Can you include an example curl for the app on Heroku when it receives a 
502? This would help verify whether the 502 response was sent by your app 
or the Heroku router.

Also, do your app's heroku logs show anything when this happens?

On Monday, April 15, 2013 8:35:35 PM UTC-7, William Billingsley wrote:

 Is there a way to find out *what* Heroku's proxy objected to in a response?

 I have an app which on its Server Sent Events url gets a 502 Bad Gateway 
 on Heroku (but for which its other urls work fine, and the app's own log 
 messages suggest the app did try to respond)

 When I run the app on localhost, this is the output from cURL to the event 
 stream, and I'm trying to work out if there's any part of this response 
 that Heroku's proxy would object to, that would cause it to 502 Bad 
 Gateway on Heroku.

 $ curl -N -v http://localhost:9000/eventRoom/ssevents
 * About to connect() to localhost port 9000 (#0)
 *   Trying ::1...
 * connected
 * Connected to localhost (::1) port 9000 (#0)
  GET /eventRoom/ssevents HTTP/1.1
  User-Agent: curl/7.24.0 (x86_64-apple-darwin12.0) libcurl/7.24.0 
 OpenSSL/0.9.8r zlib/1.2.5
  Host: localhost:9000
  Accept: */*
  
  HTTP/1.1 200 OK
  Connection: close
 * Negative content-length: -1, closing after transfer
  Content-Length: -1
  Content-Type: text/event-stream
  Set-Cookie: 
 PLAY_SESSION=c115bf50b75969eeb9b9751b66f481829a1fd5c0-sessionkey%3A516cc2339acb3a6b00380eac;
  
 Path=/; HTTPOnly
  
 data: {type:ignore}

 data: {type:connected,listenerName:516cc2339acb3a6b00380eab}


-- 
-- 
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 more options, visit this group at
http://groups.google.com/group/heroku?hl=en_US?hl=en

--- 
You received this message because you are subscribed to the Google Groups 
Heroku Community group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to heroku+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




502 Bad Gateway, is there a way to discover what Heroku objected to in the response?

2013-04-15 Thread William Billingsley
Is there a way to find out *what* Heroku's proxy objected to in a response?

I have an app which on its Server Sent Events url gets a 502 Bad Gateway on 
Heroku (but for which its other urls work fine, and the app's own log 
messages suggest the app did try to respond)

When I run the app on localhost, this is the output from cURL to the event 
stream, and I'm trying to work out if there's any part of this response 
that Heroku's proxy would object to, that would cause it to 502 Bad 
Gateway on Heroku.

$ curl -N -v http://localhost:9000/eventRoom/ssevents
* About to connect() to localhost port 9000 (#0)
*   Trying ::1...
* connected
* Connected to localhost (::1) port 9000 (#0)
 GET /eventRoom/ssevents HTTP/1.1
 User-Agent: curl/7.24.0 (x86_64-apple-darwin12.0) libcurl/7.24.0 
OpenSSL/0.9.8r zlib/1.2.5
 Host: localhost:9000
 Accept: */*
 
 HTTP/1.1 200 OK
 Connection: close
* Negative content-length: -1, closing after transfer
 Content-Length: -1
 Content-Type: text/event-stream
 Set-Cookie: 
PLAY_SESSION=c115bf50b75969eeb9b9751b66f481829a1fd5c0-sessionkey%3A516cc2339acb3a6b00380eac;
 
Path=/; HTTPOnly
 
data: {type:ignore}

data: {type:connected,listenerName:516cc2339acb3a6b00380eab}

-- 
-- 
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 more options, visit this group at
http://groups.google.com/group/heroku?hl=en_US?hl=en

--- 
You received this message because you are subscribed to the Google Groups 
Heroku Community group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to heroku+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: 502 Bad Gateway

2009-08-07 Thread Jake

I am getting this problem in my apps yesterday and today..  I cannot
Edit OR View them.  I would love to switch to Heroku but I do not have
ruby here at work or on my home PC I have been developing solely in
the Heroku editor.

My wife did, however, get a macbook, so maybe I could move my app to
Heroku.com with that, but will I be able to edit it online with a PC?

On Jul 21, 5:29 pm, James Lindenbaum ja...@heroku.com wrote:
 This should be fixed now for all apps.  HerokuGarden is a very old  
 version of our platform, which we are not actively working on or  
 maintaining.  It isn't stable, and we highly recommend moving to  
 heroku.com, where you can still run your apps for free, the platform  
 is much newer, stable, much more performant, has tons of additional  
 features, and is fully maintained and supported.

 Migration instructions here:http://herokugarden.com/transition/move

 - James

 On Jul 21, 2009, at 10:13 AM, nacho wrote:

  i have the same problem with my application :-(

  2009/7/21 Luis Martín Vallejo lmart...@gmail.com
  I' am getting now this error in HerokuGarden when I try to see my  
  applications.

  --
  Martín

  --
  // nacho
  // sigo con mi terapia enhttp://cache.yestoall.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 
heroku+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: 502 Bad Gateway

2009-07-25 Thread Norman Close

Yes, I have been getting the same error in HerokuGarden for the last
two days.

Hopefully it is resolved soon as normally my app runs very reliably.

Norman

On Jul 22, 5:13 am, nacho na...@yestoall.com wrote:
 i have the same problem with my application :-(

 2009/7/21 Luis Martín Vallejo lmart...@gmail.com

  I' am getting now this error in HerokuGarden when I try to see my
  applications.

  --
  Martín

 --
 // nacho
 // sigo con mi terapia enhttp://cache.yestoall.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 
heroku+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: 502 Bad Gateway

2009-07-21 Thread nacho
i have the same problem with my application :-(

2009/7/21 Luis Martín Vallejo lmart...@gmail.com

 I' am getting now this error in HerokuGarden when I try to see my
 applications.

 --
 Martín


 



-- 
// nacho
// sigo con mi terapia en http://cache.yestoall.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 
heroku+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: 502 Bad Gateway

2009-07-21 Thread James Lindenbaum
This should be fixed now for all apps.  HerokuGarden is a very old  
version of our platform, which we are not actively working on or  
maintaining.  It isn't stable, and we highly recommend moving to  
heroku.com, where you can still run your apps for free, the platform  
is much newer, stable, much more performant, has tons of additional  
features, and is fully maintained and supported.

Migration instructions here:
http://herokugarden.com/transition/move

- James


On Jul 21, 2009, at 10:13 AM, nacho wrote:

 i have the same problem with my application :-(

 2009/7/21 Luis Martín Vallejo lmart...@gmail.com
 I' am getting now this error in HerokuGarden when I try to see my  
 applications.

 -- 
 Martín






 -- 
 // nacho
 // sigo con mi terapia en http://cache.yestoall.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 
heroku+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: 502 Bad Gateway

2009-07-21 Thread Carl Anderson
I did just this the last time herokugarden had problems. From my experience
the only thing you lose is the online editor, and I wasn't even using that
anyway since it was too slow compared to just using gedit and git push. The
move was worthwhile for me, and not difficult at all.

Carl

On Tue, Jul 21, 2009 at 5:29 PM, James Lindenbaum ja...@heroku.com wrote:

 This should be fixed now for all apps.  HerokuGarden is a very old version
 of our platform, which we are not actively working on or maintaining.  It
 isn't stable, and we highly recommend moving to heroku.com, where you can
 still run your apps for free, the platform is much newer, stable, much more
 performant, has tons of additional features, and is fully maintained and
 supported.
 Migration instructions here:
 http://herokugarden.com/transition/move

 - James


 On Jul 21, 2009, at 10:13 AM, nacho wrote:

 i have the same problem with my application :-(

 2009/7/21 Luis Martín Vallejo lmart...@gmail.com

 I' am getting now this error in HerokuGarden when I try to see my
 applications.

 --
 Martín






 --
 // nacho
 // sigo con mi terapia en http://cache.yestoall.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 
heroku+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: Herokugarden = 502 Bad Gateway

2009-01-20 Thread DAZ

Snap. I'm getting 'server failed to start' on all my apps.

DAZ

On Jan 19, 8:07 pm, Paul Leader paul.lea...@gmail.com wrote:
 Hi guys,

 It's broken again.

 http://me-monitor.herokugarden.com/is returning 502.

 The edit interface is showing the We're sorry, but something went
 wrong. message.

 Paul

 On Jan 19, 2:37 am, Ivan Makfinsky i...@heroku.com wrote:

  Paul,

  It's been corrected.

  - Ivan

  On Sun, Jan 18, 2009 at 7:49 AM, Paul Leader paul.lea...@gmail.com wrote:
   Hi

   I'm getting 502s for my app me-monitor as well.  It was working ok
   immediatly after the move, but now fails.

   Also, I can't save changes to files in the code editor.

   Thanks

   Paul

   On Jan 16, 7:37 pm, Ivan i...@heroku.com wrote:
Right now, we are sifting through the logs to make sure that
everything's running correctly.

You're app has been reset and it's up now.

- Ivan

On Jan 16, 12:47 pm, Alfonso aadrias...@gmail.com wrote:

 hi Ivan, thanks for the quick look, I'm still getting 502's though.

 Any steps i can take to remedy this?

 On Jan 16, 9:43 am, Ivan i...@heroku.com wrote:

  Alfonso,

  It may be something residual from the migration this morning. I have
  reset the app and it looks better.

  We are still working out small glitches as we come across them, bear
  with us and continue to let us know about issues you may have with
   the
  platform.

  - Ivan

  On Jan 16, 12:20 pm, Alfonso aadrias...@gmail.com wrote:

   Also having 502 Bad Gateway on

   appname: wwhow

   Something's going on: I renamed it to wwhow-dev and everything
   works.
   Rename it back to wwhow and nothing works (can't edit anymore)
   I blew away the app and reimported it , same situation.

   Maybe I messed it up by deleting the app?
--~--~-~--~~~---~--~~
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 more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: Herokugarden = 502 Bad Gateway

2009-01-19 Thread Sammy Larbi
I had the same issue - fine after the move, but now getting 502 bad gateway
for poundfool.com and poundfool.herokugarden.com

Sam


On Sun, Jan 18, 2009 at 8:37 PM, Ivan Makfinsky i...@heroku.com wrote:

 Paul,

 It's been corrected.

 - Ivan

 On Sun, Jan 18, 2009 at 7:49 AM, Paul Leader paul.lea...@gmail.comwrote:

 Hi

 I'm getting 502s for my app me-monitor as well.  It was working ok
 immediatly after the move, but now fails.

 Also, I can't save changes to files in the code editor.

 Thanks

 Paul

 On Jan 16, 7:37 pm, Ivan i...@heroku.com wrote:
  Right now, we are sifting through the logs to make sure that
  everything's running correctly.
 
  You're app has been reset and it's up now.
 
  - Ivan
 
  On Jan 16, 12:47 pm, Alfonso aadrias...@gmail.com wrote:
 
   hi Ivan, thanks for the quick look, I'm still getting 502's though.
 
   Any steps i can take to remedy this?
 
   On Jan 16, 9:43 am, Ivan i...@heroku.com wrote:
 
Alfonso,
 
It may be something residual from the migration this morning. I have
reset the app and it looks better.
 
We are still working out small glitches as we come across them, bear
with us and continue to let us know about issues you may have with
 the
platform.
 
- Ivan
 
On Jan 16, 12:20 pm, Alfonso aadrias...@gmail.com wrote:
 
 Also having 502 Bad Gateway on
 
 appname: wwhow
 
 Something's going on: I renamed it to wwhow-dev and everything
 works.
 Rename it back to wwhow and nothing works (can't edit anymore)
 I blew away the app and reimported it , same situation.
 
 Maybe I messed it up by deleting the app?



 


--~--~-~--~~~---~--~~
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 more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: Herokugarden = 502 Bad Gateway

2009-01-19 Thread Nick VanderPyle

Bad Gateway if I view. Something went wrong if I edit.
Tried switching between production and development, but didn't help.

app: batman


On Jan 19, 10:50 am, jedc jed.christian...@gmail.com wrote:
 I'm getting a 502 when trying to view my app and a 500 when trying to
 edit it.

 I was doing some work on it shortly (and perhaps during?) the
 transition from heroku to herokugarden.  Is there any way my app might
 have gotten stuck in the move?

 Jed

 On Jan 19, 12:41 pm, Sammy Larbi sla...@gmail.com wrote:

  I had the same issue - fine after the move, but now getting 502 bad gateway
  for poundfool.com and poundfool.herokugarden.com

  Sam

  On Sun, Jan 18, 2009 at 8:37 PM, Ivan Makfinsky i...@heroku.com wrote:
   Paul,

   It's been corrected.

   - Ivan

   On Sun, Jan 18, 2009 at 7:49 AM, Paul Leader paul.lea...@gmail.comwrote:

   Hi

   I'm getting 502s for my app me-monitor as well.  It was working ok
   immediatly after the move, but now fails.

   Also, I can't save changes to files in the code editor.

   Thanks

   Paul

   On Jan 16, 7:37 pm, Ivan i...@heroku.com wrote:
Right now, we are sifting through the logs to make sure that
everything's running correctly.

You're app has been reset and it's up now.

- Ivan

On Jan 16, 12:47 pm, Alfonso aadrias...@gmail.com wrote:

 hi Ivan, thanks for the quick look, I'm still getting 502's though.

 Any steps i can take to remedy this?

 On Jan 16, 9:43 am, Ivan i...@heroku.com wrote:

  Alfonso,

  It may be something residual from the migration this morning. I 
  have
  reset the app and it looks better.

  We are still working out small glitches as we come across them, 
  bear
  with us and continue to let us know about issues you may have with
   the
  platform.

  - Ivan

  On Jan 16, 12:20 pm, Alfonso aadrias...@gmail.com wrote:

   Also having 502 Bad Gateway on

   appname: wwhow

   Something's going on: I renamed it to wwhow-dev and everything
   works.
   Rename it back to wwhow and nothing works (can't edit anymore)
   I blew away the app and reimported it , same situation.

   Maybe I messed it up by deleting the app?
--~--~-~--~~~---~--~~
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 more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: Herokugarden = 502 Bad Gateway

2009-01-19 Thread Paul Leader

Hi guys,

It's broken again.

http://me-monitor.herokugarden.com/ is returning 502.

The edit interface is showing the We're sorry, but something went
wrong. message.

Paul


On Jan 19, 2:37 am, Ivan Makfinsky i...@heroku.com wrote:
 Paul,

 It's been corrected.

 - Ivan

 On Sun, Jan 18, 2009 at 7:49 AM, Paul Leader paul.lea...@gmail.com wrote:
  Hi

  I'm getting 502s for my app me-monitor as well.  It was working ok
  immediatly after the move, but now fails.

  Also, I can't save changes to files in the code editor.

  Thanks

  Paul

  On Jan 16, 7:37 pm, Ivan i...@heroku.com wrote:
   Right now, we are sifting through the logs to make sure that
   everything's running correctly.

   You're app has been reset and it's up now.

   - Ivan

   On Jan 16, 12:47 pm, Alfonso aadrias...@gmail.com wrote:

hi Ivan, thanks for the quick look, I'm still getting 502's though.

Any steps i can take to remedy this?

On Jan 16, 9:43 am, Ivan i...@heroku.com wrote:

 Alfonso,

 It may be something residual from the migration this morning. I have
 reset the app and it looks better.

 We are still working out small glitches as we come across them, bear
 with us and continue to let us know about issues you may have with
  the
 platform.

 - Ivan

 On Jan 16, 12:20 pm, Alfonso aadrias...@gmail.com wrote:

  Also having 502 Bad Gateway on

  appname: wwhow

  Something's going on: I renamed it to wwhow-dev and everything
  works.
  Rename it back to wwhow and nothing works (can't edit anymore)
  I blew away the app and reimported it , same situation.

  Maybe I messed it up by deleting the app?
--~--~-~--~~~---~--~~
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 more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: Herokugarden = 502 Bad Gateway

2009-01-19 Thread phaenotyp

I'm having the same issue with http://edit.ersatzhelden2.herokugarden.com/
and my other applications.
Anything I can do?

On 19 Jan., 21:07, Paul Leader paul.lea...@gmail.com wrote:
 Hi guys,

 It's broken again.

 http://me-monitor.herokugarden.com/is returning 502.

 The edit interface is showing the We're sorry, but something went
 wrong. message.

 Paul

 On Jan 19, 2:37 am, Ivan Makfinsky i...@heroku.com wrote:

  Paul,

  It's been corrected.

  - Ivan

  On Sun, Jan 18, 2009 at 7:49 AM, Paul Leader paul.lea...@gmail.com wrote:
   Hi

   I'm getting 502s for my app me-monitor as well.  It was working ok
   immediatly after the move, but now fails.

   Also, I can't save changes to files in the code editor.

   Thanks

   Paul

   On Jan 16, 7:37 pm, Ivan i...@heroku.com wrote:
Right now, we are sifting through the logs to make sure that
everything's running correctly.

You're app has been reset and it's up now.

- Ivan

On Jan 16, 12:47 pm, Alfonso aadrias...@gmail.com wrote:

 hi Ivan, thanks for the quick look, I'm still getting 502's though.

 Any steps i can take to remedy this?

 On Jan 16, 9:43 am, Ivan i...@heroku.com wrote:

  Alfonso,

  It may be something residual from the migration this morning. I have
  reset the app and it looks better.

  We are still working out small glitches as we come across them, bear
  with us and continue to let us know about issues you may have with
   the
  platform.

  - Ivan

  On Jan 16, 12:20 pm, Alfonso aadrias...@gmail.com wrote:

   Also having 502 Bad Gateway on

   appname: wwhow

   Something's going on: I renamed it to wwhow-dev and everything
   works.
   Rename it back to wwhow and nothing works (can't edit anymore)
   I blew away the app and reimported it , same situation.

   Maybe I messed it up by deleting the app?
--~--~-~--~~~---~--~~
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 more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: Herokugarden = 502 Bad Gateway

2009-01-19 Thread Alfonso

Same here with app:

http://wwhow.herokugarden.com/



On Jan 19, 12:07 pm, Paul Leader paul.lea...@gmail.com wrote:
 Hi guys,

 It's broken again.

 http://me-monitor.herokugarden.com/is returning 502.

 The edit interface is showing the We're sorry, but something went
 wrong. message.

 Paul

 On Jan 19, 2:37 am, Ivan Makfinsky i...@heroku.com wrote:

  Paul,

  It's been corrected.

  - Ivan

  On Sun, Jan 18, 2009 at 7:49 AM, Paul Leader paul.lea...@gmail.com wrote:
   Hi

   I'm getting 502s for my app me-monitor as well.  It was working ok
   immediatly after the move, but now fails.

   Also, I can't save changes to files in the code editor.

   Thanks

   Paul

   On Jan 16, 7:37 pm, Ivan i...@heroku.com wrote:
Right now, we are sifting through the logs to make sure that
everything's running correctly.

You're app has been reset and it's up now.

- Ivan

On Jan 16, 12:47 pm, Alfonso aadrias...@gmail.com wrote:

 hi Ivan, thanks for the quick look, I'm still getting 502's though.

 Any steps i can take to remedy this?

 On Jan 16, 9:43 am, Ivan i...@heroku.com wrote:

  Alfonso,

  It may be something residual from the migration this morning. I have
  reset the app and it looks better.

  We are still working out small glitches as we come across them, bear
  with us and continue to let us know about issues you may have with
   the
  platform.

  - Ivan

  On Jan 16, 12:20 pm, Alfonso aadrias...@gmail.com wrote:

   Also having 502 Bad Gateway on

   appname: wwhow

   Something's going on: I renamed it to wwhow-dev and everything
   works.
   Rename it back to wwhow and nothing works (can't edit anymore)
   I blew away the app and reimported it , same situation.

   Maybe I messed it up by deleting the app?
--~--~-~--~~~---~--~~
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 more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: Herokugarden = 502 Bad Gateway

2009-01-19 Thread Paul Leader

Err, now I don't get a 502, instead I get The server for me-monitor
failed to start. Details: with an empty details block.

This is the case with both the app and the edit interface.

App: me-monitor

Paul

On Jan 19, 8:07 pm, Paul Leader paul.lea...@gmail.com wrote:
 Hi guys,

 It's broken again.

 http://me-monitor.herokugarden.com/is returning 502.

 The edit interface is showing the We're sorry, but something went
 wrong. message.

 Paul

 On Jan 19, 2:37 am, Ivan Makfinsky i...@heroku.com wrote:

  Paul,

  It's been corrected.

  - Ivan

  On Sun, Jan 18, 2009 at 7:49 AM, Paul Leader paul.lea...@gmail.com wrote:
   Hi

   I'm getting 502s for my app me-monitor as well.  It was working ok
   immediatly after the move, but now fails.

   Also, I can't save changes to files in the code editor.

   Thanks

   Paul

   On Jan 16, 7:37 pm, Ivan i...@heroku.com wrote:
Right now, we are sifting through the logs to make sure that
everything's running correctly.

You're app has been reset and it's up now.

- Ivan

On Jan 16, 12:47 pm, Alfonso aadrias...@gmail.com wrote:

 hi Ivan, thanks for the quick look, I'm still getting 502's though.

 Any steps i can take to remedy this?

 On Jan 16, 9:43 am, Ivan i...@heroku.com wrote:

  Alfonso,

  It may be something residual from the migration this morning. I have
  reset the app and it looks better.

  We are still working out small glitches as we come across them, bear
  with us and continue to let us know about issues you may have with
   the
  platform.

  - Ivan

  On Jan 16, 12:20 pm, Alfonso aadrias...@gmail.com wrote:

   Also having 502 Bad Gateway on

   appname: wwhow

   Something's going on: I renamed it to wwhow-dev and everything
   works.
   Rename it back to wwhow and nothing works (can't edit anymore)
   I blew away the app and reimported it , same situation.

   Maybe I messed it up by deleting the app?
--~--~-~--~~~---~--~~
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 more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: Herokugarden = 502 Bad Gateway

2009-01-18 Thread Steve M.

I'm getting the error We're sorry, but something went wrong... when
trying to edit: statuswin

It started happening after I uploaded a gzipped tarball for Mephisto.
The tarball didn't have the correct directory structure (e.g. files/
mephisto-fubarxyz123/app/...). It was the raw archive downloaded from
their site. (I just wanted to see if Heroku would auto-recognize the
correct app structure from the tar)

So when that killed the app and the ability to edit, I destroyed it
and started new with a new app of the same name statuswin. Then that
one won't let me edit either. I uploaded a more appropriate tarball,
though.

If I could have done more troubleshooting on my own I would have, but
I assume it's something on the server side that I can't do anything
about from my end.

Anyway, if you need any further info let me know. Feel free to delete
or reset anything if you need to. There is nothing of value there yet
in statuswin.

Thanks,
Steve


On Jan 16, 11:37 am, Ivan i...@heroku.com wrote:
 Right now, we are sifting through the logs to make sure that
 everything's running correctly.

 You're app has been reset and it's up now.

 - Ivan

 On Jan 16, 12:47 pm, Alfonso aadrias...@gmail.com wrote:

  hi Ivan, thanks for the quick look, I'm still getting 502's though.

  Any steps i can take to remedy this?

  On Jan 16, 9:43 am, Ivan i...@heroku.com wrote:

   Alfonso,

   It may be something residual from the migration this morning. I have
   reset the app and it looks better.

   We are still working out small glitches as we come across them, bear
   with us and continue to let us know about issues you may have with the
   platform.

   - Ivan

   On Jan 16, 12:20 pm, Alfonso aadrias...@gmail.com wrote:

Also having 502 Bad Gateway on

appname: wwhow

Something's going on: I renamed it to wwhow-dev and everything works.
Rename it back to wwhow and nothing works (can't edit anymore)
I blew away the app and reimported it , same situation.

Maybe I messed it up by deleting the app?
--~--~-~--~~~---~--~~
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 more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: Herokugarden = 502 Bad Gateway

2009-01-18 Thread Ivan Makfinsky
Paul,

It's been corrected.

- Ivan

On Sun, Jan 18, 2009 at 7:49 AM, Paul Leader paul.lea...@gmail.com wrote:

 Hi

 I'm getting 502s for my app me-monitor as well.  It was working ok
 immediatly after the move, but now fails.

 Also, I can't save changes to files in the code editor.

 Thanks

 Paul

 On Jan 16, 7:37 pm, Ivan i...@heroku.com wrote:
  Right now, we are sifting through the logs to make sure that
  everything's running correctly.
 
  You're app has been reset and it's up now.
 
  - Ivan
 
  On Jan 16, 12:47 pm, Alfonso aadrias...@gmail.com wrote:
 
   hi Ivan, thanks for the quick look, I'm still getting 502's though.
 
   Any steps i can take to remedy this?
 
   On Jan 16, 9:43 am, Ivan i...@heroku.com wrote:
 
Alfonso,
 
It may be something residual from the migration this morning. I have
reset the app and it looks better.
 
We are still working out small glitches as we come across them, bear
with us and continue to let us know about issues you may have with
 the
platform.
 
- Ivan
 
On Jan 16, 12:20 pm, Alfonso aadrias...@gmail.com wrote:
 
 Also having 502 Bad Gateway on
 
 appname: wwhow
 
 Something's going on: I renamed it to wwhow-dev and everything
 works.
 Rename it back to wwhow and nothing works (can't edit anymore)
 I blew away the app and reimported it , same situation.
 
 Maybe I messed it up by deleting the app?


--~--~-~--~~~---~--~~
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 more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: Herokugarden = 502 Bad Gateway

2009-01-16 Thread David

Got the same issue.

/David

On Jan 16, 10:43 am, DAZ daz4...@gmail.com wrote:
 Since the transition, all my apps don't work and just come up with the
 502 Bad Gateway message. It is very frustrating not being able to work
 on or view an app. Will they be fixed soon?

 Also, when will it be possible to sign up for the production platform?

 cheers,

 DAZ
--~--~-~--~~~---~--~~
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 more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: Herokugarden = 502 Bad Gateway

2009-01-16 Thread Ivan

Folks,

Thanks for your patience.

The transition took longer than planned. Everything should be working
now.

Let me know if there are any issues with your apps.

- Ivan

On Jan 16, 7:03 am, Sammy Larbi sla...@gmail.com wrote:
 Same since changing my CNAME record to point to herokugarden

 On Fri, Jan 16, 2009 at 3:43 AM, DAZ daz4...@gmail.com wrote:

  Since the transition, all my apps don't work and just come up with the
  502 Bad Gateway message. It is very frustrating not being able to work
  on or view an app. Will they be fixed soon?

  Also, when will it be possible to sign up for the production platform?

  cheers,

  DAZ
--~--~-~--~~~---~--~~
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 more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: Herokugarden = 502 Bad Gateway

2009-01-16 Thread Sammy Larbi
I'm now getting (if I may say, very cool looking) Maintenance in progress
page up.

On Fri, Jan 16, 2009 at 8:44 AM, Ivan i...@heroku.com wrote:


 Folks,

 Thanks for your patience.

 The transition took longer than planned. Everything should be working
 now.

 Let me know if there are any issues with your apps.

 - Ivan

 On Jan 16, 7:03 am, Sammy Larbi sla...@gmail.com wrote:
  Same since changing my CNAME record to point to herokugarden
 
  On Fri, Jan 16, 2009 at 3:43 AM, DAZ daz4...@gmail.com wrote:
 
   Since the transition, all my apps don't work and just come up with the
   502 Bad Gateway message. It is very frustrating not being able to work
   on or view an app. Will they be fixed soon?
 
   Also, when will it be possible to sign up for the production platform?
 
   cheers,
 
   DAZ
 


--~--~-~--~~~---~--~~
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 more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: Herokugarden = 502 Bad Gateway

2009-01-16 Thread Sammy Larbi
Upon reload it's now gone and my app shows.

Thanks for the rapid progress.

On Fri, Jan 16, 2009 at 8:47 AM, Sammy Larbi sla...@gmail.com wrote:

 I'm now getting (if I may say, very cool looking) Maintenance in progress
 page up.

 On Fri, Jan 16, 2009 at 8:44 AM, Ivan i...@heroku.com wrote:


 Folks,

 Thanks for your patience.

 The transition took longer than planned. Everything should be working
 now.

 Let me know if there are any issues with your apps.

 - Ivan

 On Jan 16, 7:03 am, Sammy Larbi sla...@gmail.com wrote:
  Same since changing my CNAME record to point to herokugarden
 
  On Fri, Jan 16, 2009 at 3:43 AM, DAZ daz4...@gmail.com wrote:
 
   Since the transition, all my apps don't work and just come up with the
   502 Bad Gateway message. It is very frustrating not being able to work
   on or view an app. Will they be fixed soon?
 
   Also, when will it be possible to sign up for the production platform?
 
   cheers,
 
   DAZ
 



--~--~-~--~~~---~--~~
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 more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: Herokugarden = 502 Bad Gateway

2009-01-16 Thread DAZ

Thanks for sorting this Ivan!

cheers,

DAZ

On Jan 16, 2:47 pm, Sammy Larbi sla...@gmail.com wrote:
 Upon reload it's now gone and my app shows.

 Thanks for the rapid progress.

 On Fri, Jan 16, 2009 at 8:47 AM, Sammy Larbi sla...@gmail.com wrote:
  I'm now getting (if I may say, very cool looking) Maintenance in progress
  page up.

  On Fri, Jan 16, 2009 at 8:44 AM, Ivan i...@heroku.com wrote:

  Folks,

  Thanks for your patience.

  The transition took longer than planned. Everything should be working
  now.

  Let me know if there are any issues with your apps.

  - Ivan

  On Jan 16, 7:03 am, Sammy Larbi sla...@gmail.com wrote:
   Same since changing my CNAME record to point to herokugarden

   On Fri, Jan 16, 2009 at 3:43 AM, DAZ daz4...@gmail.com wrote:

Since the transition, all my apps don't work and just come up with the
502 Bad Gateway message. It is very frustrating not being able to work
on or view an app. Will they be fixed soon?

Also, when will it be possible to sign up for the production platform?

cheers,

DAZ
--~--~-~--~~~---~--~~
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 more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: Herokugarden = 502 Bad Gateway

2009-01-16 Thread Adam Kittelson

My app, http://scriptrequest.herokugarden.com/, is getting a 502 bad gateway.

--~--~-~--~~~---~--~~
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 more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: Herokugarden = 502 Bad Gateway

2009-01-16 Thread Ivan

Adam,

We are working through a handful of issues and most of them have
already been corrected.

Your app asks me for a http pw, it looks like it's working.

- Ivan

On Jan 16, 10:56 am, Adam Kittelson adam.kittel...@apathydrive.com
wrote:
 My app,http://scriptrequest.herokugarden.com/, is getting a 502 bad gateway.
--~--~-~--~~~---~--~~
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 more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: Herokugarden = 502 Bad Gateway

2009-01-16 Thread Alfonso

Also having 502 Bad Gateway on

appname: wwhow

Something's going on: I renamed it to wwhow-dev and everything works.
Rename it back to wwhow and nothing works (can't edit anymore)
I blew away the app and reimported it , same situation.

Maybe I messed it up by deleting the app?
--~--~-~--~~~---~--~~
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 more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: Herokugarden = 502 Bad Gateway

2009-01-16 Thread Ivan

Alfonso,

It may be something residual from the migration this morning. I have
reset the app and it looks better.

We are still working out small glitches as we come across them, bear
with us and continue to let us know about issues you may have with the
platform.

- Ivan

On Jan 16, 12:20 pm, Alfonso aadrias...@gmail.com wrote:
 Also having 502 Bad Gateway on

 appname: wwhow

 Something's going on: I renamed it to wwhow-dev and everything works.
 Rename it back to wwhow and nothing works (can't edit anymore)
 I blew away the app and reimported it , same situation.

 Maybe I messed it up by deleting the app?
--~--~-~--~~~---~--~~
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 more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: Herokugarden = 502 Bad Gateway

2009-01-16 Thread Alfonso

hi Ivan, thanks for the quick look, I'm still getting 502's though.

Any steps i can take to remedy this?

On Jan 16, 9:43 am, Ivan i...@heroku.com wrote:
 Alfonso,

 It may be something residual from the migration this morning. I have
 reset the app and it looks better.

 We are still working out small glitches as we come across them, bear
 with us and continue to let us know about issues you may have with the
 platform.

 - Ivan

 On Jan 16, 12:20 pm, Alfonso aadrias...@gmail.com wrote:

  Also having 502 Bad Gateway on

  appname: wwhow

  Something's going on: I renamed it to wwhow-dev and everything works.
  Rename it back to wwhow and nothing works (can't edit anymore)
  I blew away the app and reimported it , same situation.

  Maybe I messed it up by deleting the app?
--~--~-~--~~~---~--~~
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 more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: Herokugarden = 502 Bad Gateway

2009-01-16 Thread Ivan

Tomas,

Please send the name of the app or apps you need assistance with to
feedb...@heroku.com.

Thanks,

- Ivan

On Jan 16, 12:13 pm, XTCH tomas.cha...@gmail.com wrote:
 I also have problems with 502 Bad Gateway. When I create new
 application, I have this error on application and same at editing
 interface.
 After some time, it works for minutes but when I update it or do any
 little modification then this error goes back :(

 XTCH
--~--~-~--~~~---~--~~
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 more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: Herokugarden = 502 Bad Gateway

2009-01-16 Thread Adam Kittelson

Thanks for checking into it Ivan. Asking for an http pw is the
expected behavior when it's working, I'm still getting 502 though
(checked on a couple different browsers).

-Adam

On Fri, Jan 16, 2009 at 10:56 AM, Ivan i...@heroku.com wrote:

 Adam,

 We are working through a handful of issues and most of them have
 already been corrected.

 Your app asks me for a http pw, it looks like it's working.

 - Ivan

 On Jan 16, 10:56 am, Adam Kittelson adam.kittel...@apathydrive.com
 wrote:
 My app,http://scriptrequest.herokugarden.com/, is getting a 502 bad gateway.
 


--~--~-~--~~~---~--~~
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 more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: Herokugarden = 502 Bad Gateway

2009-01-16 Thread Adam Kittelson

Scratch that, working now.

On Fri, Jan 16, 2009 at 1:07 PM, Adam Kittelson
adam.kittel...@apathydrive.com wrote:
 Thanks for checking into it Ivan. Asking for an http pw is the
 expected behavior when it's working, I'm still getting 502 though
 (checked on a couple different browsers).

 -Adam

 On Fri, Jan 16, 2009 at 10:56 AM, Ivan i...@heroku.com wrote:

 Adam,

 We are working through a handful of issues and most of them have
 already been corrected.

 Your app asks me for a http pw, it looks like it's working.

 - Ivan

 On Jan 16, 10:56 am, Adam Kittelson adam.kittel...@apathydrive.com
 wrote:
 My app,http://scriptrequest.herokugarden.com/, is getting a 502 bad gateway.
 



--~--~-~--~~~---~--~~
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 more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: Herokugarden = 502 Bad Gateway

2009-01-16 Thread Ivan

Right now, we are sifting through the logs to make sure that
everything's running correctly.

You're app has been reset and it's up now.

- Ivan

On Jan 16, 12:47 pm, Alfonso aadrias...@gmail.com wrote:
 hi Ivan, thanks for the quick look, I'm still getting 502's though.

 Any steps i can take to remedy this?

 On Jan 16, 9:43 am, Ivan i...@heroku.com wrote:

  Alfonso,

  It may be something residual from the migration this morning. I have
  reset the app and it looks better.

  We are still working out small glitches as we come across them, bear
  with us and continue to let us know about issues you may have with the
  platform.

  - Ivan

  On Jan 16, 12:20 pm, Alfonso aadrias...@gmail.com wrote:

   Also having 502 Bad Gateway on

   appname: wwhow

   Something's going on: I renamed it to wwhow-dev and everything works.
   Rename it back to wwhow and nothing works (can't edit anymore)
   I blew away the app and reimported it , same situation.

   Maybe I messed it up by deleting the app?
--~--~-~--~~~---~--~~
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 more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



502 Bad Gateway

2008-11-30 Thread ...Paul

Don't know when it started happening, but the app bluemap is now giving 
me the 502 Bad Gateway error.  This must be fairly recent, I checked the 
app when people started reporting the issue, and it was fine.

...Paul

 ** ...Paul, [EMAIL PROTECTED], Insane Engineer **
  ** Visit Project Galactic Guide http://www.galactic-guide.com/ **
   Hell, there are no rules here -- we're trying
 to accomplish something. -- Thomas Edison

--~--~-~--~~~---~--~~
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, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



502 Bad Gateway, nginx/0.6.32

2008-11-27 Thread ChasManRors

I have not been able to access http://gamestory.heroku.com/ for about
1.5 weeks.  Though I have not had problems with others at 
http://heroku.com/myapps.
What is the best way for me to get this up again?

Thank you in advance,

Grateful User Charles






--~--~-~--~~~---~--~~
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, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: 502 Bad Gateway, nginx/0.6.32

2008-11-27 Thread Russell Snow
I have found that he bad gateway sometimes goes away if you click through to
it from your heroku dashboard.

On Thu, Nov 27, 2008 at 7:57 AM, ChasManRors [EMAIL PROTECTED] wrote:


 I have not been able to access http://gamestory.heroku.com/ for about
 1.5 weeks.  Though I have not had problems with others at
 http://heroku.com/myapps.
 What is the best way for me to get this up again?

 Thank you in advance,

 Grateful User Charles






 


--~--~-~--~~~---~--~~
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, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: internal server error 502 Bad Gateway

2008-11-14 Thread Chris O'Sullivan
Fugheddaboutit - it's all better now.

2008/11/14 Chris O'Sullivan [EMAIL PROTECTED]

 I'm currently having this same issue..any ideas?

 whatiwantforxmas.heroku.com

 2008/11/13 Adam Wiggins [EMAIL PROTECTED]


 Try 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 PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



internal server error 502 Bad Gateway

2008-11-12 Thread Nigel

I get 502

Bad Gateway
---
nginx/0.6.32

When I try to access the edit interface for my site.
tightfit.heroku.com

git push is getting

Internal server error
fatal: The remote end hung up unexpectedly

Any ideas?


--~--~-~--~~~---~--~~
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, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: 502 bad gateway error

2008-10-28 Thread Alfonso

I have tried recreating the app (it runs fine locally BTW) ,
reverting, importing into a new app, all the same results

log says everythings AOK

no matter what I do everything lands on 502.

am I banned from heroku?
--~--~-~--~~~---~--~~
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, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: 502 bad gateway error

2008-10-27 Thread Alfonso

Well that solution didn't last very long. I'm back to 502s now.

On Oct 26, 3:32 pm, Alfonso [EMAIL PROTECTED] wrote:
 Found a solution, renamed the application, and errors went away.
 unfortunately i can't rename it back without getting into the same
 mess.

 On Oct 26, 3:10 pm, Alfonso [EMAIL PROTECTED] wrote:

  i forgot to add that i'm getting these errors from different
  computers. and cookies have not affected the outcome.
--~--~-~--~~~---~--~~
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, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: 502 bad gateway error

2008-10-26 Thread Alfonso

appname:wwhow

i can edit , and have been able to edit, export, import, commit and
restore with no 502.

I also used to have intermittent 502s when viewing the app.

Soon after, the app comes up with no assets. css, images and
javascript lib not found anywhere.
in the many things i tried i may have corrupt the git data.. not
sure.

Now It launches into a 502 error page.

I have another app running with no problems using my account.



On Oct 24, 5:40 pm, DyingToLearn [EMAIL PROTECTED] wrote:
 Peter Marreck wrote:
  , I think I found a solution to this (unless it magically got fixed at
  the same time as I found my solution).

  You have to wipe your browser cookies

 Mine is fixed now, and I didn't wipe any of my cookies. When it was
 broken, I tried in two browsers (Firefox 3 and Flock, which is based
 on Firefox 2). So I guess cookies weren't my problem.
--~--~-~--~~~---~--~~
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, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: 502 bad gateway error

2008-10-26 Thread Alfonso

i forgot to add that i'm getting these errors from different
computers. and cookies have not affected the outcome.
--~--~-~--~~~---~--~~
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, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: 502 bad gateway error

2008-10-26 Thread Alfonso

Found a solution, renamed the application, and errors went away.
unfortunately i can't rename it back without getting into the same
mess.



On Oct 26, 3:10 pm, Alfonso [EMAIL PROTECTED] wrote:
 i forgot to add that i'm getting these errors from different
 computers. and cookies have not affected the outcome.
--~--~-~--~~~---~--~~
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, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: 502 bad gateway error

2008-10-24 Thread Alfonso

bump .. getting 502s all over the place

app name : wwhow

On Oct 23, 12:28 pm, Peter Marreck [EMAIL PROTECTED] wrote:
 Still happening. What happens is sometimes I won't get Bad Gateway,
 but I won't be able to open any files in the viewer- clicking does
 nothing. So I suspect the AJAX call is also getting a Bad Gateway in
 those situations.

 I tried it from home and it seems to work fine. I then suspected
 cookies so I deleted all cookies having anything to do with heroku
 at work and restarted the browser and the problem recurred. This is
 getting to be a pain as I was looking forward to demoing something at
 work, from work...

 All the same versions of Firefox with a handful of dev-type plugins.

 Peter

 On Oct 22, 2:50 pm, Peter Marreck [EMAIL PROTECTED] wrote:

  I am having the same thing happen with my app (but only when trying to
  edit it; the app itself still seems up).

  app name: keaneiphonewidget

  -Peter

  On Oct 22, 12:30 pm, Alfonso [EMAIL PROTECTED] wrote:

   app name: wwhow

   this has been intermittently happening since last week, now it pretty
   much happens on any controller except the default

   what can i do to avoid this problem?
--~--~-~--~~~---~--~~
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, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: 502 bad gateway error

2008-10-24 Thread Peter Marreck

I think I found a solution to this (unless it magically got fixed at
the same time as I found my solution).

You have to wipe your browser cookies, unfortunately, and restart the
browser. I tried deleting just the ones with heroku in the key but
that didn't work... I had to wipe ALL cookies. I also disabled pretty
much all Firefox addons just to make sure. (I haven't re-enabled those
yet.)

This is consistent with that kind of insidious error that happens when
your cookie state is out of date with what the back end expects.
Heroku must have changed on the back end last week in some way that
broke when it was fed our old cookies. Or so I surmise.

Perhaps a Heroku dev can chime in with which other cookies in
particular (without heroku in the name) might be affected by this,
so that people who are cookie micromanagers won't have to endure too
much extra pain. I'm not even 100% sure my theory is correct, but
everything is working now again after I performed that step.

Hope this helps someone else with the 502 Bad Gateway errors.

-Peter Marreck

On Oct 24, 2:27 pm, Alfonso [EMAIL PROTECTED] wrote:
 bump .. getting 502s all over the place

 app name : wwhow

 On Oct 23, 12:28 pm, Peter Marreck [EMAIL PROTECTED] wrote:

  Still happening. What happens is sometimes I won't get Bad Gateway,
  but I won't be able to open any files in the viewer- clicking does
  nothing. So I suspect the AJAX call is also getting a Bad Gateway in
  those situations.

  I tried it from home and it seems to work fine. I then suspected
  cookies so I deleted all cookies having anything to do with heroku
  at work and restarted the browser and the problem recurred. This is
  getting to be a pain as I was looking forward to demoing something at
  work, from work...

  All the same versions of Firefox with a handful of dev-type plugins.

  Peter

  On Oct 22, 2:50 pm, Peter Marreck [EMAIL PROTECTED] wrote:

   I am having the same thing happen with my app (but only when trying to
   edit it; the app itself still seems up).

   app name: keaneiphonewidget

   -Peter

   On Oct 22, 12:30 pm, Alfonso [EMAIL PROTECTED] wrote:

app name: wwhow

this has been intermittently happening since last week, now it pretty
much happens on any controller except the default

what can i do to avoid this problem?
--~--~-~--~~~---~--~~
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, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: 502 bad gateway error

2008-10-24 Thread Corey Haines
That worked for the error I was getting when trying to edit. Awesome!
Thanks, Peter! You rock!

-Corey

On Fri, Oct 24, 2008 at 6:15 PM, Peter Marreck [EMAIL PROTECTED] wrote:


 I think I found a solution to this (unless it magically got fixed at
 the same time as I found my solution).

 You have to wipe your browser cookies, unfortunately, and restart the
 browser. I tried deleting just the ones with heroku in the key but
 that didn't work... I had to wipe ALL cookies. I also disabled pretty
 much all Firefox addons just to make sure. (I haven't re-enabled those
 yet.)

 This is consistent with that kind of insidious error that happens when
 your cookie state is out of date with what the back end expects.
 Heroku must have changed on the back end last week in some way that
 broke when it was fed our old cookies. Or so I surmise.

 Perhaps a Heroku dev can chime in with which other cookies in
 particular (without heroku in the name) might be affected by this,
 so that people who are cookie micromanagers won't have to endure too
 much extra pain. I'm not even 100% sure my theory is correct, but
 everything is working now again after I performed that step.

 Hope this helps someone else with the 502 Bad Gateway errors.

 -Peter Marreck

 On Oct 24, 2:27 pm, Alfonso [EMAIL PROTECTED] wrote:
  bump .. getting 502s all over the place
 
  app name : wwhow
 
  On Oct 23, 12:28 pm, Peter Marreck [EMAIL PROTECTED] wrote:
 
   Still happening. What happens is sometimes I won't get Bad Gateway,
   but I won't be able to open any files in the viewer- clicking does
   nothing. So I suspect the AJAX call is also getting a Bad Gateway in
   those situations.
 
   I tried it from home and it seems to work fine. I then suspected
   cookies so I deleted all cookies having anything to do with heroku
   at work and restarted the browser and the problem recurred. This is
   getting to be a pain as I was looking forward to demoing something at
   work, from work...
 
   All the same versions of Firefox with a handful of dev-type plugins.
 
   Peter
 
   On Oct 22, 2:50 pm, Peter Marreck [EMAIL PROTECTED] wrote:
 
I am having the same thing happen with my app (but only when trying
 to
edit it; the app itself still seems up).
 
app name: keaneiphonewidget
 
-Peter
 
On Oct 22, 12:30 pm, Alfonso [EMAIL PROTECTED] wrote:
 
 app name: wwhow
 
 this has been intermittently happening since last week, now it
 pretty
 much happens on any controller except the default
 
 what can i do to avoid this problem?
 



-- 
http://www.coreyhaines.com
The Internet's Premiere source of information about Corey Haines

--~--~-~--~~~---~--~~
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, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: 502 bad gateway error

2008-10-24 Thread DyingToLearn

Peter Marreck wrote:
 I think I found a solution to this (unless it magically got fixed at
 the same time as I found my solution).

 You have to wipe your browser cookies

Mine is fixed now, and I didn't wipe any of my cookies. When it was
broken, I tried in two browsers (Firefox 3 and Flock, which is based
on Firefox 2). So I guess cookies weren't my problem.
--~--~-~--~~~---~--~~
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, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: 502 bad gateway error

2008-10-23 Thread Peter Marreck

Still happening. What happens is sometimes I won't get Bad Gateway,
but I won't be able to open any files in the viewer- clicking does
nothing. So I suspect the AJAX call is also getting a Bad Gateway in
those situations.

I tried it from home and it seems to work fine. I then suspected
cookies so I deleted all cookies having anything to do with heroku
at work and restarted the browser and the problem recurred. This is
getting to be a pain as I was looking forward to demoing something at
work, from work...

All the same versions of Firefox with a handful of dev-type plugins.

Peter

On Oct 22, 2:50 pm, Peter Marreck [EMAIL PROTECTED] wrote:
 I am having the same thing happen with my app (but only when trying to
 edit it; the app itself still seems up).

 app name: keaneiphonewidget

 -Peter

 On Oct 22, 12:30 pm, Alfonso [EMAIL PROTECTED] wrote:

  app name: wwhow

  this has been intermittently happening since last week, now it pretty
  much happens on any controller except the default

  what can i do to avoid this problem?
--~--~-~--~~~---~--~~
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, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



502 bad gateway error

2008-10-22 Thread Alfonso

app name: wwhow

this has been intermittently happening since last week, now it pretty
much happens on any controller except the default

what can i do to avoid this problem?
--~--~-~--~~~---~--~~
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, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



HELP! Getting 502 Bad Gateway from nginx all of a sudden :'(

2008-10-14 Thread Tom Medhurst

Hi Guys

Yesterday, for some reason (the code hasn't changed for over a week!)
when I'm navigating around my deployed rails app, I get 502 Bad
Gateway from nginx.

I added some whitespace to the environment.rb file and redeployed it
to force a app restart, but that doesn't seem to have done anything.

I have a domain name pointing to the app (site.groopi.co.uk) but this
502 error happens when I access the site direct from my heroku
subdomain (groopi.heroku.com)

Can anyone think of a reaosn why I'm getting this?

Many Thanks
Tom Medhurst
--~--~-~--~~~---~--~~
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, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: 502 Bad Gateway

2008-10-07 Thread Ivan

There was a routing issue on our side.

- Ivan

On Oct 6, 6:06 pm, DyingToLearn [EMAIL PROTECTED] wrote:
 Ivan wrote:
  All of the apps named in this thread have been fixed.

 Any word on why they were down and how we can avoid it in the future?

 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 options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: 502 Bad Gateway

2008-10-07 Thread Ivan

This app is fixed now.

- Ivan

On Oct 7, 12:12 am, Alfonso [EMAIL PROTECTED] wrote:
 update, I'm getting an app restart now instead of the 502, which ends
 in nowhere.

 any clues?

 App name :wwhow
--~--~-~--~~~---~--~~
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, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: 502 Bad Gateway

2008-10-06 Thread Antoine

Me too !

constantin.heroku.com
constantin-website.heroku.com

On 6 oct, 08:28, giorgio [EMAIL PROTECTED] wrote:
 I get 502 bad gateway on my app oypoints

 If I try to edit code I get the sorry something went wrong message.

 I has been going up and down intermittantly over the last couple of
 days.

 Very frustrating as I dont know what to tell people who complain to me
 that the site is down.

 Cheers
 George
--~--~-~--~~~---~--~~
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, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: 502 Bad Gateway

2008-10-06 Thread waldo

Another.
App name: meltingfood
--~--~-~--~~~---~--~~
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, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: 502 Bad Gateway

2008-10-06 Thread Tobin Juday
App stately is down as well, no pushes for weeks.
Tobin

On Mon, Oct 6, 2008 at 7:21 AM, waldo [EMAIL PROTECTED] wrote:


 Another.
 App name: meltingfood
 


--~--~-~--~~~---~--~~
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, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: 502 Bad Gateway

2008-10-06 Thread Andyroo2000

I'm also getting 502 Bad Gateway errors again, after installing a
plugin through the web interface.

I then reverted to a working snapshot, but still 502 Bad Gateway.

My app is foodstalker.com

Now, when trying to login to Heroku, I get a 504 Gateway Time-Out.

Thanks,
Andrew


On Oct 5, 9:18 pm, DyingToLearn [EMAIL PROTECTED] wrote:
 Hi,

 I am getting 502 Bad Gateway forhttp://cebu.heroku.com/

 The app has been working, and I hadn't push any changes since Sept
 25th. I think it stopped working sometime in the last 24 hours.

 I also get an error on this pagehttp://edit.cebu.heroku.com/and when
 I try to export data/code (we're sorry something went wrong...).

 I tried to add whitespace environment.rb to force a reload. So I did
 that on my local git repo and then pushed the change. That didn't fix
 it.
 I did notice that rake was upset about a cucumber dependency, so I
 switched cucumber from being a submodule to being directly in the
 repo. That got rid of rake's error, but it didn't solve my problem.

 Help!! I'm out of options to try to fix this. I can't get at the logs,
 and I'm getting no details with the error messages.
--~--~-~--~~~---~--~~
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, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: 502 Bad Gateway

2008-10-06 Thread Julian Burgess

Me too, is there a general problem with Amazon EC2?

On Oct 6, 1:33 pm, Tobin Juday [EMAIL PROTECTED] wrote:
 App stately is down as well, no pushes for weeks.
 Tobin

 On Mon, Oct 6, 2008 at 7:21 AM, waldo [EMAIL PROTECTED] wrote:

  Another.
  App name: meltingfood
--~--~-~--~~~---~--~~
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, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: 502 Bad Gateway

2008-10-06 Thread Styledev

Another.
App Name: Inksaint
--~--~-~--~~~---~--~~
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, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: 502 Bad Gateway

2008-10-06 Thread morgoth

Same problem here.
--~--~-~--~~~---~--~~
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, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: 502 Bad Gateway

2008-10-06 Thread Ivan

All of the apps named in this thread have been fixed.

On Oct 6, 10:34 am, Styledev [EMAIL PROTECTED] wrote:
 Another.
 App Name: Inksaint
--~--~-~--~~~---~--~~
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, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: 502 Bad Gateway

2008-10-06 Thread DyingToLearn

Ivan wrote:
 All of the apps named in this thread have been fixed.

Any word on why they were down and how we can avoid it in the future?

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 options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: 502 Bad Gateway

2008-10-06 Thread Alfonso

can you add a fix for

App Name: wwhow

On Oct 6, 3:06 pm, DyingToLearn [EMAIL PROTECTED] wrote:
 Ivan wrote:
  All of the apps named in this thread have been fixed.

 Any word on why they were down and how we can avoid it in the future?

 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 options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: 502 Bad Gateway

2008-10-06 Thread Alfonso


update, I'm getting an app restart now instead of the 502, which ends
in nowhere.

any clues?

App name :wwhow


--~--~-~--~~~---~--~~
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, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



502 Bad Gateway

2008-10-05 Thread DyingToLearn

Hi,

I am getting 502 Bad Gateway for http://cebu.heroku.com/

The app has been working, and I hadn't push any changes since Sept
25th. I think it stopped working sometime in the last 24 hours.

I also get an error on this page http://edit.cebu.heroku.com/ and when
I try to export data/code (we're sorry something went wrong...).

I tried to add whitespace environment.rb to force a reload. So I did
that on my local git repo and then pushed the change. That didn't fix
it.
I did notice that rake was upset about a cucumber dependency, so I
switched cucumber from being a submodule to being directly in the
repo. That got rid of rake's error, but it didn't solve my problem.

Help!! I'm out of options to try to fix this. I can't get at the logs,
and I'm getting no details with the error messages.
--~--~-~--~~~---~--~~
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, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



502 Bad Gateway

2008-08-27 Thread flag

I get 502 Bad Gateway when trying to run/view my app, but
editing appears to work

untitled-2fbd16.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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: 502 Bad Gateway

2008-07-21 Thread paradigmshift

Hey James, thanks for the info and awesome service... Took Amazon
forever to get back up and running. They've finally got things working
according to their site but am now getting Internal Server Error in
both view and edit of apps. Possibly due to something being thrown off
from Amazon's down time?

Either way wanted to bring it to your attention. Thanks Cheers



On Jul 20, 9:59 am, James Lindenbaum [EMAIL PROTECTED] wrote:
 Amazon is experiencing a partial outage right now (for the last 25
 minutes or so), which is affecting our service.  Most 504 errors are
 due to this Amazon outage.  We are investigating.

 http://status.aws.amazon.com/

 On Jul 20, 2008, at 9:49 AM, JamesDS wrote:



  Yes, I just logged onto my Heroku app about 5 minutes ago (17:37 GMT)
  and got a 504 Gateway Time-out message.  As can be seen from my posts
  above, I was also victim of the 502 error.  So current status is that
  both apps (jamesds, jamesds1) cannot be edited, and nether can they be
  viewed (unlike the 502 error where they could be viewed but not
  edited).  It's unfortunate, because it was working great last night
  after you posted, Adam!

  On Jul 20, 5:35 pm, paradigmshift [EMAIL PROTECTED] wrote:
  The last 2 days I was also experiencing the 502 Error when trying to
  edit.

  Today however I'm experiencing a 504 Gateway Time-out error when
  trying to view or edit any of my apps... Is anyone else experiencing
  this?

  On Jul 20, 6:12 am, Brian [EMAIL PROTECTED] wrote:

  Had this problem yesterday as well, but appears fixed now.  That
  said,
  I get an error when trying to add a new member to the project (and
  they never get email).  Project name raidtrack.

  Brian- Hide quoted text -

  - Show quoted text -
--~--~-~--~~~---~--~~
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, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: 502 Bad Gateway

2008-07-21 Thread JamesDS

Brilliant, thanks for keeping us informed!

On Jul 21, 1:44 am, James Lindenbaum [EMAIL PROTECTED] wrote:
 Amazon's S3 is back up (after 8 hours), and appears to be stable.  
 Heroku services should all be operating normally now.

 On Jul 20, 2008, at 5:31 PM, paradigmshift wrote:





  Hey James, thanks for the info and awesome service... Took Amazon
  forever to get back up and running. They've finally got things working
  according to their site but am now getting Internal Server Error in
  both view and edit of apps. Possibly due to something being thrown off
  from Amazon's down time?

  Either way wanted to bring it to your attention. Thanks Cheers

  On Jul 20, 9:59 am, James Lindenbaum [EMAIL PROTECTED] wrote:
  Amazon is experiencing a partial outage right now (for the last 25
  minutes or so), which is affecting our service.  Most 504 errors are
  due to this Amazon outage.  We are investigating.

 http://status.aws.amazon.com/

  On Jul 20, 2008, at 9:49 AM, JamesDS wrote:

  Yes, I just logged onto my Heroku app about 5 minutes ago (17:37  
  GMT)
  and got a 504 Gateway Time-out message.  As can be seen from my  
  posts
  above, I was also victim of the 502 error.  So current status is  
  that
  both apps (jamesds, jamesds1) cannot be edited, and nether can  
  they be
  viewed (unlike the 502 error where they could be viewed but not
  edited).  It's unfortunate, because it was working great last night
  after you posted, Adam!

  On Jul 20, 5:35 pm, paradigmshift [EMAIL PROTECTED] wrote:
  The last 2 days I was also experiencing the 502 Error when trying  
  to
  edit.

  Today however I'm experiencing a 504 Gateway Time-out error when
  trying to view or edit any of my apps... Is anyone else  
  experiencing
  this?

  On Jul 20, 6:12 am, Brian [EMAIL PROTECTED] wrote:

  Had this problem yesterday as well, but appears fixed now.  That
  said,
  I get an error when trying to add a new member to the project (and
  they never get email).  Project name raidtrack.

  Brian- Hide quoted text -

  - Show quoted text -- Hide quoted text -

 - Show quoted text -
--~--~-~--~~~---~--~~
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, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: 502 Bad Gateway

2008-07-20 Thread Brian

Had this problem yesterday as well, but appears fixed now.  That said,
I get an error when trying to add a new member to the project (and
they never get email).  Project name raidtrack.

Brian
--~--~-~--~~~---~--~~
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, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: 502 Bad Gateway

2008-07-20 Thread JamesDS

Yes, I just logged onto my Heroku app about 5 minutes ago (17:37 GMT)
and got a 504 Gateway Time-out message.  As can be seen from my posts
above, I was also victim of the 502 error.  So current status is that
both apps (jamesds, jamesds1) cannot be edited, and nether can they be
viewed (unlike the 502 error where they could be viewed but not
edited).  It's unfortunate, because it was working great last night
after you posted, Adam!

On Jul 20, 5:35 pm, paradigmshift [EMAIL PROTECTED] wrote:
 The last 2 days I was also experiencing the 502 Error when trying to
 edit.

 Today however I'm experiencing a 504 Gateway Time-out error when
 trying to view or edit any of my apps... Is anyone else experiencing
 this?

 On Jul 20, 6:12 am, Brian [EMAIL PROTECTED] wrote:



  Had this problem yesterday as well, but appears fixed now.  That said,
  I get an error when trying to add a new member to the project (and
  they never get email).  Project name raidtrack.

  Brian- Hide quoted text -

 - Show quoted text -
--~--~-~--~~~---~--~~
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, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: 502 Bad Gateway

2008-07-20 Thread James Lindenbaum

Amazon is experiencing a partial outage right now (for the last 25  
minutes or so), which is affecting our service.  Most 504 errors are  
due to this Amazon outage.  We are investigating.

http://status.aws.amazon.com/


On Jul 20, 2008, at 9:49 AM, JamesDS wrote:


 Yes, I just logged onto my Heroku app about 5 minutes ago (17:37 GMT)
 and got a 504 Gateway Time-out message.  As can be seen from my posts
 above, I was also victim of the 502 error.  So current status is that
 both apps (jamesds, jamesds1) cannot be edited, and nether can they be
 viewed (unlike the 502 error where they could be viewed but not
 edited).  It's unfortunate, because it was working great last night
 after you posted, Adam!

 On Jul 20, 5:35 pm, paradigmshift [EMAIL PROTECTED] wrote:
 The last 2 days I was also experiencing the 502 Error when trying to
 edit.

 Today however I'm experiencing a 504 Gateway Time-out error when
 trying to view or edit any of my apps... Is anyone else experiencing
 this?

 On Jul 20, 6:12 am, Brian [EMAIL PROTECTED] wrote:



 Had this problem yesterday as well, but appears fixed now.  That  
 said,
 I get an error when trying to add a new member to the project (and
 they never get email).  Project name raidtrack.

 Brian- Hide quoted text -

 - Show quoted text -
 


--~--~-~--~~~---~--~~
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, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: 502 Bad Gateway

2008-07-20 Thread James Lindenbaum

Amazon's S3 is back up (after 8 hours), and appears to be stable.   
Heroku services should all be operating normally now.

On Jul 20, 2008, at 5:31 PM, paradigmshift wrote:


 Hey James, thanks for the info and awesome service... Took Amazon
 forever to get back up and running. They've finally got things working
 according to their site but am now getting Internal Server Error in
 both view and edit of apps. Possibly due to something being thrown off
 from Amazon's down time?

 Either way wanted to bring it to your attention. Thanks Cheers



 On Jul 20, 9:59 am, James Lindenbaum [EMAIL PROTECTED] wrote:
 Amazon is experiencing a partial outage right now (for the last 25
 minutes or so), which is affecting our service.  Most 504 errors are
 due to this Amazon outage.  We are investigating.

 http://status.aws.amazon.com/

 On Jul 20, 2008, at 9:49 AM, JamesDS wrote:



 Yes, I just logged onto my Heroku app about 5 minutes ago (17:37  
 GMT)
 and got a 504 Gateway Time-out message.  As can be seen from my  
 posts
 above, I was also victim of the 502 error.  So current status is  
 that
 both apps (jamesds, jamesds1) cannot be edited, and nether can  
 they be
 viewed (unlike the 502 error where they could be viewed but not
 edited).  It's unfortunate, because it was working great last night
 after you posted, Adam!

 On Jul 20, 5:35 pm, paradigmshift [EMAIL PROTECTED] wrote:
 The last 2 days I was also experiencing the 502 Error when trying  
 to
 edit.

 Today however I'm experiencing a 504 Gateway Time-out error when
 trying to view or edit any of my apps... Is anyone else  
 experiencing
 this?

 On Jul 20, 6:12 am, Brian [EMAIL PROTECTED] wrote:

 Had this problem yesterday as well, but appears fixed now.  That
 said,
 I get an error when trying to add a new member to the project (and
 they never get email).  Project name raidtrack.

 Brian- Hide quoted text -

 - Show quoted text -
 


--~--~-~--~~~---~--~~
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, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: 502 Bad Gateway

2008-07-19 Thread Ivan

Me too :(

paddelbootwm.heroku.com
09:07:XX UTC

Maybe it helps.

Thanks guys

Daniel
--~--~-~--~~~---~--~~
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, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: 502 Bad Gateway

2008-07-19 Thread Kulesa

Having the same issue when trying to edit my app.

theallsides.hehoku.com
7:10 pm GMT
--~--~-~--~~~---~--~~
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, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: 502 Bad Gateway

2008-07-19 Thread snlsn

Saturday 7/19
9:20 PM Eastern Time

I got in to edit mode. Thanks Adam. Must be a good story there
somewhere.
Maybe someday we'll hear the gritty details of what made for an
insidious problem!
The login seemed slower than normal, but it succeeded ultimately and
worked fine for the brief work i needed ot get done.

Steve
--~--~-~--~~~---~--~~
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, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



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

--~--~-~--~~~---~--~~
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, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: 502 Bad Gateway

2008-07-18 Thread jko170

http://kosites.heroku.com

4:02pm Central time

On Jul 18, 12:24 pm, SimianLogic [EMAIL PROTECTED] wrote:
 I'm getting this now (10:23 AM pacific) on my StockMoose app.  Very
 frustrating.

 -Will

 On Jul 15, 11:30 am, snlsn [EMAIL PROTECTED] wrote:

  I checked again periodically through the morning. At about 2 PM
  Eastern it was just fine - opened for editing like nothing had
  happened...

  I'm sorry for you guys. Must be a serious pain for you to track down.

  Steve
--~--~-~--~~~---~--~~
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, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: 502 Bad Gateway

2008-07-18 Thread Lance

Signing out and back in seemed to fix this error for me.

--~--~-~--~~~---~--~~
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, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: 502 Bad Gateway

2008-07-18 Thread Morten Bagai

Hey James,

What's your app?

/Morten

On Jul 18, 2008, at 3:42 PM, JamesDS wrote:


 I am receiving the same error on my app too.  It happened earlier at
 approx 2130 GMT and it's happening again right now at 2341 hours GMT.
 It is very annoying.  I don't recall experiencing this before either.
 


--~--~-~--~~~---~--~~
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, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: 502 Bad Gateway

2008-07-18 Thread JamesDS

Thanks for your quick reply Morten, but I'm afriad I still can't edit
them.  I've tried logging out and back in, but still get a 502 Bad
Gateway error.  Viewing works, but not editing.

On Jul 19, 12:04 am, Morten Bagai [EMAIL PROTECTED] wrote:
 Checked a few things here internally, and both seem to be up now.

 /Morten

 On Jul 18, 2008, at 3:52 PM, JamesDS wrote:



  I guess I should add that my heroku.com app paths are jamesds and
  jamesds1, the former being the one I'm working on currently.

  I have to agree with Mark above that Heroku Rocks!  I'm a beginner to
  Ruby on Rails, and Heroku has been a great way to get me off the
  ground with minimum hassle.  Long may Heroku continue!

  On Jul 18, 11:42 pm, JamesDS [EMAIL PROTECTED] wrote:
  I am receiving the same error on my app too.  It happened earlier at
  approx 2130 GMT and it's happening again right now at 2341 hours GMT.
  It is very annoying.  I don't recall experiencing this before either.
--~--~-~--~~~---~--~~
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, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



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 don't kill it for everyone else. :)

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, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: 502 Bad Gateway

2008-07-15 Thread shenry

Same issue...

app name = shipping.heroku.com
last git push ~ 8:15am pacific time
got 502 bad gateway at ~9:05 am pacific time

Other apps in my account seem unaffected

thx

SH

On Jul 15, 6:27 am, snlsn [EMAIL PROTECTED] wrote:
 8:25 Eastern time, July 15
 I have 4 trivial apps currently associated wiht my account. The one I
 am currently working with gives 502 repeatedly this morning (when
 trying to edit):
 photogallery1
 Two others give internal server error:
 axis, contacts2
 One opens just fine:
 mycontacts

 An hour later still can't edit photogallery1

 Guess I won't slip in any work on personal projects this morning
 before getting busy with my real job.
 :(

 Steve

 On Jun 26, 3:06 pm, Adam Wiggins [EMAIL PROTECTED] wrote:

  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.
--~--~-~--~~~---~--~~
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, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: 502 Bad Gateway

2008-07-15 Thread snlsn

I checked again periodically through the morning. At about 2 PM
Eastern it was just fine - opened for editing like nothing had
happened...

I'm sorry for you guys. Must be a serious pain for you to track down.

Steve
--~--~-~--~~~---~--~~
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, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: 502 Bad Gateway

2008-07-14 Thread [EMAIL PROTECTED]

1. appriondb.heroku.com
2. 15:53 CST

On Jun 26, 2:06 pm, Adam Wiggins [EMAIL PROTECTED] wrote:
 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 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, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: 502 Bad Gateway

2008-07-14 Thread [EMAIL PROTECTED]

I fixed it by using the Rename button under Settings/Sharing

On Jul 14, 3:54 pm, [EMAIL PROTECTED] [EMAIL PROTECTED]
wrote:
 1. appriondb.heroku.com
 2. 15:53 CST

 On Jun 26, 2:06 pm, Adam Wiggins [EMAIL PROTECTED] wrote:

  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 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, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: 502 Bad Gateway

2008-07-14 Thread amurmann

I got the same 502 several time this morning. It usually didn't work
for a few minutes and then started working again on it's own.
App: bettlen
time: about 2:55 PCT

On Jun 26, 12:06 pm, Adam Wiggins [EMAIL PROTECTED] wrote:
 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 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, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



502 Bad Gateway

2008-07-05 Thread Abolfazl

when i want to edit my apps this error shown.
--~--~-~--~~~---~--~~
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, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



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 options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: 502 Bad Gateway

2008-07-04 Thread Tyang

I'm getting this error as well...

On Jun 27, 3:41 pm, Morten Bagai [EMAIL PROTECTED] wrote:
 Hello,

 We managed nail this down to an issue with how Rack verifies the set-
 cookie HTTP header. Working on a fix.

 Best,

 /Morten
 On Jun 26, 2008, at 9:15 PM, adbreind wrote:



  This might help: in the last 4 days or so, I've started getting 502's
  as a result of an attempt to redirect (from login/logout page, which
  is basically just the acts_as_authenticated account controller)

  Anyway, vital bits are:

  1 it worked perfectly as of around a week ago
  2 to test this, all you need to do right now is hit http://
  stat.heroku.com/account/logout
  (doesn't matter if you were logged in or not, just do a GET on that
  URL)
  3 I looked at the traffic with wireshark, and the requests look ok;
  it's getting a 502 'badgateway' back with a meta-refresh that makes
  it look like something's happening, so the browser keeps retrying, but
  never succeeds
  4 to see if it was just about redirects, I created a redirect test
  button today onhttp://monkeytest1.heroku.com/which seems to work ok
  5 FWIW, my code (since it's auth code) sets a couple of cookies, which
  is different from the test redir

  Any ideas?

  Thanks,
  (a different) Adam

  On Jun 26, 12:06 pm, Adam Wiggins [EMAIL PROTECTED] wrote:
  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 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, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



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 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, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: 502 Bad Gateway

2008-06-26 Thread adbreind

This might help: in the last 4 days or so, I've started getting 502's
as a result of an attempt to redirect (from login/logout page, which
is basically just the acts_as_authenticated account controller)

Anyway, vital bits are:

1 it worked perfectly as of around a week ago
2 to test this, all you need to do right now is hit 
http://stat.heroku.com/account/logout
(doesn't matter if you were logged in or not, just do a GET on that
URL)
3 I looked at the traffic with wireshark, and the requests look ok;
it's getting a 502 'bad gateway' back with a meta-refresh that makes
it look like something's happening, so the browser keeps retrying, but
never succeeds
4 to see if it was just about redirects, I created a redirect test
button today on http://monkeytest1.heroku.com/ which seems to work ok
5 FWIW, my code (since it's auth code) sets a couple of cookies, which
is different from the test redir

Any ideas?

Thanks,
(a different) Adam


On Jun 26, 12:06 pm, Adam Wiggins [EMAIL PROTECTED] wrote:
 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 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, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: 502 Bad Gateway

2008-04-02 Thread [EMAIL PROTECTED]

I'm a little bit scared... I can edit the app but all my files where
deleted. When I go to revisions it says 16 hrs ago  App
created...

I hope you can restore the files, I made important changes!

Thank's in advance!

On 1 abr, 22:25, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:
 We can mix our apps and it will work at all ;)

 On 1 abr, 22:02, JWP [EMAIL PROTECTED] wrote:

  I had the opposite problem: all of the app files were in place but the
  database entries were deleted.

  On Apr 1, 2:48 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:

   I got the 502 Bad Gateway message as well. Now i can edit the app but
   it looks like all the files where deleted... The database is ok but
   the files disappeared.

   On 1 abr, 15:07, eastmad [EMAIL PROTECTED] wrote:

Seems to be down 504 gateway timeout. On viewing app, so maybe your
box-of-virtuals is unhappy.

On Apr 1, 12:40 pm, Ed Jones [EMAIL PROTECTED] wrote:

 I got it this morn, too. Then it went away.

 On Mar 26, 8:18 pm, ab5tract [EMAIL PROTECTED] wrote:

  I'm getting 502 Bad Gateway when trying to edit my app. This may 
  or
  may not be because of my impatiently clicking the  button before
  'save' wasn't highlighted anymore.
--~--~-~--~~~---~--~~
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, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: 502 Bad Gateway

2008-04-02 Thread [EMAIL PROTECTED]

Same thing happened with my app. Glad I only use it to experiment and
not for presentation purpose :D

On Apr 1, 9:02 pm, JWP [EMAIL PROTECTED] wrote:
 I had the opposite problem: all of the app files were in place but the
 database entries were deleted.

 On Apr 1, 2:48 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:

  I got the 502 Bad Gateway message as well. Now i can edit the app but
  it looks like all the files where deleted... The database is ok but
  the files disappeared.

  On 1 abr, 15:07, eastmad [EMAIL PROTECTED] wrote:

   Seems to be down 504 gateway timeout. On viewing app, so maybe your
   box-of-virtuals is unhappy.

   On Apr 1, 12:40 pm, Ed Jones [EMAIL PROTECTED] wrote:

I got it this morn, too. Then it went away.

On Mar 26, 8:18 pm, ab5tract [EMAIL PROTECTED] wrote:

 I'm getting 502 Bad Gateway when trying to edit my app. This may or
 may not be because of my impatiently clicking the  button before
 'save' wasn't highlighted anymore.
--~--~-~--~~~---~--~~
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, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: 502 Bad Gateway

2008-04-01 Thread Ed Jones

I got it this morn, too. Then it went away.



On Mar 26, 8:18 pm, ab5tract [EMAIL PROTECTED] wrote:
 I'm getting 502 Bad Gateway when trying to edit my app. This may or
 may not be because of my impatiently clicking the  button before
 'save' wasn't highlighted anymore.
--~--~-~--~~~---~--~~
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, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: 502 Bad Gateway

2008-04-01 Thread [EMAIL PROTECTED]

I got the 502 Bad Gateway message as well. Now i can edit the app but
it looks like all the files where deleted... The database is ok but
the files disappeared.

On 1 abr, 15:07, eastmad [EMAIL PROTECTED] wrote:
 Seems to be down 504 gateway timeout. On viewing app, so maybe your
 box-of-virtuals is unhappy.

 On Apr 1, 12:40 pm, Ed Jones [EMAIL PROTECTED] wrote:

  I got it this morn, too. Then it went away.

  On Mar 26, 8:18 pm, ab5tract [EMAIL PROTECTED] wrote:

   I'm getting 502 Bad Gateway when trying to edit my app. This may or
   may not be because of my impatiently clicking the  button before
   'save' wasn't highlighted anymore.
--~--~-~--~~~---~--~~
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, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---