0

我有一个在 ioncube4 中编码的脚本,它不能在 ioncube 5.5.19 上运行并且低于错误。

致命错误:文件 /home3/teaonclick/public_html/hahi.in/wp-content/themes/FlatZon/includes/pixr-amazon.php 由 ionCube Encoder for PHP 4 编码,无法在 PHP 5.5 下运行。请要求脚本提供者提供使用 ionCube 编码器编码的 PHP 5.3 或 PHP 5.4 或 PHP 5.5 版本。在第 0 行的未知中

如何更新脚本以使用 ioncube 5.5.19?我的网站在 Linux 操作系统上的共享托管服务提供商中运行

PHP 版本 5.5.19 MySQL 版本 5.5.35-cll

显示问题的文件内容如下。

<?php //0046b
if(!extension_loaded('ionCube Loader'))
{
    $__oc=strtolower(substr(php_uname(),0,3));
    $__ln='ioncube_loader_'.$__oc.'_'.substr(phpversion(),0,3).(($__oc=='win')?'.dll':'.so');
    if(function_exists('dl'))
    {
        @dl($__ln);
    }
    if(function_exists('_il_exec'))
    {
        return _il_exec();
    }
    $__ln='/ioncube/'.$__ln;
    $__oid=$__id=realpath(ini_get('extension_dir'));
    $__here=dirname(__FILE__);
    if(strlen($__id)>1&&$__id[1]==':')
    {
        $__id=str_replace('\\','/',substr($__id,2));
        $__here=str_replace('\\','/',substr($__here,2));
    }
    $__rd=str_repeat('/..',substr_count($__id,'/')).$__here.'/';
    $__i=strlen($__rd);
    while($__i--)
    {
        if($__rd[$__i]=='/')
        {
            $__lp=substr($__rd,0,$__i).$__ln;
            if(file_exists($__oid.$__lp))
            {
                $__ln=$__lp;
                break;
            }
        }
    }
    if(function_exists('dl'))
    {
        @dl($__ln);
    }
}
else
{
    die('The file '.__FILE__." is corrupted.\n");
}
if(function_exists('_il_exec'))
{
    return _il_exec();
}
echo('Site error: the file <b>'.__FILE__.'</b> requires the ionCube PHP Loader '.basename($__ln).' to be installed by the website operator. If you are the website operator please use the <a href="http://www.ioncube.com/lw/">ionCube Loader Wizard</a> to assist with installation.');
exit(199);

?>
HR+cPys/ztCE+Cj4mwPYK311udCFJfWF/McNVEDiA5pwzY1QSOjWWm4Rn1HE0AjyMFyv4qsiACbP

ETC..

4

1 回答 1

1

该消息的出现是因为在比较 PHP 4 和 PHP 5.5 时 PHP 的内部结构如此不同,以至于在 PHP 5.5 上运行为 PHP 4 编译的脚本时不可能完全兼容。因此,这是不受支持的。

如果脚本的原始提供者提供了为 PHP 5 构建的版本(尽管最好是为 5.4 或 5.5),那么您可以在 PHP 5.5 或 5.6 上运行它。或者,使用 PHP 5.4 运行旧代码。披露:我与 ionCube 有关。

于 2015-01-11T14:48:56.257 回答