Come svuotare la cache?
-
-
Come sei sicuro che sia a causa della cache?How are you sure that it's because of cache?
- 0
- 2013-08-18
- Mayeenul Islam
-
Sei sicuro cheiltuobrowsernon stiamemorizzandonella cacheilfile CSS?Are you sure your browser is not caching the CSS file?
- 0
- 2013-08-19
- Charles Clarkson
-
4 risposta
- voti
-
- 2014-06-18
Haiesaminato
WP_Object_Cache
?Se sospetti che si stia verificando unamemorizzazionenella cacheindesideratanel codice chegenerailpannello di amministrazione,potrestiesserein grado di utilizzare lefunzioni di WP_Object_Cacheper cancellarlo.
WP_Object_Cache è la classe di WordPressper lamemorizzazionenella cache dei dati chepotrebberoessere dalpunto di vista computazionale costoso da rigenerare,comeil risultato di complesse query di database.
Prova lafunzione
wp_cache_flush()
che cancellatuttii datimemorizzatinella cache.Have you looked at
WP_Object_Cache
?If you suspect there is unwanted caching happening in the code that generates the admin panel then you might be able to use functions from the WP_Object_Cache to clear it.
WP_Object_Cache is WordPress' class for caching data which may be computationally expensive to regenerate, such as the result of complex database queries.
Try the function
wp_cache_flush()
which clears all cached data.-
Siprega dielaborare unpo 'dipiù,inviareil codicepertinente comeesempio da quel collegamentoPlease elaborate a bit more, post the relevant code as an example from that link
- 1
- 2014-06-18
- Pieter Goosen
-
- 2013-08-18
Mi chiedoperchénon Hai cercato su Google e l'hai risoltoprima?
A differenza di Drupal,WordPressperimpostazionepredefinitanon dispone di cache dimassa. Ilproblema che stai affrontando èben citato qui:
Maper un rapido controllo,apriil
wp-config.php
(nella radice dellatuainstallazione di WP,dove ci sonotre cartelle: wp-admin , wp-content e wp-includes presenti)e controlla se'WP_CACHE'
è'true'
. Bastaimpostarlo su'false'
:define('WP_CACHE', 'false');
Oppurepuoi semplicemente rimuovere la riga. (Il
WP_CACHE
èmeglio citato in questo articolo .)Se stai usando unpluginper lamemorizzazionenella cache,ilpannello delleimpostazioni delplugin avrà unpulsante "Cancella cache". Per quantone so,il WP Super Cache Plugin ha questopulsante.
I wonder why not you Googled and solved it first?
Unlike Drupal, WordPress by default doesn't have any Mass-Caching. The problem you are facing is well cited here:
But for a quick check, open the
wp-config.php
(In the root of your WP installation, where there are three folders: wp-admin, wp-content, and wp-includes present) and check if'WP_CACHE'
is'true'
. Just make it'false'
:define('WP_CACHE', 'false');
Or, you can simply remove the line. (The
WP_CACHE
is better cited in this article.)If you are using any plugin for Caching, then the settings panel of the plugin will have a "Clear Cache" button. As per as I know, WP Super Cache Plugin has such button.
-
manon sto usando alcunplug-in della cachebut i am not using any cache plugin
- 0
- 2013-08-18
- Niks Niks
-
Controlla la risposta aggiornata.Check the updated answer.
- 0
- 2013-08-18
- Mayeenul Islam
-
mipuoi dire laposizione delfile?in quale cartella?can you tell me location of file?in which folder ?
- 0
- 2013-08-18
- Niks Niks
-
`wp-config.php` - Nella radice dell'installazione di WP,dove sonopresentitre cartelle:` wp-admin`,`wp-content`e` wp-includes`presenti.`wp-config.php` - In the root of your WP installation, where there are three folders: `wp-admin`, `wp-content`, and `wp-includes` present.
- 0
- 2013-08-18
- Mayeenul Islam
-
falsenonfunzionaflase is noy worked
- 0
- 2013-08-18
- Niks Niks
-
- 2017-12-26
<?php function wp_cache_flush() { global $wp_object_cache; return $wp_object_cache->flush(); } ?>
Crea unnuovofile diciamo "flush.php" conil codice sopranella radice dellatuainstallazione di WordPress.
Visita,yoursite.com/flush.php
<?php function wp_cache_flush() { global $wp_object_cache; return $wp_object_cache->flush(); } ?>
Create a new file say "flush.php" with above code in the root of your WordPress installation.
Visit, yoursite.com/flush.php
-
- 2017-12-26
Se utilizzi cPanelperiltuo sito,forse attivi (oiltuoprovider di hosting) l'opzione Optimize WebSite.Vai altuo cPanele trova lapagina " Ottimizza sito web "nella sezione Sowftware.
Dopodichéimposta " Comprimi contenuto " su disabilitato .
Inoltre,se haimodificatoiltuofile
.htaccess
(questofile sitrovanellatua cartellapublic_html)potresti aggiungere un codice deflate ogzipin.Modificail contenuto di questofilein (eseguiilbackupprima dellamodifica )# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress
If you using cPanel for your site maybe you activate (or your hosting provider) Optimize WebSite option. Go to your cPanel and find "Optimize Website" page on Sowftware section.
After that set"Compress Content" to disabled.
Also if you changed your
.htaccess
file (this file located in your public_html folder) maybe you add any deflate or gzip code into. Change this file's content to (please make backup before editing)# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress
Ho apportatomodifiche almio CSS,manonfunziona.So che è a causa dellamemorizzazionenella cache dalpannello di amministrazione.
Come svuotare la cache delmio amministratore di WordPress.Esiste unmetodoper svuotare la cache?