Forum Replies Created

Viewing 9 replies - 1 through 9 (of 9 total)
  • Thread Starter Kyouri

    (@kyouri)

    Thank you, Amit.

    All the plugins were updated to latest version.

    The issue was persistent so I deactivated all plugins and the customizer was still having issues on one of the three domains.

    Contacted my hosting provider, and while awaiting their response, I reinstalled WordPress 5.2.2 then slowly reactivated plugins. All seems fine now.

    Just for information, my host reached out to me this morning and mentioned that I was running php7.2 fastcgi and recommended changing the file to php7.2 cgi.

    As of right now, all seems fine with all 3 sites, so I will not be changing the php.

    Apologies for the subject line of this thread. I’ve been using OceanWP for years and it, along with the plugins, are the only theme I use. Props to the team! It is however, the only plugin that I initially deactivated and got the customizer to work. It seems, in my opinion, it was server side, not plugin related.

    Thank you again, for responding.

    Thread Starter Kyouri

    (@kyouri)

    Addendum: All 3 sites running WP 5.2.2

    Thread Starter Kyouri

    (@kyouri)

    Applied. Menus still active. Re-activated plugin. Menus disappeared. Cleared cache. Same issue. Deactivated plugin. Menus reappeared.

    Sorry this is causing issues. Thank you for trying, though.

    Thread Starter Kyouri

    (@kyouri)

    https://toukaisha.com – free version of OceanWP.

    Thank you for checking into this.

    Thread Starter Kyouri

    (@kyouri)

    Update of the support – Stephen responded in under 2 hours. Still working on the issue, but prompt response by theme creator is another plus for this theme.

    *Edit –
    Problem resolved.. sort of. Not a theme issue, a Chrome issue.

    Excellent service!

    Support – A+

    Thread Starter Kyouri

    (@kyouri)

    I completely forgot about this post, my apologies! Thank you, tepelstreel, for your reply.

    @ zauriel

    I’m no guru at CSS, but maybe try:

    div #editoriale .widget-title h3 {
    background-color: #2656A4;
    color: #FFFFFF;
    }

    Thread Starter Kyouri

    (@kyouri)

    It’s fixed now. Went through my c-panel. Changed the title of the plugins folder to ‘plugins-disabled’, created a new folder titled ‘plugins’ and started individually dragging and dropping each plugin back in. While the All-in-one-Events plugin was updated and is working, the lag in the reactivation of the plugin at the time of the update rendered 3 of my other plugins inoperable. It’s not really a big deal as I can reupload those plugins and start fresh with them. It was just more of a pain that the update lagged so badly that a refresh cut out the whole site.

    Nonetheless, I’ll mark this topic as resolved.

    Thread Starter Kyouri

    (@kyouri)

    Thanks, Ulrich. I removed the plugin directly from my c-panel, refreshed, but unfortunately the issue still persists.

    I even tried to find pluggable-function.php in order to receive a password reset email, but no luck. Checked pluggable.php but again not sure if what I found in a different topic would apply to that file as I cannot find “mime” anywhere in there. Perhaps I’m looking in the wrong place?

    http://ww.wp.xz.cn/support/topic/how-does-wp-send-the-user-registration-email/page/2?replies=58

    The function looks something like this:

    if ( !function_exists(‘wp_mail’) ) :
    function wp_mail($to, $subject, $message, $headers = ”) {
    if( $headers == ” ) {
    $headers = “MIME-Version: 1.0\n” .
    “From: ” . get_settings(‘admin_email’) . “\n” .
    “Content-Type: text/plain; charset=\”” . get_settings(‘blog_charset’) . “\”\n”;
    }

    return @mail($to, $subject, $message, $headers);
    }
    endif;

    For Brinkster, you want to rewrite it like this:

    if ( !function_exists(‘wp_mail’) ) :
    function wp_mail($to, $subject, $message, $headers = ”) {
    // if( $headers == ” ) {
    // $headers = “MIME-Version: 1.0\n” .
    // “From: ” . get_settings(‘admin_email’) . “\n” .
    // “Content-Type: text/plain; charset=\”” . get_settings(‘blog_charset’) . “\”\n”;
    // }
    //
    // return @mail($to, $subject, $message, $headers);

    require(“c:\php\includes\class.phpmailer.php”);

    $mail = new PHPMailer();

    $mail->IsSMTP();

    $mail->Host = “sendmail.brinkster.com”;

    $mail->SMTPAuth = true;

    $mail->Username = “[email protected]”;

    $mail->Password = “your-pass-here”;

    $mail->From = “[email protected]”;

    $mail->FromName = “User”;

    $mail->AddAddress($to);

    $mail->IsHTML(true);

    $mail->Subject = $subject;
    $mail->Body = $message;

    $mail->Send();

    }
    endif;

    Thread Starter Kyouri

    (@kyouri)

    Update: On FF
    The page isn’t redirecting properly

    Firefox has detected that the server is redirecting the request for this address in a way that will never complete.

    This problem can sometimes be caused by disabling or refusing to accept cookies.

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