This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TABLE wp_postmeta_new ( | |
meta_id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, | |
post_id BIGINT UNSIGNED NOT NULL, | |
meta_key VARCHAR(255) NOT NULL, | |
meta_value LONGTEXT NOT NULL, | |
PRIMARY KEY(post_id, meta_key, meta_id), -- to allow dup meta_key for a post | |
INDEX(meta_id), -- to keep AUTO_INCREMENT happy | |
INDEX(meta_key) | |
) ENGINE=InnoDB; | |
INSERT INTO wp_postmeta_new SELECT * FROM wp_postmeta; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#--------------------------------------------------------------------------------------------------# | |
# ENVIRONMENT SETTING # | |
# It can be anything, but "development", "staging" and "production" are supported out of the box. # | |
# Do not use "development" on production and viceversa, because it has effect on debug settings. # | |
#--------------------------------------------------------------------------------------------------# | |
WORDPRESS_ENV=development | |
#--------------------------------------------------------------------------------------------------# | |
# MANDATORY DATABASE SETTINGS # | |
#--------------------------------------------------------------------------------------------------# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name" : "githubuser/projectname", | |
"description" : "Project Name", | |
"type" : "project", | |
"license" : "GPL", | |
"authors" : [{ | |
"name" : "Your Name" | |
} | |
], | |
"repositories" : [{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
define('WP_HTTP_BLOCK_EXTERNAL', true); | |
define('WP_ACCESSIBLE_HOSTS', 'api.wordpress.org,*.api.mailchimp.com,api.pay1.de,*.google.com'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# either fork the repo and clone your fork, or clone this repo directly | |
git clone [email protected]:vardumper/wordpress-and-woocommerce-development-boilerplate.git my-project-folder | |
# installs all dependencies, themes and plugins | |
cd my-project-folder | |
composer install | |
# copies the distribution default .env file | |
cp .env-distribution .env |
NewerOlder