#!/bin/bash
#you must login as root or SU to do these
#
#BTW,Linux will autoDelete temp files older than 10 days old,
#so maybe these commands are not nessesary
#
#for windows, delete all files in "cache"(maybe D:/Apache/tmp/cache) folder
#
#CAUTION: Don't place this file under your cgi-bin!
#CAUTION: Don't place this file under your cgi-bin!
#CAUTION: Don't place this file under your cgi-bin!
#CAUTION: Don't place this file under your cgi-bin!
#CAUTION: Don't place this file under your cgi-bin!
rm /tmp/cache -fr
mkdir /tmp/cache -fr
chown nobody:nobody /tmp/cache
chmod 700 /tmp/cache |