Search found 25 matches

by krolldk
Wed Jun 05, 2019 2:52 pm
Forum: General Discussion
Topic: Issues with cloudsave
Replies: 9
Views: 3543

Re: Issues with cloudsave

OK ... more issues with cloudsave. I'm saving a file using code like this : ES3File saveManus = new ES3File("Foo"); saveManus.Save<string>("manus", manusAsJSON); yield return StartCoroutine(cloud.UploadFile(saveManus)); if (cloud.isError) { Debug.Log("save failed : "+ m...
by krolldk
Mon Jun 03, 2019 12:39 pm
Forum: General Discussion
Topic: Issues with cloudsave
Replies: 9
Views: 3543

Re: Issues with cloudsave

OK. It makes a lot of sense to be able to upload/download files without having to have local files on disk.

However, as far as I can see, ES3Cloud.Sync does not exist in a version that accepts an ES3file as a parameter ? Did you mean ES3Cloud.UploadFile() ? And ES3DownloadFile() for download ?
by krolldk
Sun Jun 02, 2019 2:13 pm
Forum: General Discussion
Topic: Issues with cloudsave
Replies: 9
Views: 3543

Re: Issues with cloudsave

OK Got it now. I think. First of all, my webserver firewall dislikes ES3Cloud.php, so I had to punch a hole in the firewall. Not crazy about it, but there you go, and not Moodkies fault. Secondly: My script: var cloud = new ES3Cloud("http://spildramadronning.dk/ES3Cloud.php", "03dc193...
by krolldk
Sun Jun 02, 2019 12:01 pm
Forum: General Discussion
Topic: Issues with cloudsave
Replies: 9
Views: 3543

Re: Issues with cloudsave

Also .... Why, in the documentation, are the code examples something like: // Create a new ES3Cloud object with the URL to our ES3.php file. var cloud = new ES3Cloud("http://www.myserver.com/ES3.php", "myAPIKey"); when the default ES3 php script is called ES3Cloud.php ? Shouldn't...
by krolldk
Sun Jun 02, 2019 11:58 am
Forum: General Discussion
Topic: Issues with cloudsave
Replies: 9
Views: 3543

Issues with cloudsave

Hi I'm having a number of problems with cloudsave: Issue1: Installing. I dropped the ES3Cloud.php script in my webserver in a subdirectory. I follow the steps described in documentation. ES3Cloud fails to create variables.php, and fails to write what should be IN the ES3Variables file. I can only se...