View Single Post
  #7   (View Single Post)  
Old 12th May 2008
erehwon erehwon is offline
Port Guard
 
Join Date: May 2008
Location: Cascadia
Posts: 34
Default

Quote:
Originally Posted by J65nko View Post
You should remove these lines from /etc/rc.conf.local. This file should only contain variable assignments and not any executable shell commands.
Code:
# ddclient
  if [ -x /usr/local/sbin/ddclient ]; then
     echo -n ' ddclient'; /usr/local/sbin/ddclient
  fi
The proper place for this is the file /etc/rc.local.

The apachectl files reads/sources the /etc/rc.conf file. Because rc.conf reads in rc.conf.local, your commands to load ddclient are executed. So you have to take these commands out and put them in the proper file /etc/rc.local
Thanks! I was asleep at the wheel

Quote:
Does the Apache logs complain that it cannot find your css file?
The logs don't contain any errors relating to the css file, that I can find.
Reply With Quote