On my site I have a basic search form that uses find_by_ferret which
will return users within the site and render the data that matches the
search criteria
If multiple rows are returned, the rows are rendered, and then
paginated, if more that X are returned. Sounds simple, (and worked
fine in dev)
However, In Production, I get a server(500) error: (We're sorry, but
something went wrong.
We've been notified about this issue and we'll take a look at it
shortly.)
When I look in the production.log the following is returned:
ActionView::TemplateError (undefined method `will_paginate' for
#<ActionView::Base:0xb5c6dc24>) on line #26 of app/views/buddies/
_search_form.rhtml:
23:
24: Your search results are below: <br /> <br />
25:
26: <%= will_paginate @buddies %>
27: <% end %>
28: <%= render :partial=>"result_summary" %>
29: <% end %>
although I understand the error, I dont get how it worked in dev, and
not in prod...
Any ideas?
Many, many Thanks
On Jan 1, 6:43 pm, RubyonRails_newbie <craigwest...@googlemail.com>
wrote:
> When I look in the production.log the following is returned:
>
> ActionView::TemplateError (undefined method `will_paginate' for
> #<ActionView::Base:0xb5c6dc24>) on line #26 of app/views/buddies/
> _search_form.rhtml:
> 23:
> 24: Your search results are below: <br /> <br />
> 25:
> 26: <%= will_paginate @buddies %>
> 27: <% end %>
> 28: <%= render :partial=>"result_summary" %>
> 29: <% end %>
>
> although I understand the error, I dont get how it worked in dev, and
> not in prod...
>
Sounds like you didn't install the will_paginate gem on your
production machine
Fred
Presumably installed at root level too?
Id best take another peek...
Thanks for the response...
On Jan 1, 10:48 pm, Frederick Cheung <frederick.che...@gmail.com>
wrote:
On Jan 2, 11:15 am, RubyonRails_newbie <craigwest...@googlemail.com>
wrote:
> I think will_paginate is installed.. should I be checking this in gem
> list --remote ?
--remote means it searches for gems on the gem servers - not relevant
here.
>
> Presumably installed at root level too?
What do you mean by root?
Fred
When i log onto my vhost, there is a root folder.
Should it be installed here, or actually where my app resides?
May be a daft question - sorry! :-)
What do you mean by root?
When i log onto my vhost, there is a root folder.
Should it be installed here, or actually where my app resides?
May be a daft question - sorry! :-)
Best regards
Peter De Berdt