Forum Replies Created

Viewing 1 replies (of 1 total)
  • Forum: Plugins
    In reply to: [Speaker Lite] Fatal Error
    rasoko

    (@rasoko)

    Hello,

    ran into this issue too.

    Just fixed it with putting a platform_check.php into the folder /plugins/speaker-lite/vendor/composer

    <?php
    
    // platform_check.php @generated by Composer
    
    $issues = array();
    
    if (!(PHP_VERSION_ID >= 70400 && PHP_VERSION_ID < 90000)) {
        $issues[] = 'Your Composer dependencies require a PHP version ">= 7.4.0" and "< 9.0.0". You are running ' . PHP_VERSION  .  '.';
    }
    
    $missingExtensions = array();
    extension_loaded('pdo') || $missingExtensions[] = 'pdo';
    
    if ($missingExtensions) {
        $issues[] = 'Your Composer dependencies require the following PHP extensions to be installed: ' . implode(', ', $missingExtensions);
    }
    
    if ($issues) {
        echo 'Composer detected issues in your platform:' . "\n\n" . implode("\n", $issues);
        exit(104);
    }

    Ciao,
    Joachim

Viewing 1 replies (of 1 total)