Lupa.cz
»
Seznam’s companies are down, in line with the corporate, that is the results of a deliberate shutdown
Creator: Seznam.cz
The Seznam.cz portal is experiencing issues. For instance, it isn’t doable to log into his accounts, entry e-mails, and so forth. The login web page shows error messages or doesn’t present the login type in any respect.
The Seznam content material web sites, together with the Novinky.cz and Seznam Zprávy information servers, are additionally alternately unavailable for the time being.
In accordance with the corporate on social community X it’s the results of a deliberate shutdown: “We’re at the moment experiencing an outage of our companies as a consequence of a deliberate shutdown of the info middle. Our colleagues are already working onerous to get once more to regular. Thanks in your persistence,” Seznam writes.
It isn’t but clear how lengthy it can take to eradicate the issue.
We’re figuring out the small print.
Did you discover an error within the article?
Editor-in-Chief of Lupa.cz and exterior collaborator of Czech Radio Plus. Previously editor of IHNED.cz, earlier than Aktuálně.cz and Czech Radio. Yow will discover me at Twitter or on LinkedIn.
`;
if (youtubeIframe !== null && vastUrls.size > 0) {
youtubeIframe.following(doc.createRange().createContextualFragment(videoEl));
youtubeIframe.model.show = ‘none’;
const vjsOptions = {
controls: false,
fluid: true
};
const participant = videojs(‘iinfo_youtube_preroll’, vjsOptions);
let vastUrlIndex = 0;
let playedAdCounter = 0;
const imaOptions = {
adTagUrl: vastUrls[vastUrlIndex]
};
console.log(“Preroll: Loading first advert – ” + vastUrls[vastUrlIndex]);
participant.ima(imaOptions);
participant.on(‘adend’, () => {
console.log(‘Preroll: VAST advert ended (adend).’);
playedAdCounter++;
playNext();
});
participant.ima.addContentEndedListener(() => {
console.log(‘Preroll: VAST advert ended (content material ended).’);
playedAdCounter++;
playNext();
});
participant.on(‘adserror’, (e) => {
console.log(‘Preroll: VAST advertisements error.’);
playNext();
});
participant.on(‘ads-manager’, () => { // resumeAd wants AdsManager prepared
doc.addEventListener(‘DOMContentLoaded’, handleScroll, false);
window.addEventListener(‘scroll’, handleScroll, false);
});
let adInitialized = false;
let adPlaying = false;
operate handleScroll() {
const containerOffset = doc.getElementById(‘iinfo_youtube_preroll_wrapper’).getBoundingClientRect();
const windowHeight = window.innerHeight;
if (participant.isDisposed() === false) {
if (containerOffset.prime 0.0) {
if (adInitialized === false) {
participant.muted(true);
participant.play();
adInitialized = true;
doc.removeEventListener(‘DOMContentLoaded’, handleScroll, false);
}
if (adPlaying === false) {
participant.ima.resumeAd();
adPlaying = true;
}
} else {
if (adPlaying === true) {
participant.ima.pauseAd();
adPlaying = false;
}
}
}
}
operate playYtVideo() {
participant.dispose();
youtubeIframe.model.show = ‘block’;
youtubeIframe.src += ‘&autoplay=1&mute=1’;
}
operate playNextAd() {
if (vastUrlIndex = vastUrls.size – 1 || playedAdCounter >=2) {
playYtVideo();
} else {
playNextAd();
}
}
}