• Resolved forgetme

    (@forgetme)


    FILE: /public_html/wp-content/plugins/nextend-facebook-connect/includes/oauth2.php
    ——————————————————————————————————————————————————-
    FOUND 3 ERRORS AFFECTING 1 LINE
    ——————————————————————————————————————————————————-
    219 | ERROR | Extension ‘mcrypt’ is deprecated since PHP 7.1 and removed since PHP 7.2; Use openssl (preferred) or pecl/mcrypt once available instead
    219 | ERROR | Function mcrypt_create_iv() is deprecated since PHP 7.1 and removed since PHP 7.2; Use random_bytes() or OpenSSL instead
    219 | ERROR | The constant “MCRYPT_DEV_URANDOM” is deprecated since PHP 7.1 and removed since PHP 7.2

Viewing 1 replies (of 1 total)
  • Plugin Support Laszlo

    (@laszloszalvak)

    Hi @forgetme

    These are not errors, but fallback codes for PHP 7.1 and older versions.
    This means those codes won’t run on PHP 7.3 at all.

    The actual code look like this:

            if (function_exists('mcrypt_create_iv')) {
                /** @noinspection PhpDeprecationInspection */
                $binaryString = mcrypt_create_iv(self::CSRF_LENGTH, MCRYPT_DEV_URANDOM);
    
                if ($binaryString !== false) {
                    return $this->bytesToString($binaryString);
                }
            }

    So don’t worry Nextend Social Login will work fine, but thanks for your report!

    Best regards,
    Laszlo.

Viewing 1 replies (of 1 total)
  • The topic ‘PHP 7.3 support’ is closed to new replies.