ionCube Loader Wizard
Please note that the following problems currently exist with the ionCube Loader installation:
The following ini file could not be found by the Wizard: C:\php-5-2-fastcgi\php.ini
This may be due to server restrictions in place.
The necessary zend_extension line could not be found in the configuration.
Please note also the following issues:
Some functions are disabled through disable_functions. This may affect the operation of this Loader Wizard.
You are on a platform on which ionCube Loaders are no longer being developed. Loaders on your platform may not be able to run files produced by the latest ionCube Encoder. Please switch, if possible, to a platform on which loaders are currently supported. A list of currently supported platforms is shown on our loaders page.
To use files that have been protected by the ionCube PHP Encoder, a component called the ionCube Loader must be installed.
For a local server you should install the ionCube Loader using the php.ini configuration file. (Please click here if you are not on a local server.)
Installation Instructions
Download one of the following archives of Windows VC6 x86 Loaders:
zip
MS Windows installer
Please note that the MS Windows installer version is suitable either for direct installation on a Windows machine or for uploading from a local PC to your server.
A Loaders archive can also be downloaded from http://loaders.ioncube.com/.
Put the Loader files in C:\windows\system32
Edit the file C:\php-5-2-fastcgi\php.ini and before any other zend_extension_ts lines ensure that the following is included:
zend_extension_ts = "C:\windows\system32\ioncube_loader_win_5.2.dll"
Restart the IIS server software.
When the server software has restarted, click here to test the Loader.
这情况是。。。
The following problems have been found with the ionCube Loader installation:
The ionCube Loader must be the first Zend extension listed in the configuration file, C:\php_53\php.ini.
The necessary zend_extension line could not be found in the configuration.
提示这个,要怎样操作才对?
To upgrade from version 4.0.14 to version 10.0.4 of the ionCube Loader, please replace your existing loader file, ioncube_loader_lin_5.3.so, with the file of the same name from one of the following packages: 这是指那个目录,找不到?
已经安装好了ioncube,The ionCube Loader version 10.0.3 for PHP 7.0 is installed and encoded files should run successfully.
打开禅道,仍然报错,显示
Fatal error: The file E:\workspace\php\www\zentaopms\module\common\ext\model\class\bizext.class.php was encoded by the ionCube Encoder for PHP 5.3 and cannot run under PHP 7.0. Please ask the provider of the script to provide a version encoded with the ionCube Encoder for PHP 5.6. in Unknown on line 0
14:36:22 The file E:\workspace\php\www\zentaopms\module\common\ext\model\class\bizext.class.php was encoded by the ionCube Encoder for PHP 5.3 and cannot run under PHP 7.0.
Please ask the provider of the script to provide a version encoded with the ionCube Encoder for PHP 5.6. in Unknown on line 0 when visiting
请看下这是怎么回事呢,php是7.0呀
Please note that the following problems currently exist with the ionCube Loader installation:
The following ini file could not be found by the Wizard: C:\php-5-2-fastcgi\php.ini
This may be due to server restrictions in place.
The necessary zend_extension line could not be found in the configuration.
Please note also the following issues:
Some functions are disabled through disable_functions. This may affect the operation of this Loader Wizard.
You are on a platform on which ionCube Loaders are no longer being developed. Loaders on your platform may not be able to run files produced by the latest ionCube Encoder. Please switch, if possible, to a platform on which loaders are currently supported. A list of currently supported platforms is shown on our loaders page.
To use files that have been protected by the ionCube PHP Encoder, a component called the ionCube Loader must be installed.
For a local server you should install the ionCube Loader using the php.ini configuration file. (Please click here if you are not on a local server.)
Installation Instructions
Download one of the following archives of Windows VC6 x86 Loaders:
zip
MS Windows installer
Please note that the MS Windows installer version is suitable either for direct installation on a Windows machine or for uploading from a local PC to your server.
A Loaders archive can also be downloaded from http://loaders.ioncube.com/.
Put the Loader files in C:\windows\system32
Edit the file C:\php-5-2-fastcgi\php.ini and before any other zend_extension_ts lines ensure that the following is included:
zend_extension_ts = "C:\windows\system32\ioncube_loader_win_5.2.dll"
Restart the IIS server software.
When the server software has restarted, click here to test the Loader.
这情况是。。。
$v) { $tmp_key = urlencode(is_int($k) ? $numeric_prefix.$k : $k); if ($key) $tmp_key = $key.'['.$tmp_key.']'; if ( is_array($v) || is_object($v) ) { $res[] = php4_http_build_query($v, null , $tmp_key); } else { $res[] = $tmp_key."=".urlencode($v); } } $separator = ini_get('arg_separator.output'); return implode($separator, $res); } function script_version() { return "2.55"; } function retrieve_latest_wizard_version() { $v = false; $s = trim(remote_file_contents(WIZARD_LATEST_VERSION_URL)); if (preg_match('/^\d+([.]\d+)*$/', $s)) { $v = $s; } return $v; } function latest_wizard_version() { if (!isset($_SESSION['latest_wizard_version'])) { $_SESSION['latest_wizard_version'] = retrieve_latest_wizard_version(); } return $_SESSION['latest_wizard_version']; } function update_is_available($lv) { if (is_numeric($lv)) { $lv_parts = explode('.',$lv); $script_parts = explode('.',script_version()); return ($lv_parts[0] > $script_parts[0] || ($lv_parts[0] == $script_parts[0] && $lv_parts[1] > $script_parts[1])); } else { return null; } } function check_for_wizard_update($echo_message = false) { $latest_version = latest_wizard_version(); $update_available = update_is_available($latest_version); if ($update_available) { if ($echo_message) { echo '
An updated version of this Wizard script is available here.
'; } return $latest_version; } else { return $update_available; } } function remote_file_contents($url) { $remote_file_opening = ini_get('allow_url_fopen'); $contents = false; if (isset($_SESSION['timing_out']) && $_SESSION['timing_out']) { return false; } @session_write_close(); $timing_out = 0; if ($remote_file_opening) { $fh = @fopen($url,'rb'); if ($fh) { stream_set_blocking($fh,0); stream_set_timeout($fh,IONCUBE_CONNECT_TIMEOUT); while (!feof($fh)) { $result = fread($fh, 8192); $info = stream_get_meta_data($fh); $timing_out = $info['timed_out']?1:0; if ($timing_out) { break; } if ($result !== false) { $contents .= $result; } else { break; } } fclose($fh); } else { $timing_out = 1; } } elseif (extension_loaded('curl')) { $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_HEADER, 0); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); .................
The ionCube Loader must be the first Zend extension listed in the configuration file, C:\php_53\php.ini.
The necessary zend_extension line could not be found in the configuration.
提示这个,要怎样操作才对?
打开禅道,仍然报错,显示
Fatal error: The file E:\workspace\php\www\zentaopms\module\common\ext\model\class\bizext.class.php was encoded by the ionCube Encoder for PHP 5.3 and cannot run under PHP 7.0. Please ask the provider of the script to provide a version encoded with the ionCube Encoder for PHP 5.6. in Unknown on line 0
14:36:22 The file E:\workspace\php\www\zentaopms\module\common\ext\model\class\bizext.class.php was encoded by the ionCube Encoder for PHP 5.3 and cannot run under PHP 7.0.
Please ask the provider of the script to provide a version encoded with the ionCube Encoder for PHP 5.6. in Unknown on line 0 when visiting
请看下这是怎么回事呢,php是7.0呀