Displaying 20 results from an estimated 800 matches similar to: "Simply Getting Post Params"
2006 Jul 08
2
Creating/Saving dependent objects
Folks,
Am new to RoR and am building an example to get myself familiar. I am
running into a simple issue while creating a user registration page.
I have a User and Address models defined as below (partial/relevant code
included below). User has_one address and Address belongs_to user. I have a
foreign key defined in address table that refers to user(id)
In a form I take in username, password,
2005 Dec 17
1
lost in an ActiveRecord::StatementInvalid
I have an error I don''t know how to debug. I am adding the login  
suport in Depot (the example in the RoR book) and  
LoginController#add_user throws ActiveRecord::StatementInvalid in an  
innocent /login/add_user GET request.
The trace goes down to a call to SQLiteAdapter#table_structure, and  
the source code suggests what''s happening is that "PRAGMA  
2010 Jul 31
4
Exception: can't dup Symbol
Hey everybody,
I''m trying to test a little piece of code I wrote, and I get the
following error:
Exception: can''t dup Symbol
It happens in the following line: try_to_login @valid_user, :remember_me
=> "1",
where the function try_to_login is:
def try_to_login(user, options = {})
    user_hash = {:screen_name => user.screen_name, :password =>
user.password}
 
2005 May 17
2
Noob - ActionView::Helpers::FormOptionsHelper::select
Hi,
I''m just starting with Rails and i''m trying to do something like this:
<%= start_form_tag :action => ''add_user'', :id => @social_event_group %>
<%= select ''user'', ''id'' , User.find_all.collect {|u| [ u.login, u.id ] 
}%></p>
  <%= submit_tag "Add User" %>
<%= end_form_tag %>
2006 Apr 25
2
agile depot app login failure :(
Hi *,
In an attempt to go back to the drawing board and learn RoR some more -
I have built the depot application from the agile book.
After finishing I tried to create a user for the admin section, however
when ever I go to:
http://localhost:3000/login/add_user
It redirects to the login action, I don''t see the [add user] submit
button??
I am sure this is connected to the
2006 May 09
2
User.new doesn´t capture all of the parameters
Hi,
I have a page where I can add new users to the database, but it only  
sees whats in the name and passord field.
add_user.rhtml:
	<%= form_tag %>
	<%= form_tag :action => ''add_user'' %>
	<td>User name:</td>
	<td><%= text_field("user", "name") %></td>
	</tr>
	<tr>
		<td>Password:</td>
	
2017 May 27
3
idmap woes after upgrade
On 27 May 2017 12:45:
On Sat, 27 May 2017 11:02:36 +0000
Tim ODriscoll <tim.odriscoll at lambrookschool.co.uk> wrote:
> The other lines never did anything on a DC.
Thank you, I've removed them now..
> Unless you manually add uidNumber attributes to users and gidNumber
> attributes to groups, id mapping on a DC is done in idmap.ldb and
> results in ID numbers in the 3000000
2006 Jan 11
10
Recommend server for developing RoR on win
Hi all,
can you recommend me which web server config to use for developing rails 
on windows machine. I tried webrick, which is good but it''s annoying 
because console window is in taskbar for every site running and it have 
to be started manually. Apache with CGI is to slow and using FastCGI on 
the other side brings me lot of problems, like randomly not working RoR 
sites.
Any help is
2006 Mar 23
8
DRY principle - how to implement?
Hi all!
I have ''send_status'' table which looks something like these:
id      code    title
1 	sent 	Sent
2 	error 	Sending error
3 	success Success
Next I would like to associate some processed records with their 
''send_status''. Is it better to use:
1)
record.status_id = SendStatus.find(:one, :condition => "code=''sent''").id
to
2006 Jun 02
3
Advice, why value_before_type_cast in FormHelper?
I am wondering why is in creating text fields with form_helper used 
value_before_type_cast instead of attribute value for field value?
I set rails enviroment so date fields are in european format 
(dd.mm.yyyy) and would like to have same format in forms, but because of 
value_before_type_cast is called, form fields are filled with 
''yyyy-mm-dd'' or timestamp integer, etc.
2006 Feb 02
3
What is best way to show only records belonging to logged user?
Hi all,
What is best way to show only records belonging to logged user? I 
understand that it is better to handle this in model and not controller. 
I am thinking of intercepting find methods in model and add clause 
something like "WHERE id_user = #{user_id}". I would like to hear if you 
would do it likewise and if yes is it better to hack find_by_sql() or 
find() method?
thanks in
2006 Jul 26
7
RHTML in database?
Hi,
is it possible to store RHTML templates or partials in database?
thanks,
Bojan Mihelac
-- 
Bojan Mihelac
Informatika Mihelac, Bojan Mihelac s.p.  |  www.informatikamihelac.com
-> tools, scripts, tricks from our code lab: http://source.mihelac.org
2006 Jun 21
5
module and cache/restarting server
Hello,
 It seems I need to restart webrick everytime I modify a module in order 
for my modifications to be taken into account. Is this normal and is 
there a workaround?
 Regards,
-- 
----------------------------------------------------------------------
Yannick Majoros http://www.inma.ucl.ac.be/~majoros
Informaticien UCL/INMA-MEMA
4, avenue G. Lema?tre
B-1348 Louvain-la-Neuve
Tel:
2008 Dec 31
7
Understand submit_tag
Hi everyone,
I was following the book Agile Web Development with Rails 2Ed. by Dave
Thomas.
So, at some part of my studies, I decided to try to create my own
application based on what I''ve learned...
Now I''m in trouble in a simple form.
I tried to create a form to register new users.
I''m sending attached the files that I created for this.
but my view don''t
2006 Mar 23
11
Contact page
Hi
I have justed started using Rails.
How do I create a contact page. By this I mean one with a contact form 
etc.
Thanks
-- 
Posted via http://www.ruby-forum.com/.
2006 Jun 12
2
Pdf::Witer question
Does anyone knows how to embed Type1 font with PDF::Writer? I read 
manual, tried everything but nothing seems to work (The font ''FontName'' 
contains a bad /BBox error on PDF).
any help or hint would be really appreciated,
Bojan Mihelac
-- 
Bojan Mihelac
Informatika Mihelac, Bojan Mihelac s.p.  |  www.informatikamihelac.com
-> tools, scripts, tricks from our code lab:
2010 Apr 26
2
woriking under webrick but not under passenger
Hi!
I have just added login feature to my rails application (followed the
instruction from (Agile Web Development with Rails) but now I am getting
strange errors (looks to me like some kind of routing problem) under the
passenger/apache.
The error is:
500 Internal Server Error
The server encountered an internal error or misconfiguration and was
unable to complete your request.
From the log:
 
2006 Jun 20
3
return unique rows with finders
I''m looking through the api for something like find(:all, :distinct => true)
so that multiple instances of a row won''t be returned - is this possible?
Thanks!
2006 Jan 26
2
Newbe Question: Character Encoding
I have to present german umlaute as "?" on my webpage. When writing the 
text within the view, everything is fine - the characters are presented 
correctly. When I declare variable within the controller (e.g. via flash 
or as a list of values for a listbox) the text is displayed with the 
umlaute replaced by strange characters.
I assume I have to adjust the character encoding somewhere.
2006 Jun 20
1
Possible to check if form field is required?
Hi list,
is it possible to check if form field will be required when form is 
submitted (through validates_presence_of or some other validates_* 
method)? I could do this manually but it doesn''t seems to me very DRY.
For example, I would like to be able to dynamically add asterisk with 
some helper method if city is required here:
City*: <%= text_field