Does this function work serverside?
I have a system in which you can upload files to a webserver then on the server it gets all the files by doing requesturl on a php script.
It then has a for loop which gets all the files and is supposed to upload them.
It just returns: Script: Function uploadfile not found at line 15 in script of UploadSystem.
Any idea's?
Edit: I have done some research.
My question is now: Is it possible to upload a file from a URL to a GServer?
I have tried
PHP Code:
//#CLIENTSIDE
function onCreated(){
Upload();
}
function Upload(){
requestText("folder", "PERSONAL");
uploadfile("http://www.wr3ckless.net/corinthia/uploads/shop_hatshop.nw");
}
aswell, with no luck.