I have this game I wanted to integrate to my website as a competition for my members. I took a source code of github https://github.com/daleharvey/pacman.
I didn't mess with a code. It works fine on local machine, but when I put it to server It just keep saying it's loading (Not sure if it's allowed to post links so somebody remove it if it isn't allowed) http://puskice.org/assets/frontend/pacman/index.html
Important note is that server is behind Cloudflare so I was wondering if it could have something to do with it.
Application at link above sometimes works when you hit shift+f5 in chrome, and in firefox it mostly works as expected
I opened your site and it appears that your audio files are failing to load.
If you follow the pacman code through, then you'll notice that it displays a loading message (line 1056), and doesn't redraw until after at least one audio file has loaded (line 1082).
but your audio files are 404-ing, so the loaded function is never called.
Related
i have a strange problem with a web page!and i can't see it in none of my browsers while all of my coworkers see it and work with it all well!
however if i use a vpn i can see it with no problem!
so i assume it is not my browser problem since i can see it contents with vpn
the strange part for me is that i can see title and html content but when it wants to fetch CSS and JS resources it gives (failed) net::ERR_CONNECTION_RESET!
i tried ping and trace rt and both of them was successful!
(and as i said i can see title of page and it first page that is a small page)
so i am not blocked by anything.
i also changed my internal network to something else and still it wouldn't loads up!i insert an image of what page is load in first place.
i don't know if it is relevant or not but the website is written with GWT
if anymore information is needed i be more than to happy too providing it.
i used firefox, chrome,edge,ie and none of them shows page!
i insert an image to show what is loaded
html page is loaded:the html page that is loaded and page content
resources that give error:the resources that fail to load
PS: sorry if cleared addresses out, i didn't know if it is right or not with the company to include them so i cleared them out.
There is a simple asp.net page with all the resource stored locally. I use jq1.7.2 and bootstrap in this page.
All works fine but a wired png request.
When the page is loaded, I got this error message:
But I searched the whole project without finding any key words as transp_bg.png or api.cld.me.
With chrome debugging, I have the network request infomation as:
Where is this request from? And how could I delete it?
Page is loaded slowly as much time is wasted on requesting this png.
there are 2 too me known possibilities:
you have some tracking tool that is runing on the server it self.
That is a dynamic placeholder from some part of a framework.
But as the request takes long my gues its a trafic tracking tool.
Clean your browser cache "I recommend you use Firefox Web Developer"
Check for jquery have doubled or incompatibility issues with Bootstrap "for example old version of jquery"
Look be not getting an image URL as may be collecting information to the browser that that error. Download it.
If set photographic paper of the image is strange. Put the same icon image above
I attempted to get my current location and display in google-maps.
for this:
I activated the Javascript API(in google.developers site).
got the key to access the api.
copied the code in the link below to a html file( inserting my key when "calling" the api, of course).
https://developers.google.com/maps/documentation/javascript/examples/map-geolocation
When I ran the html file in the browser, I received an alert giving the error InvalidKeyOrUnauthorizedURL, but it seems that I did everything right, and actually it seems I really did, because when I ran the exact code in the W3Schools tutorials ("Try it your self") the result showed me my location.
So after this context, I would like to know why I can't run this code directly on the browser, I mean, It's kind of OK using the w3schools but it's not the properly way and it's questioning why it's invalid.
observations:
note that the file is not being hosted, it is my own computer.
I tried to run in Opera and Chrome browser- and they both failed.
I ran codes of google maps api successfully directly on the browser but they didn't need any key.
Thanks
It's because you are not hosting it on the local server.
Your browser won't allow location request to go through even if you allow all sites to track your location.
Set up a server on the localhost interface and then try running it. It should work just fine.
PS. Your browser will tell you when any location requests are blocked. In Chrome there will be a small icon on the right hand side of the URL bar after a request for location has been made.
I am developing a Wordpress site for a manufacturing company. The company would like to have a Video Spokesperson on some of the pages. Specifically we are testing it here: http://beautifulimage.net/test-magazine
The scripts that they provide are here: http://tweople.com/client/embed/1401121859b
Unfortunately, the video will only play once (with one iteration of the script) or not at all. For the iteration that will play it, you can refresh the cookies and it will play again.
1) I started by following the documentation that was provided. I expressly followed every direction implicitly without consistent success (it worked occasionally on http) ... I verified that the script/video works on 3 other sites (not secured sites), which further confirms that their product does work, but that there is a conflict. This conflict maybe with scripts that we are using on our site or with cross domain calls, but it is definitely not working the way that it should be.
2) Upon realizing that the script doesn't work on our site. I went through extensive troubleshooting.
Here are major trouble shooting errors I went through:
creating a cross domain xml file (recommended by adobe)
for registering flash videos that can be cross domain using 3rd
partyflash player
trying the video as an html5 video alone (no transparency. the
background was white)
going through the initiation/video player script to see if I need to
hard code links
support withtwepeople email
deactivating all WP plugins that could be causing conflicts and testing all previous debugging measures
I asked mediatemple (hosting company) if there was anything in the hosting account that could be causing the error.
note: The javascript console was calling out cross domain errors when we were occasionally getting it to work on http. When I forced https the video spokesperson stopped working completely.
I currently have multiple scripts inside of the file (lines 406, one commented out). The company has been attempting to support the issue, but have been unable to.
Anything to help is appreciated.
I'm encountering an issue with some local web prototyping;
I've been working on a single page which access files on my C:/ by starting my Chrome with --allow-file-access-from-files.
This is great, I've got my first page working successfully and it loads in my .js,.css files etc as expected.
However, when I click the link to proceed to the next page, the HTML loads, but none of the styles, javascript (or even images) load.
I'm receiving 'Failed to load resource' errors in the console, despite the file:// url pointing to the correct location.
Is there any way around this issue?
In lieu of a solution, some advice: Set up a web server on your computer for testing. Developing in an environment that's similar to a "production" environment, as opposed to working around the quirks of local file access, will save you quite a bit of time in the long run.
There are a number of tools that will help you set up a development web server; XAMPP is a popular one.