Reset - Full Site: differenze tra le versioni

Da Webmobili Wiki.
Riga 4: Riga 4:
== Database ==
== Database ==


Accesso al database mysql
<syntaxhighlight lang="bash">
<syntaxhighlight lang="bash">
mysql -u wordpress-p
mysql -u wordpress-p
bucRd29By9GRY
bucRd29By9GRY
</syntaxhighlight >
Cancellazione e creazione nuovo database vuoto:
<syntaxhighlight lang="sql">
DROP DATABASE wordpress_db;
CREATE DATABASE wordpress_db CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
EXIT;


</syntaxhighlight >
</syntaxhighlight >

Versione delle 10:03, 30 ott 2025

Sito base locale

Esempio con sito locale su Proxmox 10.13.17.133 http://pve.wp.webmobili.local

Database

Accesso al database mysql

mysql -u wordpress-p
bucRd29By9GRY

Cancellazione e creazione nuovo database vuoto:

DROP DATABASE wordpress_db;
CREATE DATABASE wordpress_db CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
EXIT;