小编Sen*_*per的帖子

无法加载 ionCube PHP Loader - 它是用配置 2.2.0 构建的

我在 WordPress 中设置了玉米文件,但“无法加载 ionCube PHP Loader - 它是用配置 2.2.0 构建的,而运行引擎是 API220100525,NTS Zend Optimizer 需要 Zend Engine API 版本 220060519。” 这个错误来了。

这是我的 Cron 文件代码。

#!/usr/bin/php -q
<?php
    ob_clean();
    date_default_timezone_set('America/Chicago');
    include("../../../wp-config.php");
    error_reporting(0);
    /*
    * snad mail befor 5 day expire post
    */
    $properties = PL()->properties->get_properties(array(
        'status'=> 'publish',
        'before' => PL()->settings->renew_day - 5
    ));

    foreach($properties as $property)   {
        $is_warning_sent = get_post_meta($property->ID,'expire_warning_sent',true);
        if($is_warning_sent != 'true'){
            PL()->properties->send_expire_warning($property->ID);
            echo "Post Exipred warning - ".$property->ID." \n\n";
        }

    }
    /*
    * expire post
    */
    $properties = PL()->properties->get_properties(array( …
Run Code Online (Sandbox Code Playgroud)

php wordpress ioncube

2
推荐指数
1
解决办法
6797
查看次数

标签 统计

ioncube ×1

php ×1

wordpress ×1