NOTEAs of Philo 3v2, this is standard. Use these instructions to alter a Philo3v1 install. The ProblemRunning more than one philoload command at the same time doesn't work. We need a locking mechanism to prevent this from happening. The original realease of Philologic 3 didn't have this mechanism. The SolutionAdd this cocde to philoload: # Check to see if the lock file exists.... if so, die Then later: &genfilelist; This will check to see if the lockfile exists. If it does, it dies with a warning. If it doesn't, it will print out the philoload PID to the lock file in the $PHILOTMP directory and remove it after processing is done. |