$ openssl genrsa -out private.key 4096
openssl req -new -sha256 \
function b() { | |
# Couleurs | |
red=`tput setaf 1` | |
green=`tput setaf 2` | |
yellow=`tput setaf 3` | |
magenta=`tput setaf 5` | |
blue=`tput setaf 6` | |
reset=`tput sgr0` | |
branch_to_use='' |
services: | |
serializer.subscriber.news: | |
class: AppBundle\Serializer\Subscriber\NewsSubscriber | |
arguments: [@vich_uploader.storage, @liip_imagine.cache.manager, @request_stack] | |
tags: | |
- { name: jms_serializer.event_subscriber } |
/* Use WP-CLI instead https://developer.wordpress.org/cli/commands/search-replace/ */ | |
SET @oldsite='http://oldsite.com'; | |
SET @newsite='http://newsite.com'; | |
UPDATE wp_options SET option_value = replace(option_value, @oldsite, @newsite) WHERE option_name = 'home' OR option_name = 'siteurl'; | |
UPDATE wp_posts SET post_content = replace(post_content, @oldsite, @newsite); | |
UPDATE wp_links SET link_url = replace(link_url, @oldsite, @newsite); | |
UPDATE wp_postmeta SET meta_value = replace(meta_value, @oldsite, @newsite); | |
/* only uncomment next line if you want all your current posts to post to RSS again as new */ |