Problème diaporama

cache le slider */ .sl_i:target~#slideshow .slider {visibility: hidden } .sl_i:target~#slideshow .slider figcaption {visibility: hidden } /* on cache la 1ère pastille*/ .sl_i:target~#slideshow .dots_commands li:first

2
gulp & node-ass

cache = require('gulp-cache'); var minifycss = require('gulp-minify-css'); var sass = require('gulp-sass'); var browserSync = require('browser-sync'); gulp.task('browser-sync', function() { browserSync({ server: { baseDir: "./" } }); }); gulp.task('bs-reload

5
Problème de traduction d'entité avec Symfony 7

cache de Symfony ``` php bin/console cache:clear ``` 4 . Réinstaller *stof/doctrine-extensions-bundle* ``` composer require stof/doctrine-extensions-bundle ``` 5. Supprimer le cache de Symfony (pas nécessaire, mais pour être sûr ;-p) ``` php bin/console cache:clear

2
PWA : "No manifest was fetched"/Pas de manifest reconnu

cache').then(function(cache) { // cache any static files that make up the application shell return cache.add('index.html'); }) ); }); // On network request self.addEventListener('fetch', function(event) { event.respondWith( // Try the cache caches.match(event.request

0
Tester résolution d'un fetch avant démarrage d'un autre fetch ?

cache: "no-cache", headers: { "X-Requested-With": "XMLHttpRequest", // "Content-Type": "Application/json", }, }) .then((response) => response.json()) .then((data) => { tabContent.innerHTML = data.content; }) .catch((error) => alert("Erreur : " + error)); return reponse; }; //Chargement du premier onglet au démarrage

2
NGINX - CONFIGURATION 2 SITE

cache max=2000 inactive=20s; open_file_cache_valid 60s; open_file_cache_min_uses 5; open_file_cache_errors off; location ~* \.(jpg|jpeg|gif|png|css|js|ico|xml)$ { access

4
PHP HttpRequest

cache-control' => 'no-cache', 'Connection' => 'keep-alive', 'accept-encoding' => 'gzip, deflate', 'Host' => 'extranet.gentel.fr', 'Postman-Token' => '698af393-21b7-4bda-914b-ada53a265fe8,66e7b19f-1bfa-4c89-b51a-3f022ff9e040', 'Cache-Control' => 'no-cache

1
Elastic Beanstalk, EFS, and WordPress problem

cache files are shared across all ELB instances. The mount is set up and working... both instances have /wp-content/cache symlinked to /mnt/efs/wp-content/cache and I can see the cache files there

0
Requête Ajax message erreur Synchronous XMLHttpRequest ...

cache: false, async: false, timeout: 3000, success: function(result) { $('#step_'+i+'_t').html(" "+result+" "); //alert(String); } }); }; ``` en temp normal je n'utilise pas ``` async: false, timeout: 3000, ``` Mais dans ce cas, si je n'attent

1
Fonction imbriquée ne s'éxécute pas une deuxième fois

cache: "no-cache", headers: { "X-Requested-With": "XMLHttpRequest", "Content-Type": "Application/json", }, }); let data = await response.json(); tabContent.innerHTML = data.content; let pagination = document.querySelectorAll(".tabs__content span a"); //filtrage pour pagination pagination.forEach((el) => { el.addEventListener

2