Search found 6 matches

by neo42
Mon Dec 20, 2021 7:34 am
Forum: General Discussion
Topic: How to save directly viewable files on the ES3cloud server?
Replies: 3
Views: 830

Re: How to save directly viewable files on the ES3cloud server?

Data is transmitted over the internet as a BLOB (as this is the most efficient way), so you would need to modify the ES3Cloud.php to apply a UTF8 encoding to that data and upload this, as well as change the field in MySQL to a VARCHAR. Hello again. I've changed the "data" column to use VA...
by neo42
Wed Dec 15, 2021 6:08 am
Forum: General Discussion
Topic: How to save directly viewable files on the ES3cloud server?
Replies: 3
Views: 830

How to save directly viewable files on the ES3cloud server?

During development at least, I want the ability to view the saved data under server's column 'data', instead of a BLOB file. Having it as Blob, I need to download and get inside to see what's in it. How can I make it save like a text instead? So I could check-in without downloading? Regards, have a ...
by neo42
Wed May 12, 2021 9:52 pm
Forum: General Discussion
Topic: Saving to a file.. how to?
Replies: 1
Views: 689

Saving to a file.. how to?

Forgive its a noob question, but I am trying to save a string to a file on my persistentDataPath, but its not happening.. Maybe I have some codes wrong that I am not able to figure out.. ``` ES3Settings settings = new ES3Settings(); // Enable encryption and set an encryption password. settings.encry...
by neo42
Wed May 12, 2021 3:48 pm
Forum: General Discussion
Topic: Cloud upload/download - bandwidth usage concern
Replies: 5
Views: 1276

Re: Cloud upload/download - bandwidth usage concern

Hello, thank you very much for the answer! So far along my testing, I'm happy with the bandwidth its using. I'd like to ask, On my sql database (pic attached), the client Username/Password seems to be encrypted. I believe it was a right decision to do so, but is there a way I can see it without encr...
by neo42
Wed May 12, 2021 2:47 pm
Forum: General Discussion
Topic: Cloud upload/download - bandwidth usage concern
Replies: 5
Views: 1276

Re: Cloud upload/download - bandwidth usage concern

As raw bytes? Im not very aware of what that means.. "the act of uploading it shouldn't make the transferred any larger or smaller." How is it so? Even if my Es3savefile size if any larger or smaller, wouldnt affect? Also, please do check on the second question I had on my post :) For I wi...
by neo42
Wed May 12, 2021 1:37 pm
Forum: General Discussion
Topic: Cloud upload/download - bandwidth usage concern
Replies: 5
Views: 1276

Cloud upload/download - bandwidth usage concern

Hi everyone! So far I had been using a custom implementation for saving and uploading/downloading to/fro the cloud. My custom "saved data" .asset file, even for test purposes, had 2 strings and 2 ints. The file size became 6kb just for that little thing. And just to upload to the cloud, it...