Ryan Pavlik wrote: >On Tue, 2 Sep 2003 04:25:04 +0900 >mgarriss <mgarriss / earthlink.net> wrote: > > > >>When trying to execute this one line ruby cgi file with mod_ruby: >> >>raise 'postgres' unless require 'postgres' >> >> > >Two things: > > 1) mod_ruby keeps the same interpreter around for each invocation; > you don't get a new one (so previously required stuff is still > loaded) > > 2) require returns false if you try and require something that's > already been required > >This should make what's happening clear, I hope. ;) > YES! I'm a bit slow sometimes, ugh, I need this kind of push every so often. The postgres.so lib was linking to some pg libs that where hidden to the world. I changed that awhile ago but never restarted apache. Thank you so much! Michael