What may cause the error:
in Visualisatsioon-HTML5-Shipping.html, line 381:
// file location.
locateFile : function (name){
return name + ".gz";
},
this needs to be changed to:
// file location.
locateFile : function (name){
return name;
},
We’re not entirely sure how you got [+ “.gz”] in there.
Please keep in mind that the .htaccess file will tell the webserver to send gz files if the browser supports it, this is “outside” of the game’s javascript code. With that being said, you won’t need to write in that code.
Our Developer also noticed that your file was named "htaccess.htaccess’ and it should simply be: “.htaccess”.
How can I create my server within the web browser? Do I even need it?
No, you do not need to upload (HTML5Launcherhelper.exe) - - that executable simply helps you run a “web server” on your development box. Since you’re already uploading it to a web server, it’s not needed.
Our Developer tested this on his local developer box and got it running after removing the [+ ".gz’] in the code above. Please try to remove that and let us know how it goes.
Looking forward to hearing back from you, thanks!