in reply to Randomly working script using LWP::Simple

Check the return value and try grabbing the file a few times.
my $i = 0; while(1){ if($settingstext = get($settingsurl)){ last; }else{ if(++$i == 5){ print "Can't get $settingsurl\n"; ##More error handling stuff here } } }

- Tom