Search results

  1. J

    Perl 5.8.0 / Sendmail

    you need to setup your test directory so that apache will parse perl scripts as perl scripts and not html files. there are two ways to do this: ScriptAlias /test/ "/Library/Webserver/test/" or <Directory "/Library/Webserver/test"> Options ExecCGI </Directory> you will...
  2. J

    Hacking Darwin to remove .DS_Store

    michaelsanford, i am proud to say that i have never owned a machine with Micro$oft Window$. these ._* files appear on my Slackware Linux box when i transfer files via Samba. so, i guess it is a Mac-based problem but not specifically Samba or Window$ related. i guess i need to get cracking...
  3. J

    Hacking Darwin to remove .DS_Store

    amen brother. i write code on my mac and then place it on my slackware server via samba. i'm getting really sick of having to clean out all of these files. other than .DS_Store, i also get a ._* equivalent of any file that i drag over (a samba issue, i believe), so in reality, transferring 20...
  4. J

    Cron Help Please

    i don't know. i've never had that problem. my cron jobs have always been updated instantly. good luck.
  5. J

    Cron Help Please

    ps -ax | grep cron will tell you if the daemon is running. unfortunately, i'm only running 10.1.5, so i'm not sure if your installation is different. i can say that i don't think they would remove cron from the default install as it's highly useful. ###### to test if cron works make a...
  6. J

    bash: changing the prompt

    in ~/.tcshrc: set prompt="whatever" i like: set prompt="%t [%/]$ "
  7. J

    Starting MySQL on boot (10.1.5)?

    to make a symlink: ln -s /path/to/file/or/directory name_of_link as for starting items at boot, i found this a while back: http://softwaredev.earthweb.com/sdtech/article/0,,12065_985561,00.html it is for tomcat, specifically, but i'm sure you can modify the tutorial for whatever...
Back
Top