WordPress featured images: migrating from dev to live site

My go-to procedure for moving sites from one place (domain/etc) to another is WP Clone from WP Acadamy https://wordpress.org/plugins/wp-clone-by-wp-academy/ . Works almost every time very easily. (Sometimes it doesn’t work the first time, but do it again and all is well.) Adjusts all links from the old domain to the new domain. Moves everything: posts, … Read more

Migration of Multisite WordPress site from http to https

Looks like there is a missing rule in your htaccess file, try RewriteEngine On RewriteBase / RewriteRule ^index.php$ – [L] # ensure access to /wp-admin RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L] RewriteCond %{HTTPS} off RewriteCond %{REQUEST_URI} !^/wp-json/ RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^ – [L] #ensure you can access the network … Read more

Send data from one WP instance to another and process it there

I solved it with mmm’s hint and created a simple custom REST endpoint. WP1 (Frontend, sending the data): function send_form_data_to_backend($form_values) { // add secret-key $form_values[‘secret_key’] = “abcde123″; $url=”http://backend.example.com/wp-json/example/v1/save/”; $response = wp_safe_remote_post( $url, array( ‘method’ => ‘POST’, ‘timeout’ => 15, ‘redirection’ => 5, ‘blocking’ => true, ‘headers’ => array(), ‘body’ => $form_values, ‘cookies’ => array() ) … Read more

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)