Displaying 2 results from an estimated 2 matches for "fcgid_sock".
2007 May 29
4
undefined method `define_a_column' for class `OCI8::Cursor'
Hi,
Environment: Solaris 10, Orale 10g, Apache 2.2, Ruby 1.8.4, Rails
1.2.3, Ruby OCI8 1.0.0-rc2
As soon as I compiled and installed the Ruby/OCI8 interface, I got the
following error from my application:
=========================
[notice] mod_fcgid: call /export/home/invido/invido/portal2/public/
dispatch.fcgi with wrapper /usr/local/bin/ruby /export/home/invido/
2006 Nov 09
0
Apache configuration
...od -R g+w cookbook/tmp/
5. find /var/www/rails/cookbook/ -type d -exec chmod g+x {} \;
Configure Apache
1. vi /etc/httpd/conf.d/fcgid.conf
Insert the following:
LoadModule fcgid_module /usr/lib/httpd/modules/mod_fcgid.so
<IfModule mod_fcgid.c>
SocketPath /tmp/fcgid_sock/
AddHandler fcgid-script .fcgi
</IfModule>
1. vi /etc/httpd/conf.d/hosts.conf
(Personally, I put all my custom Apache configuration in this file
to keep things organized)
Insert the following:
<VirtualHost *:80>
SetEnv RAILS_ENV development...