Query sql for truncate post_content in wp_posts table

Backup your db Remeber to backup your db Import the backup in another database, change wp-config.php to use this new database and see if everithing is ok. (Importing is successfull? Site appear without any change?) WordPress uses a prefix for table names. The default is ‘wp_’ but clever guys change it with something else. (The … Read more

Working local with one database

Set up a staging database on an online host and connect remotely from your various local dev environments. Might get a little confusing sharing 1 DB between many installs though.

Share WordPress Database

Does the WordPress installation has to use an exclusive database? If there are no table name conflicts, WordPress can share a database. Preventing conflicts is just a matter of setting a database prefix on install. By default, that prefix is wp_ but you can change it to anything you want within reasonable character limits. It … Read more

Creating Tables in WordPress Database

It may be a wrong approach, but without creating a plugin, one of my seniors, once did a WordPress Shopping Cart project by creating extra tables for her custom purposes. What she did is to follow the other existing tables in WordPress database. Suppose what wp_posts table has by default is an ID. She opened … Read more

Copy site on same server?

yes Patrick, you need to install wordpress again in that directory and add a new databases or just use the existing one just put in mind that u should not use the same prefix which you used in your root installation, and after that just pop any en or english link in your root site … Read more