Blockland Forums > Modification Help
RTB Development
Ephialtes:
--- Quote from: Kalphiter on March 05, 2010, 09:00:45 PM ---Send a packet that contains an HTTP link where the file can be downloaded from? Then the client visits that link and downloads the file?
--- End quote ---
Torquescript can't read binary files so there would be no way to upload it in the first place.
Also I pretty much bailed on the Blockland Cloud idea - I like the name RTB too much.
ApplePiePod:
Aww.
Kalphiter:
--- Quote from: Ephialtes on March 06, 2010, 04:08:15 AM ---Torquescript can't read binary files so there would be no way to upload it in the first place.
Also I pretty much bailed on the Blockland Cloud idea - I like the name RTB too much.
--- End quote ---
Oh, I thought you were talking about downloading.
Downloading is no issue; but what is the issue with uploading?
--- Code: ---POST /asdf.php HTTP/1.1
Host: asdf
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1.7) Gecko/20091221 Firefox/3.5.7 (.NET CLR 3.5.30729)
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 300
Connection: keep-alive
Referer: http://asdf
Cache-Control: max-age=0
Content-Type: multipart/form-data; boundary=---------------------------56023190724307
Content-Length: 471
-----------------------------56023190724307
Content-Disposition: form-data; name="MAX_FILE_SIZE"
100000
-----------------------------56023190724307
Content-Disposition: form-data; name="uploadedfile"; filename="callinglist.txt"
Content-Type: text/plain
filecontenthere
-----------------------------56023190724307--
--- End code ---
Space Guy:
Text files aren't the problem, it's zip files and content like images/models - binary coded.
Kalphiter:
--- Quote from: Space Guy on March 06, 2010, 08:41:49 AM ---Text files aren't the problem, it's zip files and content like images/models - binary coded.
--- End quote ---
Aah, I see.