Title: Ulme's Replies | WordPress.org

---

# Ulme

  [  ](https://wordpress.org/support/users/ulme/)

 *   [Profile](https://wordpress.org/support/users/ulme/)
 *   [Topics Started](https://wordpress.org/support/users/ulme/topics/)
 *   [Replies Created](https://wordpress.org/support/users/ulme/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/ulme/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/ulme/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/ulme/engagements/)
 *   [Favorites](https://wordpress.org/support/users/ulme/favorites/)

 Search replies:

## Forum Replies Created

Viewing 9 replies - 1 through 9 (of 9 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Kadence Security – Password, Two Factor Authentication, and Brute Force Protection] Login and wp-admin hide, wp mail function not functional](https://wordpress.org/support/topic/login-and-wp-admin-hide-wp-mail-function-not-functional/)
 *  [Ulme](https://wordpress.org/support/users/ulme/)
 * (@ulme)
 * [9 years, 3 months ago](https://wordpress.org/support/topic/login-and-wp-admin-hide-wp-mail-function-not-functional/#post-8719187)
 * 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](https://wordpress.org/support/users/ulme/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[BackWPup – WordPress Backup & Restore Plugin] Job “xxx” has started, but not responded for 10 seconds. (multisite)](https://wordpress.org/support/topic/job-xxx-has-started-but-not-responded-for-10-seconds-multisite/)
 *  Thread Starter [Ulme](https://wordpress.org/support/users/ulme/)
 * (@ulme)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/job-xxx-has-started-but-not-responded-for-10-seconds-multisite/#post-6839527)
 * Hello,
 * tested your version on two testservers and one liveserver.
 * Backups start without any error message.
 * Works fine 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[BackWPup – WordPress Backup & Restore Plugin] Job “xxx” has started, but not responded for 10 seconds. (multisite)](https://wordpress.org/support/topic/job-xxx-has-started-but-not-responded-for-10-seconds-multisite/)
 *  Thread Starter [Ulme](https://wordpress.org/support/users/ulme/)
 * (@ulme)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/job-xxx-has-started-but-not-responded-for-10-seconds-multisite/#post-6839437)
 * 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?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Yoast SEO - Advanced SEO with real-time guidance and built-in AI] We've updated our SEO score algorithm.](https://wordpress.org/support/topic/weve-updated-our-seo-score-algorithm/)
 *  [Ulme](https://wordpress.org/support/users/ulme/)
 * (@ulme)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/weve-updated-our-seo-score-algorithm/#post-6762478)
 * Got the same on my multisite. No cache plugin running, so it cannot be a caching
   issue.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-Filebase Download Manager] Problem after updating to 3.1.01 (multisite)](https://wordpress.org/support/topic/problem-after-updating-to-3101-multisite/)
 *  Thread Starter [Ulme](https://wordpress.org/support/users/ulme/)
 * (@ulme)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/problem-after-updating-to-3101-multisite/#post-5903438)
 * Problem seems to have resolved itself without me changing anything.
    No phantom
   update notification anymore. Strange…
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Kadence Security – Password, Two Factor Authentication, and Brute Force Protection] Lost password link broken on multi site](https://wordpress.org/support/topic/lost-password-link-broken-on-multi-site/)
 *  [Ulme](https://wordpress.org/support/users/ulme/)
 * (@ulme)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/lost-password-link-broken-on-multi-site/#post-5303144)
 * *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…
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Kadence Security – Password, Two Factor Authentication, and Brute Force Protection] Lost password link broken on multi site](https://wordpress.org/support/topic/lost-password-link-broken-on-multi-site/)
 *  [Ulme](https://wordpress.org/support/users/ulme/)
 * (@ulme)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/lost-password-link-broken-on-multi-site/#post-5303105)
 * 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');
       }
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Kadence Security – Password, Two Factor Authentication, and Brute Force Protection] Lost password link broken on multi site](https://wordpress.org/support/topic/lost-password-link-broken-on-multi-site/)
 *  [Ulme](https://wordpress.org/support/users/ulme/)
 * (@ulme)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/lost-password-link-broken-on-multi-site/#post-5303080)
 * Redirecting the Lost Password URL to
 * mainmulitsitedomain.com/yourhideslug?action=lostpassword
 * did the trick for me, not very shiny but working
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Kadence Security – Password, Two Factor Authentication, and Brute Force Protection] [Plugin: Better WP Security] Registration doesn't work if Hide Backend option is on (v3.4.4)](https://wordpress.org/support/topic/plugin-better-wp-security-registration-doesnt-work-if-hide-backend-option-is-on-v344/)
 *  [Ulme](https://wordpress.org/support/users/ulme/)
 * (@ulme)
 * [12 years, 11 months ago](https://wordpress.org/support/topic/plugin-better-wp-security-registration-doesnt-work-if-hide-backend-option-is-on-v344/#post-3045128)
 * 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=register
 * to
 * wp-login.php?xxx&action=register
 * xxx has to be the secret key from BWPS

Viewing 9 replies - 1 through 9 (of 9 total)