diff options
author | neodarz <neodarz@neodarz.net> | 2019-09-05 07:05:07 +0200 |
---|---|---|
committer | neodarz <neodarz@neodarz.net> | 2019-09-05 07:05:07 +0200 |
commit | e0c0d4b38cde20e2300e86b69414dd9851b47456 (patch) | |
tree | 5df65243447352a9637d1f783247bfd5ccff2ef4 /dotfiles/cheat/wordpress | |
parent | dc45bf89a66ec6c8cd25cf5605deb853f6984705 (diff) | |
download | dotfiles_dotdrop-e0c0d4b38cde20e2300e86b69414dd9851b47456.tar.xz dotfiles_dotdrop-e0c0d4b38cde20e2300e86b69414dd9851b47456.zip |
ooo
Diffstat (limited to 'dotfiles/cheat/wordpress')
-rw-r--r-- | dotfiles/cheat/wordpress | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/dotfiles/cheat/wordpress b/dotfiles/cheat/wordpress new file mode 100644 index 0000000..c9bd1ce --- /dev/null +++ b/dotfiles/cheat/wordpress @@ -0,0 +1,21 @@ +#Create database +console doctrine:database:create + +#update database +console doctrine:schema:update --force + +# Enable WP_DEBUG mode +define( 'WP_DEBUG', true ); + +# Enable Debug logging to the /wp-content/debug.log file +define( 'WP_DEBUG_LOG', true ); + +# Disable display of errors and warnings +define( 'WP_DEBUG_DISPLAY', false ); +@ini_set( 'display_errors', 0 ); + +# Use dev versions of core JS and CSS files (only needed if you are modifying these core files) +define( 'SCRIPT_DEBUG', true ); + +# Change url in database +wp search-replace 'http://example.com' 'https://example.com' |