Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter Sujiwan

    (@sujiwan)

    Update:
    Using Firefox 45.0, Standard newsletter, drag and drop posts, only the oldest 20 posts ever show in the selection box. It refuses to load any more.

    If I go to Safari and launch my WordPress blog from there and a standard Wordpoet newsletter, it will also only show the oldest posts, BUT if I wait and wait… eventually it will load all published posts and I can select the newest. So, I can send out a standard newsletter with the latest posts only if I switch browsers.

    Thread Starter Sujiwan

    (@sujiwan)

    I want to add that I made a test mailing list and tried to see if a test Standard form newsletter would go through the entire mail process. I scheduled for immediate mail out and the stats are “The last batch of e-mails should start sending automatically in the next few minutes”.

    If I click on Don’t wait and sent right now I get a message Sending Batch of e-mails: Queue is empty!

    Meanwhile, this test newsletter has been added to the “Sending…” limbo.

    Thread Starter Sujiwan

    (@sujiwan)

    Well, don’t I feel dense. I *never* noticed that area in quick edit before and that is exactly what I needed. Thanks for getting back to me. Problem solved!

    Thread Starter Sujiwan

    (@sujiwan)

    Reporting back.
    My husband was able to log in under my username on his machine and a proper e-mail was generated, which came to my inbox, allowing me to reset my password, although I had to go through a few additional steps with cut and paste, etc. to complete the process.
    So, I am back as Admin with a working password.

    However, the problem still exists for me using this OSX laptop and for others who lose their password and get the invalid key message. They can’t get in.

    Explanation and code below is what my DH noted and what we need to figure out to fix the problem with Forgot Password :

    After following the link, setting and confirming the new password, we get the following page (leaving out the extraneous <head/> stuff).

    ———

    <body class=”login login-action-resetpass wp-core-ui”>
    <div id=”login”>
    <h1>Carroll Garden Club</h1>
    <p class=”message reset-pass”>Your password has been reset. Log in</p>
    <p id=”backtoblog”>← Back to Carroll Garden Club</p>

    </div>

    <link rel=’stylesheet’ id=’wp-publication-archive-frontend-css’ href=’https://carrollgardenclub.org/wp-content/plugins/wp-publication-archive/includes/front-end.css?ver=3&#8242; type=’text/css’ media=’all’ />
    <script type=’text/javascript’ src=’https://carrollgardenclub.org/wp-content/plugins/sem-subscribe-me/js/scripts.js?ver=20090906′></script&gt;
    <div class=”clear”></div>
    </body>

    ———
    Note that the value of the href attribute is “”. This is supposed to be “https://hostname/wp-login.php&#8221;. Why it works on my husband’s site, and not mine, we don’t understand. He suspects apply_filters().

    The faulty link seems to be coming from the following line of code.

    login_header( __( ‘Password Reset’ ), ‘<p class=”message reset-pass”>’ . __( ‘Your password has been reset.’ ) . ‘ ‘ . __( ‘Log in’ ) . ‘</p>’ );

    This comes from the following code block in wp-login.php.
    ———-
    <?php
    login_footer(‘user_login’);
    break;

    case ‘resetpass’ :
    case ‘rp’ :
    $user = check_password_reset_key($_GET[‘key’], $_GET[‘login’]);

    if ( is_wp_error($user) ) {
    wp_redirect( site_url(‘wp-login.php?action=lostpassword&error=invalidkey’) );
    exit;
    }

    $errors = new WP_Error();

    if ( isset($_POST[‘pass1’]) && $_POST[‘pass1’] != $_POST[‘pass2’] )
    $errors->add( ‘password_reset_mismatch’, __( ‘The passwords do not match.’ ) );

    do_action( ‘validate_password_reset’, $errors, $user );

    if ( ( ! $errors->get_error_code() ) && isset( $_POST[‘pass1’] ) && !empty( $_POST[‘pass1’] ) ) {
    reset_password($user, $_POST[‘pass1’]);
    login_header( __( ‘Password Reset’ ), ‘<p class=”message reset-pass”>’ . __( ‘Your password has been reset.’ ) . ‘ ‘ . __( ‘Log in’ ) . ‘</p>’ );
    login_footer();
    exit;
    }

    wp_enqueue_script(‘utils’);
    wp_enqueue_script(‘user-profile’);

    login_header(__(‘Reset Password’), ‘<p class=”message reset-pass”>’ . __(‘Enter your new password below.’) . ‘</p>’, $errors );

    ?>

    Thread Starter Sujiwan

    (@sujiwan)

    I’m on a Mac OSX, but honestly get panic attacks when it comes to fiddling about with coding much less understanding what I am doing in that realm. I will ask my spouse, who does, to look at that portion of the link you sent. I will report on whether that leads to a fix. Thank you kindly for the prompt response to my query.
    Still miffed at self.

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