You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As for the problem we encountered earlier, that audio files and images do not load in the front-end, I did multiple tests and came to the conclusion that they work perfectly if served from a local server, or even from a live server.
For example, replacing this http://'+ window.location.host + ':' + window.location.port + '/correct.mp3
from our code by this https://fathycoins.000webhostapp.com/music/win.mp3
makes it work!
So, my best guess that the problem could be in serving those files from the server.
Correct me if I am wrong.
The text was updated successfully, but these errors were encountered:
hmm, I think that problem is that the HTTP response needs to be split into partitions or something like that, that's an initial guess though. I'll look into it
As for the problem we encountered earlier, that audio files and images do not load in the front-end, I did multiple tests and came to the conclusion that they work perfectly if served from a local server, or even from a live server.
For example, replacing this
http://'+ window.location.host + ':' + window.location.port + '/correct.mp3
from our code by this
https://fathycoins.000webhostapp.com/music/win.mp3
makes it work!
So, my best guess that the problem could be in serving those files from the server.
Correct me if I am wrong.
The text was updated successfully, but these errors were encountered: