• Hello,

    Our website broke after the latest update, Unable to login after submitting the login form. Please see the error log below:

    PHP Fatal error: Uncaught TypeError: implode(): Argument #2 ($array) must be of type ?array, string given in /home/xxx/domains/xxx.com/public_html/wp-content/plugins/wp-user-frontend/includes/Free/Simple_Login.php:514
    Stack trace: 0 /home/xxx/domains/xxx.com/public_html/wp-content/plugins/wp-user-frontend/includes/Free/Simple_Login.php(514): implode() 1 /home/xxx/domains/xxx.com/public_html/wp-includes/class-wp-hook.php(324): WeDevs\Wpuf\Free\Simple_Login->process_login() 2 /home/xxx/domains/xxx.com/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters() 3 /home/xxx/domains/xxx.com/public_html/wp-includes/plugin.php(517): WP_Hook->do_action()
Viewing 10 replies - 1 through 10 (of 10 total)
  • Plugin Support Md. Tanvir Chowdhury

    (@tanvir101)

    Hi @techavenuelabs

    We are unfortunate for the inconvenience you may have faced. Without checking your site, we are unable to help you out in this forum.
    Therefore, I would like you to contact our support team so we can investigate the issue and provide guidance promptly.
    We expect your understanding and cooperation wholeheartedly.

    Thanks

    smaggio

    (@slier)

    Same error.
    In Simple_Login.php on line 514 you try to concatenate an array when $errors is an empty string.
    A temporary solution could be:
    $errors = implode( ‘, ‘, $errors );
    to
    if ( is_array( $errors ) ) {
    $errors = implode( ‘, ‘, $errors );
    }

    006rodaal

    (@006rodaal)

    Exactly the same problem here. Also posted it on your Github!

    Plugin Support Saiful Islam

    (@saifislam01)

    Hi @slier,

    Thank you for bringing this to our attention.

    For further assistance, please contact us through the website. Please note that we cannot investigate your issues in this forum.

    Thread Starter Tech Avenue Labs

    (@techavenuelabs)

    Thank you @slier!

    It’s sad that WeDevs, after breaking 20,000+ websites, hasn’t released an update yet. Their team asks us to contact them for investigation instead of investigating themselves. Strange!

    006rodaal

    (@006rodaal)

    @slier this solution doesn’t fix it for me. When I try to login after implementing your fix I get the error about Cloudflare Turnstile verification failed.

    006rodaal

    (@006rodaal)

    https://github.com/weDevsOfficial/wp-user-frontend/issues/1501 please give this issue urgency on github

    smaggio

    (@slier)

    @006rodaal disable Turnstile in settings or revert to previous plugin version of the plugin.

    @techavenuelabs the funny thing is that I am not asking for support but I am giving them a free solution.

    the solution works for me. tks @slier

    • This reply was modified 6 days, 23 hours ago by José Rebelo.

    Hi all,

    Thanks for your updates.
    We are actively working on this issue to find possible fix. Would you please open a support ticket for the site-specific fix?

    Please contact us through our contact form: https://wedevs.com/contact/
    Thanks.

Viewing 10 replies - 1 through 10 (of 10 total)
  • You must be logged in to reply to this topic.