[quote=“Mark Shelton, post: 45080, member: 423”]OK, just tried with 3221, which must have been submitted in the last hour. Still fails but I get a message now. Screenshot attached.
Regards, Mark[/quote]
Mark,
I just tested a work-around because I ran into this at home…
go to here:
[CODE]/root/svn/trunk/lib/<your flavor of linux>/[/CODE]
edit this file:
[CODE]functions.sh[/CODE]
towards the bottom, you’ll see stuff about “New FOG Client”
It’ll look like this, depending on your flavor of linux… but it’ll be similar…
[CODE]if [ ! -f “$webredirect” ]
then
echo “<?php header(‘Location: ./fog/index.php’);?>” > $webredirect;
fi
echo “OK”;
echo -n " * Downloading New FOG Client file…";
cwd=pwd
;
cd $webdirdest/service;
count=0;
while [ -z “$clientVer” -a “$count” -le 10 ]; do
clientVer=php -f ${webdirdest}/service/getclient.php
;
count=expr $count '+' 1
sleep 2;
done
if [ -z “$clientVer” ]; then
echo “Failed to get client version”
exit 1
fi
[/CODE]
Where you see this line:
[CODE]exit 1[/CODE]
Just put a hash tag in front of it like this:
[CODE]#exit 1[/CODE]
What this does is allow the script to try to download the new fog client, but if it fails, it won’t exit the installation script…
If you do this, I’d still highly recommend working with Tom fully to try to resolve the issue though.
Also, if your install fails to download the new fog client, YOU WON’T HAVE THE NEW FOG CLIENT… so don’t try to use it.
However, the old client will still be available for use.