Jenolan | : | To save money web site hosting has been reduced and AWS file hosting of the compendium removed |
shenley | : | Thanks for the update, Larry. Just spoke to Norm and he sounded in good spirits. He said life in the retirement village was very good. Like you said, he misses all the great RBR days (we all do). I've now got the phone number to his room so it will be easier for me to ring him in the future. He said he had to go because Bingo was on in a few minutes. ![]() |
Jenolan | : | Norm said he is having a lot of problems with his sight, miss all of the old crew RBR was really something grand when it was rocking |
shenley | : | Thanks, Larry. I was wondering how Norm was getting on in the aged-care facility. I will give him a phone call soon. He said it might be difficult getting through to him now. Not surprised he has retired from RBR scenarios. Pleased he is still OK. Regards, Peter |
Jenolan | : | Heard from Norm, no more RBR... I am still pondering paying (again) for the latest Trainz and writing Activities using the terrible rule based sessions |
shenley | : | Nice to hear your updates, Larry. Hope the move hasn't been too much of a problem. Regards, Peter |
Jenolan | : | Bought a Ryobi lawn mower (battery 18v) to do our tiny lawn, and a transfer pump to use the bath water on the garden |
Jenolan | : | After more than a month of missing the farm, the worst thing drinking water, miss our clean fresh rain water tanks every day. And the morning kookaburras, maggies, even the wombat |
Jenolan | : | Weather for West Bathurst (our Endolin) is now active ![]() |
Jenolan | : | We have named our new house Endolin ... see if you can work out the reference. Disney movie, computer based, debug mode on. |
This is not Jenolan Caves, we use the Jenolan name because we love the Jenolan, Abercrombie, Wombeyan, & Yarrangobilly caves.
Check through your web sites for those pesky PHP error logs
#!/bin/bash
# Put the line below (without the #) into your cron "crontab -e" this one is hourly
#0 * * * * /root/bin/sendlog > /dev/null 2>&1
DIR="/home"
LOG="/tmp/sendlog.mail"
rm $LOG &> /dev/null
# Do not check these direcorties
IGNORE=".cpan .cpanm .cpcpan cPanelInstall clamav cpeasyapache virtfs"
# Get list of all directories
LIST='ls /home'
for path in $LIST; do
# set skip variable
skip=0
if [ "$IGNORE" != "" ]; then
for i in $IGNORE; do
[ "$path" == "$i" ] && skip=1 || :
done
fi
if [ "$skip" == "0" ]; then
#echo "--------------------------------------------------------" >> $LOG
#echo "Scanning :: $path" >> $LOG
#echo "--------------------------------------------------------" >> $LOG
ERRORS='find /home/$path -name error_log'
for err in $ERRORS; do
echo "--------------------------------------------------------" >> $LOG
echo "Error File :: $err" >> $LOG
echo "--------------------------------------------------------" >> $LOG
cat $err >> $LOG
rm $err &> /dev/null
done
fi
done
if [ -f $LOG ]
then
mail -s "PHP Error Log" myname@example.com < $LOG
fi
rm $LOG &> /dev/null