Viewing 11 replies - 1 through 11 (of 11 total)
  • I’m having the same issue, glad I’m not alone.

    Support? Happens in FF or Chrome, doesn’t matter which os.

    Same here. ??

    Hi, Are you using the latest version of the plugin. Have you tested it with all other plugins deactivated?

    Went to update the settings page today and after saving the page is broken —?no text field after SMTP Password, no save button!

    https://i.imgur.com/OR3oXEI.png

    Same issue here… anyone found the solution?

    Same issue here… anyone found the solution?

    using latest version too…

    I have this issue too. My screen looks like sfocus’s screen. Here’s an html snippet (indents removed) from bottom of settings page:

    <tr class="ad_opt swpsmtp_smtp_options">
    <th>SMTP Password</th>
    <td>
    </td></tr></tbody></table></form></div></div></div></div></div></body>

    I think problem arose during update (a month or two ago, not sure which version).

    The problem is still there with all other plugins deactivated, and is still there after deactivating, deleting, and re-installing this plugin (version 1.1.8) while all other plugins were deactivated.

    I don’t know if it helps, but also…

    For SELECT * FROM $options where option_name like ‘%easy_wp_smtp%’

    I get the following (I’ve changed my email address, domain name, etc)…

    a:10:{s:4:"from";s:24:"[email protected]";s:8:"fromname";s:12:"xxxx xxxxxxx";s:4:"host";s:18:"mx.xxxxxxxxxxx.org";s:10:"smtpsecure";s:0:"";s:4:"port";s:0:"";s:8:"smtpauth";s:2:"no";s:8:"username";s:44:"not-used-since-not-using-SMTP-Authentication";s:8:"password";s:0:"";s:5:"debug";s:0:"";s:10:"deactivate";s:0:"";}

    The “not-used-since-not-using-SMTP-Authentication” value is something I entered a while back, but is not currently shown on the options screen (it says “yourusername”).

    Just came here to say the same, under Settings:
    NO SMTP Password input box showing, or Save changes button.

    Can not use this plugin without this! Argh.

    The password field calls a function called swpsmtp_get_password, but it has something wrong with it. That makes the thing crash and stop executing the code. For some reason it just flat out does not work. BUT YOU CAN FIX IT! On line 403 of the plug you need to replace what is there with this…

    if ( ! function_exists( 'swpsmtp_get_password' ) ) {
    	function swpsmtp_get_password() {
                $swpsmtp_options = get_option( 'swpsmtp_options' );
                $temp_password = $swpsmtp_options['smtp_settings']['password'];
                $password = "";
                $decoded_pass = base64_decode($temp_password);
                return $decoded_pass;
                /*
                if (base64_encode($decoded_pass) === $temp_password) {  //it might be encoded
                    if(false === mb_detect_encoding($decoded_pass)){  //could not find character encoding.
                        $password = $temp_password;
                    }
                    else{
                        $password = base64_decode($temp_password);
                    }
                }
                else{ //not encoded
                    $password = $temp_password;
                }
                return $password;
                */
    	}
    }

    After that will work just fine if you make sure to go in all your information from scratch. Then like magic it should work again. If you can’t see line numbers just look for “if ( ! function_exists( ‘swpsmtp_get_password’ ) ) {” and replace that chunk with what I gave you earlier. Hopefully this guy gets it fixed in his new release!

    @mav2287, Thanks for the coding tweak.

Viewing 11 replies - 1 through 11 (of 11 total)
  • The topic ‘Settings Page Broken?’ is closed to new replies.