On Mon, 2004-04-12 at 16:29, Russell Davie wrote: > Hi > problems with cgi and lots of questions for a newbie.... <Snipped> > [Mon Apr 12 16:10:09 2004] [crit] (98)Address already in use: make_sock: > could not bind to port 80
This log line tells you something is already attached to port 80, probably another running Apache process. At this point Apache dies and any browsing you do will be on the old Apache setup that isn't using your modified conf files. apachectl is your friend. apachectl configtest is a great way to verify your apache conf file(s). and apachectl restart ensures you don't get the error above by trying to start a second Apache process without killing the first. Cheers, Malcolm V. -- SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/ Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html
