Displaying 9 results from an estimated 9 matches for "zahda".
2007 Dec 07
2
Pagination using will_paginate
Hi,
I use will_paginate plugin to paginate the records in my view file..
I implement the same in 2 of my modules..
Its working fine in one module where i perform only the basic CRUD
operation.
In the other module i do have search option. This plugin behaves
different for that method..
Normally if one click the page number links the request will be posted
back to the same action or method
2009 Mar 31
9
Application without database.yml
Hi,
I have created one application. In that application I am not using any
database.
Whenever I starting rails server it is giving me an error for
configuration of database.yml.
What should I do for this?
Thanks,
Tushar
--
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
2008 Jun 21
15
will_paginate generates undefined method paginate
Dear
I used to use the will_paginate plugin, and now it is no longer
available in the repository.
I am using the one in the gem
#gem install will_paginate
in my controller I have this
@careers = Career.paginate :page => params[:page], :per_page => 10
and in the view
<%= will_paginate @careers %>
I found this way in all the tutorials and the railscasts episode 51.
Though I still
2008 Jun 30
1
rake aborted! undefined method `time_zone=' for #
Dear
I have uploaded one project on my account on one of the servers. When
I do migrate
the database rake db:migrate
i get this error
rake aborted! undefined method `time_zone='' for #
any idea on how to solve this problem
Thanks
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails:
2008 Sep 15
0
Webpage has expiered problem
Dear all
some of my users complained about the following error. It appears on
Internet Explorer but not on Firefox
is there any solution to this problem from the server side.
Webpage has expired
Most likely cause:
The local copy of this webpage is out of date, and the website
requires that you download it again.
What you can try:
Click on the Refresh button on the toolbar to reload
2008 Nov 21
1
filter_parameter_logging and https
Hi guys
I am not pretty sure where to use filter_parameter_logging
is it in the configuration file, the model, or the controller.
How do I use https? is there any tutorial?
thanks
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to
2009 Jan 31
1
fckeditor and rails 2.2.2
Hi there
after I upgraded to rails 2.2.2, i got the error -> undefined
fckeditor_textarea method
while it works fine on rails 2.1.0
any idea?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to
2009 Apr 02
0
validates_uniqueness_of does not work for non-latin characters
Hi there
I am wondering about validates_uniqueness_of :name
when I enter the name in English, it works fine
when I enter the name in arabic, it does not validate it and it added
the name though the name has been added before
any idea??
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk"
2009 Mar 05
4
before_filter :action_name OR :action_name
Hi there
I am wondering if we can use before_filter in the form of :action
OR :action
what i want to do is to implement one of the actions, if the first
failed, then go to the second
when i use
before_filter :action1
before_filter :action2
each method will run them, my case is that i want to check if one of
them is true and not both
any idea?