- Home
- Categorie
- Coding e Sistemistica
- WordPress
- Come cambiare il prefisso delle tabelle wp?
-
Come cambiare il prefisso delle tabelle wp?
Ciao ho il plugin
WP-Security Admin tools by WebsiteDefenderche mi da la possibilità di cambiare il prefisso delle tabelle wp. C'è qualcuno che mi spiega come si fa?
Oppure chi mi indica come fare in un altra maniera?
-
Ciao non conosco il plugin, però ti posso aiutare con un altro metodo.
Per cambiare il prefisso delle tabelle puoi entrare nel database del tuo sito tramite PhpMyadmin e nella sezione SQL inserire le seguenti stringhe:
[HTML]
Rename table wp_commentmeta to nomeprefisso_commentmeta;
Rename table wp_comments to nomeprefisso_comments;
Rename table wp_links to nomeprefisso_links;
Rename table wp_options to nomeprefisso_options;
Rename table wp_postmeta to nomeprefisso_postmeta;
Rename table wp_posts to nomeprefisso_posts;
Rename table wp_terms to nomeprefisso_terms;
Rename table wp_term_relationships to nomeprefisso_term_relationships;
Rename table wp_term_taxonomy to nomeprefisso_term_taxonomy;
Rename table wp_usermeta to nomeprefisso_usermeta;
Rename table wp_users to nomeprefisso_users;[/HTML]Devi rinominare tutte le tabelle anche quelle dei plugin, quindi se hai anche una tabella che si chiama ad esempio wp_post_views_history devi cambiare anche questa:
[HTML]Rename table wp_post_views_history to nomeprefisso_post_views_history;[/HTML]E successivamente modifichi il $table_prefix = ‘wp_’; del wp-config.php in $table_prefix = ‘nomeprefisso_’;
Ricordati di fare un backup del database prima di procedere per sicurezza.
Comunque ti lascio anche in link della guida: http://tdot-blog.com/wordpress/6-simple-steps-to-change-your-table-prefix-in-wordpress
Spero di aver risposto correttamente
-
ok, grazie ci provo