You are getting the error message Error: cron job (cron.sh) error message: expr: syntax error because the commands included in Magentos cron.sh files are not portable.
To get it work you can change the following line in cron.sh:
if [ “$INSTALLDIR” != “” -a “`expr index $CRONSCRIPT /`” != “1” ];then
to something more portable:
if [ “$INSTALLDIR” != “” -a “`echo $CRONSCRIPT | sed -n ‘s/[/].*//p’ |
wc -c`” != “1” ];then
If you require help, contact SupportPRO Server Admin