Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the ad-inserter domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /var/www/vhosts/blog.webeats.it/httpdocs/wp-includes/functions.php on line 6114

Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the cookie-law-info domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /var/www/vhosts/blog.webeats.it/httpdocs/wp-includes/functions.php on line 6114
WordPress: wp_options enorme a causa wc_session

Se la tua tabella wp_options è diventata enorme – anche svariati GB – la colpa è di WooCommerce, il quale tiene traccia di migliaia di sessioni. Vediamo come risolvere rimuovendo i wc_session dal nostro database

Se il vostro wp_options è pieno di _wc_session_xxx e _wc_session_expires_xxx, allora è necessario fare un pò di pulizia e attuare alcuni piccoli accorgimenti alla nostra configurazione. Vediamo quali

Prima di tutto potrebbe essere utile pulire le sessioni dei clienti. Troveremo il bottone Clear all sessions sotto WooCommerce -> System Status.

clear wc_session

E’ possibile effettuare questa operazione anche direttamente da PHPMyAdmin, eseguendo il seguente comando per eliminare tutti i record che contengono la key wc_session:

DELETE FROM wp_options
WHERE option_name LIKE '_wc_session_%' OR option_name LIKE '_wc_session_expires_%'

Per evitare che il nostro db diventi di nuovo enorme, dobbiamo assicurarci che il nostro wp-config.php non contenga questa opzione, quindi se fosse presente.. rimuovetela!

define('DISABLE_WP_CRON', 'true');

Ultima cosa da fare, è aggiungere queste 2 righe al file robots.txt per evitare che i crawlers creino sessioni nel nostro db in grande quantità.

User-agent: *
Disallow: /*add-to-cart=*

Tkx to remicorson