I'm not really a perl programmer so forgive my ignorance!
I wrote this code, and it works:
I then changed it to this:
where $imageserver is one of 3 servers specified by IP address, eg:
I'm guessing it doesn't work because -e only works with local files and can't look onto a different server?
Is there a solution so that I can do what I want to do?
- Andy
___________________________________________________________________
If you think nobody cares you're alive, try missing a couple of mortgage payments
I wrote this code, and it works:
Code:
if (-e "../$logid/$celebid$imageDIMS$trans" . ".jpg")
I then changed it to this:
Code:
if (-e "$imageserver/$logid/$celebid$imageDIMS$trans" . ".jpg")
where $imageserver is one of 3 servers specified by IP address, eg:
Code:
$imageserver = "[URL unfurl="true"]http://111.222.333.444";[/URL]
I'm guessing it doesn't work because -e only works with local files and can't look onto a different server?
Is there a solution so that I can do what I want to do?
- Andy
___________________________________________________________________
If you think nobody cares you're alive, try missing a couple of mortgage payments