Iframe loading/buffering issue - apache

I am currently having some issues that I believe to be related to an iframe.
My website homepage has a video on, with a simple "play" button that when pressed will load on iframe with a url from my root, video.html with a embedded to play.
My site is load-balanced, I had no issues with apache 2.2 but now i am using apache 2.4.
The video and frame loaded instantly with 2.2, but in 2.4 I click the button - the audio for the video starts playing, but the tab is loading something and soon after the video appears.
I can close the video and reopen and it does the same thing. In all browsers
I can visit the referenced URL in the iframe to pull the video from via the balancer and it plays right away.
Anyone know what sort of configuration element i may be missing? :)

Related

Vue favicon doesn't change in ios chrome & safari browser

I alredy change the favicon.ico to the logo file which I want to use In Vue-cli's public folder, and named it the same file name.
In web browser the Favicon and title be changed successful
but in the mobile browser neither safari or chrome are fail
I didn't use pwa so probably not have manifest.json problem
And I already tried to clean both browser's cache or open it on Incognito Windows, but still the same, is anything I neglect to do with my index.html or vue-cli config?
You can add <link rel="apple-touch-icon" href="/custom_icon.png"> so that your favicon is shown when you favorite the page or view it in that tabs view. This is mentioned here.
For the webpage itself its very likely your iPhone is still caching the old icon regardless of your attempts to clear said cache. In my experience trying to load the page with no network connection, waiting for the time out error and then connecting to the network and reloading the page is the best way to "force" the device to clear its cache. Alternatively with the dev tools open and a keyboard attached type command + option + r. If not, patience, it'll update... eventually.

Netflix video does not autoplay on chrome

I am trying to autoplay Netflix video using Selenium on chrome on a Linux machine. I open the video using the following url: https://www.netflix.com/title/<video_id>. Normally, the video starts playing once the page loads. However, with selenium, the video page opens up and a play button comes up. The video does not play until I click button manually. Is there a workaround such as opening chrome with specific flags to disable this?
One workaround that I found was to mute the Netflix video. I think this has to do with the new updates to chrome wherein video can only be autoplayed if they are muted.
https://developers.google.com/web/updates/2017/09/autoplay-policy-changes

ExtJS 2.2 openlayers lightbox popup stopped working - error in CGI script

I have an old GIS website with OpenLayers 2.7, Geoserver, running ExtJS 2.2 and a lightbox.js. This has been working fine. I can click on a location and fire up a lightbox popup. This has suddenly stopped working. I click a location but and a short spinning wheel so I can see something is happening but no popup. Any idea where I start to search for errors? I get no output in console. Here is my website: http://kulturminnekart.no/ostfold/. When you zoom in and click a marker it should show a popup utilizing the lightbox.js.
I know this is very old but I have never had resources to upgrade to newer ExtJS.
I have an index.html and app.js. Also I include OpenLayers, Mapfish and ExtJS. I have another site running almost the same code so I suspect some upgrade of apache or other software may have caused this but I have no idea where to start looking.
The problem was that the click on a marker was doing a WMS GetFeatureInfo request via a proxy (proxy.cgi). Thanks to #Mike I was on a track to debug why cgi was not working. So the solution was to get mod_cgi working correctly on Apache 2.4 and then adjusting the permissions on cgi-bin.

HTML5 video streaming very slow

On my homepage there is a video file. While single user click on site(www.rollcall.co.in) that video running very well. But When Multiple user come at my site and that time video streaming getting very slow. I dont know how to resolve this issue.

VideoJS font not applied to controls in Firefox 22

I did everything according to the setup instructions and got the video.js player play my flv video. The only problem is that the UI is broken in Firefox 22 because the font that is loaded correctly is not applied to the controls. I only see a box with some numbers inside instead of a play button for example.
This works in Chrome correctly.
I double checked with Firebug that the font file is loaded from the server and there are no problems.
Firebug shows this when I inspect the play button:
content: "";
And if I hover font-family I see the VideoJS font sample displayed.
It was the same origin policy. I was working on a development subdomain but the font was hosted on the main domain and that's why Firefox refused to use it. (Chrome used it)