Displaying 3 results from an estimated 3 matches for "feadler".
Did you mean:
eadler
2006 May 11
3
LightHTTPD FastCgi Error in Production Mode
I''ve been banging my head against the following for about 8 hours now,
and have exhausted my web research options:
/usr/home/matthew.feadler/rails/avclfc/public/dispatch.fcgi:21:in
`require'': no such file to load --
/usr/home/matthew.feadler/rails/avclfc/public/../config/environment
(LoadError)
from
/usr/home/matthew.feadler/rails/avclfc/public/dispatch.fcgi:21
2006-05-11 04:21:12: (mod_fastcgi.c.1048) the fastcgi-b...
2006 Feb 28
6
How To Validate Boolean Form Field
Hello all.
I''ve got the following in my model:
class Individual < ActiveRecord::Base
validates_presence_of :first_name, :last_name, :street, :city,
:state, :zip
validates_acceptance_of :AZ_resident, :message => "You must be an
Arizona resident."
end
The AZ_resident field is present and defined as boolean (PostgreSQL
8.1), but validation will not occur.
2006 May 02
3
CSS for flash messages
Hello all,
I''m perplexed by the following:
I''ve implemented flash messages in my application.rhtml with:
<% for name in [:notice, :warning, :message] %>
<% if flash[name] %>
<%= "<p id=\"#{name}\" class=\"flash\">#{flash[name]}</p>" %>
<% end %>
<% end %>
I''ve implemented CSS in