Re: Allowing users to specify their own custom domain (like Shopify)

2010-08-13 Thread Phillip Ridlen
We just had a thread about a similar topic:
http://groups.google.com/group/heroku/t/1b012e631dd80e64

But this brings up another interesting question. How do you
programmatically set up the A/CNAME records for the domain, or even
point the nameservers to Zerigo?

Although I have not used it, NameCheap (my registrar of choice) has a
fairly complete API (http://developer.namecheap.com).

It looks like someone started an HTTParty wrapper for it (http://
github.com/hashrocket/namecheap), but right now all it does is query
availability of a domain name. You could fork it and implement the
functions you need.

Good luck, and let the rest of us know how it goes!

Phillip Ridlen
@philtr

On Aug 13, 5:22 pm, Adrian Cuadros  wrote:
> Hi,
>
> We have a similar app hosted on Heroku right now.
>
> Even if you guys could set up zerigo to handle this. On the domain registrar
> (such as godaddy) you would have to make a small set up for zerigo to handle
> the domain so i guess it wouldnt help so much.
>
>
>
>
>
> On Fri, Aug 13, 2010 at 9:30 AM, Adam McCrea  wrote:
> > We're building a CMS-like app that allows users to create and host
> > their own sites.  As part of this, we want to allow them to specify
> > their own custom domain.
>
> > I understand how to specify a custom domain on Heroku as the
> > developer, but I'm not sure how to let users specify domains, or if it
> > is even possible.  They would obviously need to setup the A record or
> > CNAME with their registrar, but how can I programmatically set up the
> > domain with Heroku (or Zerigo)?
>
> > --
> > You received this message because you are subscribed to the Google Groups
> > "Heroku" group.
> > To post to this group, send email to her...@googlegroups.com.
> > To unsubscribe from this group, send email to
> > heroku+unsubscr...@googlegroups.com
> > .
> > For more options, visit this group at
> >http://groups.google.com/group/heroku?hl=en.
>
> --
> Adrian Cuadros
> adr...@rutanet.com
> (+521) 8116848310

-- 
You received this message because you are subscribed to the Google Groups 
"Heroku" group.
To post to this group, send email to her...@googlegroups.com.
To unsubscribe from this group, send email to 
heroku+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en.



Re: Allowing users to specify their own custom domain (like Shopify)

2010-08-13 Thread Adrian Cuadros
Hi,

We have a similar app hosted on Heroku right now.

Even if you guys could set up zerigo to handle this. On the domain registrar
(such as godaddy) you would have to make a small set up for zerigo to handle
the domain so i guess it wouldnt help so much.

On Fri, Aug 13, 2010 at 9:30 AM, Adam McCrea  wrote:

> We're building a CMS-like app that allows users to create and host
> their own sites.  As part of this, we want to allow them to specify
> their own custom domain.
>
> I understand how to specify a custom domain on Heroku as the
> developer, but I'm not sure how to let users specify domains, or if it
> is even possible.  They would obviously need to setup the A record or
> CNAME with their registrar, but how can I programmatically set up the
> domain with Heroku (or Zerigo)?
>
> --
> You received this message because you are subscribed to the Google Groups
> "Heroku" group.
> To post to this group, send email to her...@googlegroups.com.
> To unsubscribe from this group, send email to
> heroku+unsubscr...@googlegroups.com
> .
> For more options, visit this group at
> http://groups.google.com/group/heroku?hl=en.
>
>


-- 
Adrian Cuadros
adr...@rutanet.com
(+521) 8116848310

-- 
You received this message because you are subscribed to the Google Groups 
"Heroku" group.
To post to this group, send email to her...@googlegroups.com.
To unsubscribe from this group, send email to 
heroku+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en.



Re: Use Heroku gem from within application?

2010-08-13 Thread Phillip Ridlen
Keep in mind that you don't need to set an environment variable for
your app name. Heroku already stores it in ENV["APP_NAME"].

Phillip Ridlen
@philtr

On Aug 13, 12:49 pm, mwhuss  wrote:
> We actually have done this inhttp://appmark.it
>
> http://gist.github.com/522935
>
> Remember that domain names on heroku are scoped to the user. So if the
> user has example.com for another heroku app and they try to 
> registerwww.example.comwith your app, it won't work.
>
> --
> Marshallhttp://mwhuss.comhttp://nezumiapp.com
>
> On Aug 13, 12:10 pm, marcel  wrote:
>
>
>
> > I ran into a similar need yesterday. I wanted to have a Heroku cron
> > task create a bundle of my app, to get a daily DB backup.
>
> > Here is my task:
>
> > task :cron => :environment do
> >   require 'heroku'
> >   heroku_username = ENV['HEROKU_USERNAME']
> >   heroku_password = ENV['HEROKU_PASSWORD']
>
> >   if heroku_username.nil? || heroku_password.nil?
> >     raise "Missing heroku username and/or password"
> >   end
>
> >   puts "Capturing bundle..."
> >   heroku = Heroku::Client.new( heroku_username, heroku_password )
> >   bundle_name = heroku.bundle_capture "bagnolia-production"
> >   puts "Finished initiating capture of bundle '#{bundle_name}'"
> > end
>
> > --
>
> > 1. Add the heroku gem to your .gems file or vendor it, so its
> > available to your app. Require the heroku gem.
> > 2. create a new install of Herkou::Client, which needs your username
> > and password. I put mine into the app's config to keep it out of
> > source control.
> > 3. call an instance method on the client object. It looks like you'll
> > want to use add_domain(). You can see all the methods here:
>
> >http://github.com/heroku/heroku/blob/master/lib/heroku/client.rb

-- 
You received this message because you are subscribed to the Google Groups 
"Heroku" group.
To post to this group, send email to her...@googlegroups.com.
To unsubscribe from this group, send email to 
heroku+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en.



let me join please!

2010-08-13 Thread donilan
Hello
I want to join Heroku group!

-- 
You received this message because you are subscribed to the Google Groups 
"Heroku" group.
To post to this group, send email to her...@googlegroups.com.
To unsubscribe from this group, send email to 
heroku+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en.



Allowing users to specify their own custom domain (like Shopify)

2010-08-13 Thread Adam McCrea
We're building a CMS-like app that allows users to create and host
their own sites.  As part of this, we want to allow them to specify
their own custom domain.

I understand how to specify a custom domain on Heroku as the
developer, but I'm not sure how to let users specify domains, or if it
is even possible.  They would obviously need to setup the A record or
CNAME with their registrar, but how can I programmatically set up the
domain with Heroku (or Zerigo)?

-- 
You received this message because you are subscribed to the Google Groups 
"Heroku" group.
To post to this group, send email to her...@googlegroups.com.
To unsubscribe from this group, send email to 
heroku+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en.



Re: Use Heroku gem from within application?

2010-08-13 Thread mwhuss
We actually have done this in http://appmark.it

http://gist.github.com/522935

Remember that domain names on heroku are scoped to the user. So if the
user has example.com for another heroku app and they try to register
www.example.com with your app, it won't work.

--
Marshall
http://mwhuss.com
http://nezumiapp.com

On Aug 13, 12:10 pm, marcel  wrote:
> I ran into a similar need yesterday. I wanted to have a Heroku cron
> task create a bundle of my app, to get a daily DB backup.
>
> Here is my task:
>
> task :cron => :environment do
>   require 'heroku'
>   heroku_username = ENV['HEROKU_USERNAME']
>   heroku_password = ENV['HEROKU_PASSWORD']
>
>   if heroku_username.nil? || heroku_password.nil?
>     raise "Missing heroku username and/or password"
>   end
>
>   puts "Capturing bundle..."
>   heroku = Heroku::Client.new( heroku_username, heroku_password )
>   bundle_name = heroku.bundle_capture "bagnolia-production"
>   puts "Finished initiating capture of bundle '#{bundle_name}'"
> end
>
> --
>
> 1. Add the heroku gem to your .gems file or vendor it, so its
> available to your app. Require the heroku gem.
> 2. create a new install of Herkou::Client, which needs your username
> and password. I put mine into the app's config to keep it out of
> source control.
> 3. call an instance method on the client object. It looks like you'll
> want to use add_domain(). You can see all the methods here:
>
> http://github.com/heroku/heroku/blob/master/lib/heroku/client.rb

-- 
You received this message because you are subscribed to the Google Groups 
"Heroku" group.
To post to this group, send email to her...@googlegroups.com.
To unsubscribe from this group, send email to 
heroku+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en.



Re: Use Heroku gem from within application?

2010-08-13 Thread mwhuss
We do this exact thing in http://appmark.it

heroku_client = Heroku::Client.new(ENV['HEROKU_EMAIL'],
ENV['HEROKU_PASSWORD'])
heroku_client.add_domain(ENV['HEROKU_APP'], new_domain_name)

Also keep in mind that domains can only be scoped to user accounts, so
if they are already using example.com for an existing  heroku app and
they try to add blog.example.com in your app, it won't work.

Marshall
http://mwhuss.com
http://nezumiapp.com

On Aug 12, 12:13 pm, Brett  wrote:
> Hi all,
>
> I want to let users purchase custom domain names to access my app on
> Heroku.  When the purchase transaction takes place, I'd like to add
> the custom domain to my app in real time.  I thought of using the
> Heroku gem/command line tool from within the app, analagous to the
> command-line expression:
> heroku domains:addwww.example.com
>
> Is this possible?  If so, what is the syntax?
>
> Thanks!
>
> Brett

-- 
You received this message because you are subscribed to the Google Groups 
"Heroku" group.
To post to this group, send email to her...@googlegroups.com.
To unsubscribe from this group, send email to 
heroku+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en.



Re: Use Heroku gem from within application?

2010-08-13 Thread mwhuss
We actually have done this in http://appmark.it

http://gist.github.com/522935

Remember that domain names on heroku are scoped to the user. So if the
user has example.com for another heroku app and they try to register
www.example.com with your app, it won't work.

--
Marshall
http://mwhuss.com
http://nezumiapp.com

On Aug 12, 12:13 pm, Brett  wrote:
> Hi all,
>
> I want to let users purchase custom domain names to access my app on
> Heroku.  When the purchase transaction takes place, I'd like to add
> the custom domain to my app in real time.  I thought of using the
> Heroku gem/command line tool from within the app, analagous to the
> command-line expression:
> heroku domains:addwww.example.com
>
> Is this possible?  If so, what is the syntax?
>
> Thanks!
>
> Brett

-- 
You received this message because you are subscribed to the Google Groups 
"Heroku" group.
To post to this group, send email to her...@googlegroups.com.
To unsubscribe from this group, send email to 
heroku+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en.



Re: Use Heroku gem from within application?

2010-08-13 Thread Phillip Ridlen
This really intrigued me, so I thought I'd dig into the Heroku gem
(http://github.com/heroku/heroku/blob/master/lib/heroku/client.rb) and
see what I could find.

On line 120 of client.rb (http://github.com/heroku/heroku/blob/master/
lib/heroku/client.rb#L120) there is a function called add_domain. It
looks like you can do pretty much anything that you could do from the
command line in your code. So to solve your problem:

require 'heroku'
heroku = Heroku::Client.new("m...@domain.com","mypass")
heroku.add_domain("myapp","http://www.example.com";)

It's as simple as that! Hope that helps.

Phillip Ridlen
@philtr

(P.S. Sorry if this double posts, I had some Gmail weirdness going on)

On Aug 12, 11:17 am, Daniel Spangenberg
 wrote:
> Hey,
> look at this cool blog post, it's for an other problem,
> but I think it's that what you 
> need.http://blog.darkhax.com/2010/07/30/auto-scale-your-resque-workers-on-...
>
> Mit freundlichen Grüßen
> Daniel Spangenberg
> daniel.spangenb...@gmail.com
>
> Am 12.08.2010 um 18:13 schrieb Brett:
>
>
>
> > Hi all,
>
> > I want to let users purchase custom domain names to access my app on
> > Heroku.  When the purchase transaction takes place, I'd like to add
> > the custom domain to my app in real time.  I thought of using the
> > Heroku gem/command line tool from within the app, analagous to the
> > command-line expression:
> > heroku domains:addwww.example.com
>
> > Is this possible?  If so, what is the syntax?
>
> > Thanks!
>
> > Brett
>
> > --
> > You received this message because you are subscribed to the Google Groups 
> > "Heroku" group.
> > To post to this group, send email to her...@googlegroups.com.
> > To unsubscribe from this group, send email to 
> > heroku+unsubscr...@googlegroups.com.
> > For more options, visit this group 
> > athttp://groups.google.com/group/heroku?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
"Heroku" group.
To post to this group, send email to her...@googlegroups.com.
To unsubscribe from this group, send email to 
heroku+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en.



Re: Use Heroku gem from within application?

2010-08-13 Thread Phillip Ridlen
This really intrigued me, so I thought I'd dig into the Heroku gem (
http://github.com/heroku/heroku/blob/master/lib/heroku/client.rb) and see
what I could find.

On line 120 of client.rb (
http://github.com/heroku/heroku/blob/master/lib/heroku/client.rb#L120) there
is a function called add_domain. It looks like you can do pretty much
anything that you could do from the command line in your code. So to solve
your problem:

require 'heroku'
heroku = Heroku::Client.new("m...@domain.com","mypass")
heroku.add_domain("myapp","http://www.example.com";)

It's as simple as that! Hope that helps.

Phillip Ridlen
@philtr

On Thu, Aug 12, 2010 at 11:17 AM, Daniel Spangenberg <
daniel.spangenb...@googlemail.com> wrote:

> Hey,
> look at this cool blog post, it's for an other problem,
> but I think it's that what you need.
> http://blog.darkhax.com/2010/07/30/auto-scale-your-resque-workers-on-heroku
>
> Mit freundlichen Grüßen
> Daniel Spangenberg
> daniel.spangenb...@gmail.com
>
>
> Am 12.08.2010 um 18:13 schrieb Brett:
>
> > Hi all,
> >
> > I want to let users purchase custom domain names to access my app on
> > Heroku.  When the purchase transaction takes place, I'd like to add
> > the custom domain to my app in real time.  I thought of using the
> > Heroku gem/command line tool from within the app, analagous to the
> > command-line expression:
> > heroku domains:add www.example.com
> >
> > Is this possible?  If so, what is the syntax?
> >
> > Thanks!
> >
> > Brett
> >
> >
> > --
> > You received this message because you are subscribed to the Google Groups
> "Heroku" group.
> > To post to this group, send email to her...@googlegroups.com.
> > To unsubscribe from this group, send email to
> heroku+unsubscr...@googlegroups.com
> .
> > For more options, visit this group at
> http://groups.google.com/group/heroku?hl=en.
> >
>
> --
> You received this message because you are subscribed to the Google Groups
> "Heroku" group.
> To post to this group, send email to her...@googlegroups.com.
> To unsubscribe from this group, send email to
> heroku+unsubscr...@googlegroups.com
> .
> For more options, visit this group at
> http://groups.google.com/group/heroku?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Heroku" group.
To post to this group, send email to her...@googlegroups.com.
To unsubscribe from this group, send email to 
heroku+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en.



Re: Open support request stuck in "Awaiting assignment to a help desk operator." for 16 hours?

2010-08-13 Thread Abel Tamayo
Yeah, support is one are where they have lots of room for improvement. Once
you learn that though, it's a great hosting platform.

On Fri, Aug 13, 2010 at 8:08 PM, chris  wrote:

> That worked, thanks a lot Abel...
>
> Heroku is really letting me down, support-wise... especially since
> this issue is (was) 100% on their end.
>
> On Aug 13, 11:13 am, Abel Tamayo  wrote:
> > It sure looks like something went wrong during that migration.  Have you
> > considered just destroying that application and start again from scratch
> > even moving to your desired stack before you push?
> >
> > On Fri, Aug 13, 2010 at 4:31 PM, chris  wrote:
> > > Have a request open (#11626) that has just been sitting around,
> > > awaiting assignment for entirely too long now. Not sure where else to
> > > turn to get some support around here...
> >
> > > Maybe one of y'all can help me. Getting this error when I try to push
> > > to a repo that I've recently stack:migrate'd:
> >
> > > pumpkin:bazaar chrismcc$ git push staging master
> >
> > > ! App git repo is being migrated. Please try again later.
> >
> > > fatal: The remote end hung up unexpectedly
> >
> > > ...
> >
> > > --
> > > You received this message because you are subscribed to the Google
> Groups
> > > "Heroku" group.
> > > To post to this group, send email to her...@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.
> >
> >
>
> --
> You received this message because you are subscribed to the Google Groups
> "Heroku" group.
> To post to this group, send email to her...@googlegroups.com.
> To unsubscribe from this group, send email to
> heroku+unsubscr...@googlegroups.com
> .
> For more options, visit this group at
> http://groups.google.com/group/heroku?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Heroku" group.
To post to this group, send email to her...@googlegroups.com.
To unsubscribe from this group, send email to 
heroku+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en.



Re: Open support request stuck in "Awaiting assignment to a help desk operator." for 16 hours?

2010-08-13 Thread chris
That worked, thanks a lot Abel...

Heroku is really letting me down, support-wise... especially since
this issue is (was) 100% on their end.

On Aug 13, 11:13 am, Abel Tamayo  wrote:
> It sure looks like something went wrong during that migration.  Have you
> considered just destroying that application and start again from scratch
> even moving to your desired stack before you push?
>
> On Fri, Aug 13, 2010 at 4:31 PM, chris  wrote:
> > Have a request open (#11626) that has just been sitting around,
> > awaiting assignment for entirely too long now. Not sure where else to
> > turn to get some support around here...
>
> > Maybe one of y'all can help me. Getting this error when I try to push
> > to a repo that I've recently stack:migrate'd:
>
> > pumpkin:bazaar chrismcc$ git push staging master
>
> > ! App git repo is being migrated. Please try again later.
>
> > fatal: The remote end hung up unexpectedly
>
> > ...
>
> > --
> > You received this message because you are subscribed to the Google Groups
> > "Heroku" group.
> > To post to this group, send email to her...@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.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Heroku" group.
To post to this group, send email to her...@googlegroups.com.
To unsubscribe from this group, send email to 
heroku+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en.



Re: Use Heroku gem from within application?

2010-08-13 Thread marcel
I ran into a similar need yesterday. I wanted to have a Heroku cron
task create a bundle of my app, to get a daily DB backup.

Here is my task:

task :cron => :environment do
  require 'heroku'
  heroku_username = ENV['HEROKU_USERNAME']
  heroku_password = ENV['HEROKU_PASSWORD']

  if heroku_username.nil? || heroku_password.nil?
raise "Missing heroku username and/or password"
  end

  puts "Capturing bundle..."
  heroku = Heroku::Client.new( heroku_username, heroku_password )
  bundle_name = heroku.bundle_capture "bagnolia-production"
  puts "Finished initiating capture of bundle '#{bundle_name}'"
end

--

1. Add the heroku gem to your .gems file or vendor it, so its
available to your app. Require the heroku gem.
2. create a new install of Herkou::Client, which needs your username
and password. I put mine into the app's config to keep it out of
source control.
3. call an instance method on the client object. It looks like you'll
want to use add_domain(). You can see all the methods here:

http://github.com/heroku/heroku/blob/master/lib/heroku/client.rb

-- 
You received this message because you are subscribed to the Google Groups 
"Heroku" group.
To post to this group, send email to her...@googlegroups.com.
To unsubscribe from this group, send email to 
heroku+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en.



Re: Workflow to allow heroku to install a 'private' (local) gem on deploy

2010-08-13 Thread Bradley
I'm getting the impression that a bundle package, then committing
those packaged gems to the repo and deploying is the way to go.  Will
heroku by default look in the vendor/cache directory first before
installing gems remotely?

On Aug 12, 7:14 am, Matthew Todd  wrote:
> On Aug 12, 2010, at 3:34 AM, Bradley wrote:
>
> >> Right, so I added in:
>
> >> Host heroku.com
> >> ForwardAgent yes
>
> >> to my Tomcat user's ~/.ssh/config.  This is the user that checks out
> >> from Github then pushes to heroku.  I still get the same error,
> >> Permission denied (publickey).
>
> Hi, Brad --
>
> I've just done an experiment here, pushing to Heroku (with and without 
> ForwardAgent turned on) a small Rack app having a Gemfile specifying a 
> dependency on a privately-accessible-over-ssh git repository.
>
> It didn't work. I see the same error you do.
>
> As I Google, I'm suspecting this is because of the way Heroku's ssh 
> authorized_keys file is configured. It turns out there's a setting called 
> "no-agent-forwarding" that keeps turning up in [people's][1] [examples][2] 
> for how to configure git access over ssh. (See [sshd(8)][3] for more.)
>
> Heroku guys, would any of you be able to confirm that these 
> "no-agent-forwarding" clauses are present in (the equivalent of) the 
> ~/.ssh/authorized_keys file for g...@heroku.com? Do I understand correctly 
> that removing them would enable Brad's use case here?
>
> On Aug 12, 2010, at 3:39 AM, David Balatero wrote:
>
> > If Bundler is running on Heroku, the Heroku UNIX user account needs to have 
> > its public key in your Github repo as an authorized key.
>
> > Each Heroku machine will have a different SSH key generated, and you 
> > non-deterministically deploy to  machine in the Heroku cloud each 
> > time you deploy.
>
> > Even if you had a consistent SSH key, it would be insecure for you to add 
> > that key to your public repo, as anyone else deploying to the same machine 
> > as you would be able to download your code repo.
>
> Hi, David --
>
> Yes, exactly -- this multiple-host inconsistency / insecurity is what I 
> suspect we'd be able to overcome with ssh's agent forwarding. It would 
> transitively allow (bundler running on) Heroku to connect to Brad's private 
> repository using his local ssh keys.
>
> All the best,  -- Matthew
>
> [1]:http://stackoverflow.com/questions/3224340/git-push-returns-fatal-pro...
> [2]:http://eagain.net/blog/2007/03/22/howto-host-git.html
> [3]:http://www.manpagez.com/man/8/sshd/  Oy, that's an ugly page!

-- 
You received this message because you are subscribed to the Google Groups 
"Heroku" group.
To post to this group, send email to her...@googlegroups.com.
To unsubscribe from this group, send email to 
heroku+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en.



Re: workers crashing....

2010-08-13 Thread Alex Chaffee
Try

heroku workers 0; heroku workers 1

to force a worker restart.

btw I upgraded to the 1.9 stack and haven't had a worker crash since.

Alex

-- 
You received this message because you are subscribed to the Google Groups 
"Heroku" group.
To post to this group, send email to her...@googlegroups.com.
To unsubscribe from this group, send email to 
heroku+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en.



Re: Open support request stuck in "Awaiting assignment to a help desk operator." for 16 hours?

2010-08-13 Thread Neil Middleton
For me, this is one of the biggest issues with Heroku. The support can be
hit and miss - sometimes you'll get a reply within minutes, and sometimes it
can take hours - which isn't terrific if your site is down.

They do offer paid support, but it's certainly not cheap, and ultimately
it's just the support helpdesk with an SLA.

When you compare this with the likes of Engine Yard, who are very proactive
and responsive - it seems to be bit of a weakness.

Neil

On Fri, Aug 13, 2010 at 4:36 PM, chris  wrote:

> No, I hadn't thought of that. Thanks. Probably a good idea, especially
> since this is just a staging app... funny I can get support from you
> before the actual heroku support team.
>
> On Aug 13, 11:13 am, Abel Tamayo  wrote:
> > It sure looks like something went wrong during that migration.  Have you
> > considered just destroying that application and start again from scratch
> > even moving to your desired stack before you push?
> >
> > On Fri, Aug 13, 2010 at 4:31 PM, chris  wrote:
> > > Have a request open (#11626) that has just been sitting around,
> > > awaiting assignment for entirely too long now. Not sure where else to
> > > turn to get some support around here...
> >
> > > Maybe one of y'all can help me. Getting this error when I try to push
> > > to a repo that I've recently stack:migrate'd:
> >
> > > pumpkin:bazaar chrismcc$ git push staging master
> >
> > > ! App git repo is being migrated. Please try again later.
> >
> > > fatal: The remote end hung up unexpectedly
> >
> > > ...
> >
> > > --
> > > You received this message because you are subscribed to the Google
> Groups
> > > "Heroku" group.
> > > To post to this group, send email to her...@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.
> >
> >
>
> --
> You received this message because you are subscribed to the Google Groups
> "Heroku" group.
> To post to this group, send email to her...@googlegroups.com.
> To unsubscribe from this group, send email to
> heroku+unsubscr...@googlegroups.com
> .
> For more options, visit this group at
> http://groups.google.com/group/heroku?hl=en.
>
>


-- 
Neil Middleton

-- 
You received this message because you are subscribed to the Google Groups 
"Heroku" group.
To post to this group, send email to her...@googlegroups.com.
To unsubscribe from this group, send email to 
heroku+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en.



Re: Open support request stuck in "Awaiting assignment to a help desk operator." for 16 hours?

2010-08-13 Thread chris
No, I hadn't thought of that. Thanks. Probably a good idea, especially
since this is just a staging app... funny I can get support from you
before the actual heroku support team.

On Aug 13, 11:13 am, Abel Tamayo  wrote:
> It sure looks like something went wrong during that migration.  Have you
> considered just destroying that application and start again from scratch
> even moving to your desired stack before you push?
>
> On Fri, Aug 13, 2010 at 4:31 PM, chris  wrote:
> > Have a request open (#11626) that has just been sitting around,
> > awaiting assignment for entirely too long now. Not sure where else to
> > turn to get some support around here...
>
> > Maybe one of y'all can help me. Getting this error when I try to push
> > to a repo that I've recently stack:migrate'd:
>
> > pumpkin:bazaar chrismcc$ git push staging master
>
> > ! App git repo is being migrated. Please try again later.
>
> > fatal: The remote end hung up unexpectedly
>
> > ...
>
> > --
> > You received this message because you are subscribed to the Google Groups
> > "Heroku" group.
> > To post to this group, send email to her...@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.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Heroku" group.
To post to this group, send email to her...@googlegroups.com.
To unsubscribe from this group, send email to 
heroku+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en.



Re: Open support request stuck in "Awaiting assignment to a help desk operator." for 16 hours?

2010-08-13 Thread Abel Tamayo
It sure looks like something went wrong during that migration.  Have you
considered just destroying that application and start again from scratch
even moving to your desired stack before you push?

On Fri, Aug 13, 2010 at 4:31 PM, chris  wrote:

> Have a request open (#11626) that has just been sitting around,
> awaiting assignment for entirely too long now. Not sure where else to
> turn to get some support around here...
>
> Maybe one of y'all can help me. Getting this error when I try to push
> to a repo that I've recently stack:migrate'd:
>
> pumpkin:bazaar chrismcc$ git push staging master
>
> ! App git repo is being migrated. Please try again later.
>
> fatal: The remote end hung up unexpectedly
>
> ...
>
> --
> You received this message because you are subscribed to the Google Groups
> "Heroku" group.
> To post to this group, send email to her...@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.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Heroku" group.
To post to this group, send email to her...@googlegroups.com.
To unsubscribe from this group, send email to 
heroku+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en.



Open support request stuck in "Awaiting assignment to a help desk operator." for 16 hours?

2010-08-13 Thread chris
Have a request open (#11626) that has just been sitting around,
awaiting assignment for entirely too long now. Not sure where else to
turn to get some support around here...

Maybe one of y'all can help me. Getting this error when I try to push
to a repo that I've recently stack:migrate'd:

pumpkin:bazaar chrismcc$ git push staging master

! App git repo is being migrated. Please try again later.

fatal: The remote end hung up unexpectedly

...

-- 
You received this message because you are subscribed to the Google Groups 
"Heroku" group.
To post to this group, send email to her...@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.