undefined method `acts_as_ferret'

2009-06-02 Thread Shane Mingins

Hi

I just added using ferret and acts_as_ferret to my app using these
instructions: http://docs.heroku.com/full-text-indexing

App is fine locally.

But on Heroku, app fails to start up with undefined method `acts_as_ferret'

Any thoughts on what I need to do?

Cheers
Shane

-- 
Shane Mingins

--~--~-~--~~~---~--~~
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: Small tutorial about Heroku/Github

2009-06-02 Thread Giorgio Clavelli
Thank you very much Thomas

Giorgio

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Missing template error on Heroki, not on local machine

2009-06-02 Thread Thomas Balthazar

Hello,

I've got an error in a Rails app on Heroku.
I don't have this error on my local machine (Mac OS X 10.5.7 / Rails 2.3.2).

The error is about a template that is not found :
ActionView::MissingTemplate (Missing template bar/../foo/test.rjs in
view path app/views):

To help you to clearly understand the error, I've created a simple
Rails app with 2 controllers and 2 actions that isolates the error. (I
originally had this error on a 'more complex' app).

I've recorded a small screencast (1Mb) that shows the error :
http://dl.getdropbox.com/u/40466/tmp/heroku-error.mov

And here is the Rails app code so you can reproduce it very easily :
http://github.com/suitmymind/heroku-error/tree/master

The app on Heroku :
http://heroku-error.heroku.com/foo/index

Has someone already faced a similar error?

Best,
Thomas.

--~--~-~--~~~---~--~~
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: Git/Heroku on Windows

2009-06-02 Thread Sarah Mei

Try opening git bash (should have been installed with git). Then try:

ssh-keygen -C "y...@email.address" -t rsa

If it's still not found, then you didn't install OpenSSH with git.
>From your home directory it sounds like you're on Vista. I have really
detailed directions for Windows Server 2003. It should work if you
replace any reference to C:\Documents and Settings\users\[whatever]
with C:\Users\[whatever]

http://wiki.devchix.com/index.php?title=Server_2003
Obviously you won't need most of the instructions - just "Git" and
"Create an SSH public key".

If you get significantly different results on Vista, feel free to edit
or create a new page on the wiki.

Sarah

On Tue, Jun 2, 2009 at 12:28 PM, Ed Jones  wrote:
> C:\ssh>ssh-keygen -t rsa
> 'ssh-keygen' is not recognized as an internal or external command,
> operable program or batch file.

--~--~-~--~~~---~--~~
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: Git/Heroku on Windows

2009-06-02 Thread Keenan Brock

Hi Ed,

Do you have ssh installed?

maybe install putty.

Can't remember more than that to use those tools.

--Keenan
On Jun 2, 2009, at 3:28 PM, Ed Jones wrote:

>
> Thanks Ken. I get:
>
> C:\ssh>ssh-keygen -t rsa
> 'ssh-keygen' is not recognized as an internal or external command,
> operable program or batch file.
>
> C:\ssh>
>
> Ed
>
>
>
> On Jun 2, 1:26 pm, Keenan Brock  wrote:
>> Hi Ed,
>>
>> it looks like you don't have a HOME variable set
>>
>> so it is trying to store your ssh key in c:\.ssh
>>
>>  > mkdir c:\.ssh
>>  > ssh-keygen -t rsa
>>
>> and make sure the public/private keys are copied into the directory.
>>
>>  > heroku keys:add
>>
>> Good luck
>>
>> --Keenan
>>
>> On Jun 2, 2009, at 12:58 PM, Ed Jones wrote:
>>
>>
>>
>>> Sill hoping to get my app onto Heroku!
>>
>>> I'm up to Step 5: Now the big moment: deploy!
>>
>>> $ git push heroku master
>>
>>> I get:
>>
>>> C:\Users\Ed\webapps\whendidji>git push heroku master
>>> Could not create directory '"C/.ssh'.
>>> The authenticity of host 'heroku.com (75.101.145.87)' can't be
>>> established.
>>> RSA key fingerprint is 8b:48:5e:67:0e:c9:16:47:32:f2:87:0c:
>>> 1f:c8:60:ad.
>>> Are you sure you want to continue connecting (yes/no)? yes
>>> Failed to add the host to the list of known hosts ("C/.ssh/
>>> known_hosts).
>>> Permission denied (publickey).
>>> fatal: The remote end hung up unexpectedly
>>
>>> C:\Users\Ed\webapps\whendidji>
>>
>>> Various searches hint at things, but nothing really current or
>>> definitive.
>>
>>> Thanks!!
>>
>>> Ed
> >


--~--~-~--~~~---~--~~
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: Git/Heroku on Windows

2009-06-02 Thread Ed Jones

Thanks Ken. I get:

C:\ssh>ssh-keygen -t rsa
'ssh-keygen' is not recognized as an internal or external command,
operable program or batch file.

C:\ssh>

Ed



On Jun 2, 1:26 pm, Keenan Brock  wrote:
> Hi Ed,
>
> it looks like you don't have a HOME variable set
>
> so it is trying to store your ssh key in c:\.ssh
>
>  > mkdir c:\.ssh
>  > ssh-keygen -t rsa
>
> and make sure the public/private keys are copied into the directory.
>
>  > heroku keys:add
>
> Good luck
>
> --Keenan
>
> On Jun 2, 2009, at 12:58 PM, Ed Jones wrote:
>
>
>
> > Sill hoping to get my app onto Heroku!
>
> > I'm up to Step 5: Now the big moment: deploy!
>
> > $ git push heroku master
>
> > I get:
>
> > C:\Users\Ed\webapps\whendidji>git push heroku master
> > Could not create directory '"C/.ssh'.
> > The authenticity of host 'heroku.com (75.101.145.87)' can't be
> > established.
> > RSA key fingerprint is 8b:48:5e:67:0e:c9:16:47:32:f2:87:0c:
> > 1f:c8:60:ad.
> > Are you sure you want to continue connecting (yes/no)? yes
> > Failed to add the host to the list of known hosts ("C/.ssh/
> > known_hosts).
> > Permission denied (publickey).
> > fatal: The remote end hung up unexpectedly
>
> > C:\Users\Ed\webapps\whendidji>
>
> > Various searches hint at things, but nothing really current or
> > definitive.
>
> > Thanks!!
>
> > Ed
--~--~-~--~~~---~--~~
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: Git/Heroku on Windows

2009-06-02 Thread Keenan Brock

Hi Ed,

it looks like you don't have a HOME variable set

so it is trying to store your ssh key in c:\.ssh

 > mkdir c:\.ssh
 > ssh-keygen -t rsa

and make sure the public/private keys are copied into the directory.

 > heroku keys:add


Good luck

--Keenan

On Jun 2, 2009, at 12:58 PM, Ed Jones wrote:

>
> Sill hoping to get my app onto Heroku!
>
> I'm up to Step 5: Now the big moment: deploy!
>
> $ git push heroku master
>
> I get:
>
> C:\Users\Ed\webapps\whendidji>git push heroku master
> Could not create directory '"C/.ssh'.
> The authenticity of host 'heroku.com (75.101.145.87)' can't be
> established.
> RSA key fingerprint is 8b:48:5e:67:0e:c9:16:47:32:f2:87:0c:
> 1f:c8:60:ad.
> Are you sure you want to continue connecting (yes/no)? yes
> Failed to add the host to the list of known hosts ("C/.ssh/
> known_hosts).
> Permission denied (publickey).
> fatal: The remote end hung up unexpectedly
>
> C:\Users\Ed\webapps\whendidji>
>
> Various searches hint at things, but nothing really current or
> definitive.
>
> Thanks!!
>
> Ed
> >


--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Git/Heroku on Windows

2009-06-02 Thread Ed Jones

Sill hoping to get my app onto Heroku!

I'm up to Step 5: Now the big moment: deploy!

$ git push heroku master

I get:

C:\Users\Ed\webapps\whendidji>git push heroku master
Could not create directory '"C/.ssh'.
The authenticity of host 'heroku.com (75.101.145.87)' can't be
established.
RSA key fingerprint is 8b:48:5e:67:0e:c9:16:47:32:f2:87:0c:
1f:c8:60:ad.
Are you sure you want to continue connecting (yes/no)? yes
Failed to add the host to the list of known hosts ("C/.ssh/
known_hosts).
Permission denied (publickey).
fatal: The remote end hung up unexpectedly

C:\Users\Ed\webapps\whendidji>

Various searches hint at things, but nothing really current or
definitive.

Thanks!!

Ed
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Small tutorial about Heroku/Github

2009-06-02 Thread Thomas Balthazar

Hi,

I thought I might share it here :

"Deploying multiple environments on Heroku (while still hosting code on Github)"
http://bit.ly/HerokuGithub

Best,
Thomas.

--~--~-~--~~~---~--~~
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 Still Has Issues

2009-06-02 Thread ref3at

The editor works fine for me but the application won't run, I get a
504 Gateway Time-out error nginx/0.6.32 and that's been the case for
almost a week. I depend on herokugarden for development and it's
getting frustrating.

On Jun 1, 8:17 pm, Ed Jones  wrote:
> Yeah, my deployed app finally works after a weekend reboot by the
> Heroku team.
>
> Yet I still can't edit. The editor comes up, but the ajaxy features
> don't work. (FF 3.0.10) IE I can't see the contents of any
> directories.
>
> Ed
> (app whendidit)
>
> On May 18, 8:45 pm, Mark  wrote:
>
>
>
> > I am still having issues accessing my projects on herokugarden. I have
> > to do multiple refreshes, and half of those get me 500 errors. (500
> > Internal Server Error nginx/0.6.32)
>
> > Is there something going on? Is it just me? When will this be fixed?
--~--~-~--~~~---~--~~
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: Clarification of Blossom

2009-06-02 Thread Arvind Gupta
If this is the case I will go with concurrent apllications.

For example application can be divided for multiple users.  In this case
database should also be consider and application. Multiple users can have a
database.

On Tue, Jun 2, 2009 at 1:12 PM, Pedro Belo  wrote:

>
> 5mbs is the limit for the database. And that's for each app.
>
> The code can have up to 20mbs at this moment (not including git files).
>
> On Mon, Jun 1, 2009 at 10:05 PM, Arvind Gupta
>  wrote:
> > Hi foi
> >
> > I will go for the entire account. I would also like to have one common
> > identity application which account for all applications and users.
> >
> > -regds
> > arvind
> >
> > On Tue, Jun 2, 2009 at 10:25 AM, foi  wrote:
> >>
> >> Hello, the blossom "5MB storage Fits a blog, personal site or small
> >> project wiki.". Are you 5 megabytes of the database you give to one
> >> application or for one account? How do you provide a place for the
> >> application code (in mb) (for the entire account or for one
> >> application on my account)?
> >>
> >> Sincerely foi.
> >>
> >> English is not my root language, excuse 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 
heroku+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: Clarification of Blossom

2009-06-02 Thread Pedro Belo

5mbs is the limit for the database. And that's for each app.

The code can have up to 20mbs at this moment (not including git files).

On Mon, Jun 1, 2009 at 10:05 PM, Arvind Gupta
 wrote:
> Hi foi
>
> I will go for the entire account. I would also like to have one common
> identity application which account for all applications and users.
>
> -regds
> arvind
>
> On Tue, Jun 2, 2009 at 10:25 AM, foi  wrote:
>>
>> Hello, the blossom "5MB storage Fits a blog, personal site or small
>> project wiki.". Are you 5 megabytes of the database you give to one
>> application or for one account? How do you provide a place for the
>> application code (in mb) (for the entire account or for one
>> application on my account)?
>>
>> Sincerely foi.
>>
>> English is not my root language, excuse 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 
heroku+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---