Ulme
Forum Replies Created
-
I had the same issue on my multiside.
Digged up this solution, but can’t remember where I found it.I planted this into the functions.php of my child theme:
// fixes "Lost Password?" URLs on login page add_filter("lostpassword_url", function ($url, $redirect) { $args = array( 'action' => 'lostpassword' ); if ( !empty($redirect) ) $args['redirect_to'] = $redirect; return add_query_arg( $args, site_url('wp-login.php') ); }, 10, 2); // fixes other password reset related urls add_filter( 'network_site_url', function($url, $path, $scheme) { if (stripos($url, "action=lostpassword") !== false) return site_url('wp-login.php?action=lostpassword', $scheme); if (stripos($url, "action=resetpass") !== false) return site_url('wp-login.php?action=resetpass', $scheme); return $url; }, 10, 3 ); // fixes URLs in email that goes out. add_filter("retrieve_password_message", function ($message, $key) { return str_replace(get_site_url(1), get_site_url(), $message); }, 10, 2); // fixes email title add_filter("retrieve_password_title", function($title) { return "[" . wp_specialchars_decode(get_option('blogname'), ENT_QUOTES) . "] Password Reset"; });- This reply was modified 9 years, 3 months ago by Ulme.
Hello,
tested your version on two testservers and one liveserver.
Backups start without any error message.
Works fine 🙂
Did some further testing.
I set up a clean multisite with wordpress 4.3.1 and BackWPup.
No error message when I started the backup.Updated to wordpress 4.4 and started backup:
Job “xxx” has started, but not responded for 10 seconds.Seems to be a problem with wordpress 4.4, multisite and BackWPup.
Any clue?
Got the same on my multisite. No cache plugin running, so it cannot be a caching issue.
Forum: Plugins
In reply to: [WP-Filebase Download Manager] Problem after updating to 3.1.01 (multisite)Problem seems to have resolved itself without me changing anything.
No phantom update notification anymore.
Strange…*sadly*
The only workaround if found was to alter this line
<form name="lostpasswordform" id="lostpasswordform" action="<?php echo esc_url( network_site_url( 'wp-login.php?action=lostpassword', 'login_post' ) ); ?>" method="post">and this one
<form name="resetpassform" id="resetpassform" action="<?php echo esc_url( network_site_url( 'wp-login.php?action=resetpass', 'login_post' ) ); ?>" method="post" autocomplete="off">in the wp-login.php
I don’t like changing core files…
I dropped this into the functions.php of my child theme
add_filter('lostpassword_url', 'wp_hijack_lostpassword'); function wp_hijack_lostpassword() { return home_url('/yourhideslug?action=lostpassword'); }Redirecting the Lost Password URL to
mainmulitsitedomain.com/yourhideslug?action=lostpassword
did the trick for me, not very shiny but working
The Problem ist that the action attribute of the registration form is not modified by the plugin.
To solve this open wp-login.php, go to line 547 and change
wp-login.php?action=registerto
wp-login.php?xxx&action=register
xxx has to be the secret key from BWPS