OK, I've got OpenMerchant (I think) working with PostGres. At least
the DB takes the skeleton to create a DB, and it appears configured.
However, in connecting through Apache, I get a message:
-----------------------------------------
Forbidden
You don't have permission to access /index.cgi on this server.
Apache/1.3.9 Server at www.tuxbiz.com Port 80
--------------------------
index.cgi has permissions rwxr-xr-x nobody.nobody (which is what httpd
is running as).
I've configured the virtual server as shown here:
<virtualhost 127.0.0.1>
ServerAdmin jsmith@localhost
DocumentRoot /home/httpd/tuxbiz
ServerName www.tuxbiz.com
ErrorLog logs/www.tuxbiz.com-error_log
TransferLog logs/www.tuxbiz.com-access_log
AddHandler cgi-script .cgi
AddType text/html .shtml
AddHandler server-parsed .shtml
ScriptAlias /cgi-bin/ /home/httpd/tuxbiz/cgi-bin/
<Directory /home/httpd/tuxbiz/html">
AllowOverride all
Options Indexes Includes FollowSymlinks
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
any ideas?
If necessary, I will post my httpd.conf file
jeff smith