I can run sqlplus as follows:
=========================
> LD_LIBRARY_PATH=/usr/local/instantclient_10_2
> /usr/local/instantclient_10_2/sqlplus
SQL*Plus: Release 10.2.0.3.0 - Production on Tue May 29 20:53:44 2007
Copyright (c) 1982, 2006, Oracle. All Rights Reserved.
Enter user-name:
=========================
This is how my httpd.conf looks:
=========================
<VirtualHost *:80>
ServerAdmin [EMAIL PROTECTED]
DocumentRoot /home/username/myapp/public
ServerName myapp.acme.com
ServerAlias myapp
ErrorLog logs/myapp.acme.com-error_log
CustomLog logs/myapp.acme.com-access_log common
# Taken from http://fastcgi.coremail.cn/configuration.htm#Ruby
# and modified for Apache 2.2
#SocketPath /tmp/fcgid_sock
#SharememPath /tmp/fcgid_shm
SetEnv RAILS_ENV production
SetEnv LD_LIBRARY_PATH /usr/local/instantclient_10_2
<Directory /export/home/invido/invido/portal2/public>
Options ExecCGI FollowSymLinks
AllowOverride AuthConfig Indexes Limit FileInfo Options
Order allow,deny
Allow from all
AddHandler fcgid-script .fcgi
FCGIWrapper "/usr/local/bin/ruby /home/username/myapp/public/
dispatch.fcgi" .fcgi
RewriteEngine On
RewriteRule ^$ index.html [QSA]
RewriteRule ^([^.]+)$ $1.html [QSA]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ dispatch.fcgi [QSA,L]
</Directory>
</VirtualHost>
=========================
I restart Apache but still get "define_a_column" error
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby
on Rails: Core" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/rubyonrails-core?hl=en
-~----------~----~----~----~------~----~------~--~---