An app running nightly by schedule on a Windows VM stopped working when the IT department cracked down on security, downgrading the privileges of the user. When this was reversed - and they swore there were no other changes - it still didn't work properly because it failed to read some local data files.

It turned out that the issue was that I was reading the data as
        put URL format("binfile://%s", tPath) into tData

this was working, but now returned "can't open file". Changing the statement to
        put URL format("binfile:%s", tPath) into tData

fixed the issue, so it's fine. But my question would be does anyone know what would have changed on the system to make this statement, that used to work, do so no longer?

Many thanks,

Ben

_______________________________________________
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Reply via email to