Well Luke,
I do see some problems here.
Luke Drumm wrote:
> The httpd logs indicate that any external HTTP requests (ie.
> from the 'net) are being directed through to /primary/html
> directory (irrespective of whether it be html or cgi).
>
> eg.
>
>
http://myserver.xxx --> /home/e-smith/files/primary/html/
your path for the above only needs to go as far as /primary/. Do not include the html directory.
>
http://myserver.xxx/cgi-bin/ --> /home/e-smith/files/primary/html/cgi-bin/
Once again, the true path for
http://myserver.xxx/cgi-bin/ would be
/home/e-smith/files/primary/cgi-bin/ without the html directory. You need to bypass that al together .
>
http://myserver.xxx/ibay/ --> /home/e-smith/files/primary/html/ibay/
your true path to this line should look like /home/e-smith/files/ibays/ibay/
>
http://myserver.xxx/ibay/cgi-bin/ -->> /home/e-smith/files/primary/html/ibay/cgi-bin/
and this of course would be /home/e-smith/files/ibays/ibay/cgi-bin/
> The ibay included in the test was indeed set to "Internet
> - everybody" for read/execute permissions. I've checked
> the ownership of the files & directories and they all seem
> to be okay (ie. Set to the right user/group).
>
> Any ideas?
so you have been routing everything through your primary html directory as your log indicated. Please let me know if I can help you more, or if any of this is unclear.
> Luke.
>
Garret