Html 5 executable game files on web server

0
Hi. I am trying to develope a game on html5. I tried to upload all unzipped files on a free web space and trying to execute on my pc it works. Then I tried the same to other pc but it don’t works. "Uncaught abort(“Cannot enlarge memory arrays. Either (1) compile with -s TOTAL_MEMORY=X with X higher than the current value 536870912,…” Now the question is: are these files executed on the server where this are stored? If yes i can’t explain the error. So the files are downloaded on every pc then executed. There is a way to execute these files only on server? In this way the memory error should be solved because the server is much more powerfull then a client pc. Please help me

The files are downloaded into memory in the client systems. If the file size is big, it will result in the message you are getting.
In my case, if the data file size goes beyond 180MB I get this message. As for as I know, there is no solution for this except remodel and bring the size down.