Displaying 3 results from an estimated 3 matches for "wingateweb".
2005 May 19
3
Timezone Configuration
Greetings All,
How to does one go about reconfiguring centos's time zone
configuration (to the eastern time zone (us)), via the command line?
I have tested other GNU/Linux distribution's documentation, tools,
files and relevant details with centos and have thus far been unable
to find a compatible solution.
My apologies if my question is very simple, I have done a fair amount
of
2006 Apr 16
2
:after_update_element on text_field_with_auto_complete
I have a a basic prototype coded:
#view
<%= text_field_with_auto_complete :student, :last_name, { :size => 15
},
:after_update_element => "alert(''hello world'');" %>
#controller
class ScoresController < ApplicationController
auto_complete_for :student, :last_name
end
If I take out the :after_update_element option everything works as
advertised.
2006 Mar 19
0
Oracle connection problems when connecting to multiple databases
I have a rails application that connects to two different databases. The
first (primary) database is MySQL and the second is Oracle. I have followed
the example in the Rails Recipes book and I have created a base class for
the models connecting to oracle like this:
class ConferenceBase < ActiveRecord::Base
establish_connection :conference
end
:conference is setup in the database.yml.
A