0

我有的 :

我尝试设置一个 cakephp1.3 应用程序。

在我的应用程序中,使用了 ionCube Loader。

错误 :

我得到以下错误

“许可证验证问题:许可证无效。请查看知识库以获取有关如何解决此问题的信息。”

我尝试了什么:

1. http://blog.eukhost.com/webhosting/ioncube-installation-globally/

2.

<?php
  print_r(get_loaded_extensions());
 ?>

它给我:

  Array (      
   .......
   .......
   [50] => paradox
   [51] => ionCube Loader
   [52] => Zend Optimizer
)

我认为“ionCube Loader”已经安装。

我想要的是:

如何解决以下错误

“许可证验证问题:许可证无效。请查看知识库以获取有关如何解决此问题的信息。”

4

2 回答 2

2

而不是运行:

<?php
  print_r(get_loaded_extensions());
 ?>

制作一个包含以下内容的 PHP 文件:

<?php phpinfo(); ?>

并通过它检查所需的组件,您还可以查看此链接: http: //www.ioncube.com/loader_installation.php

如需更深入的概述,请在下载 ioncube 加载器的同一页面上;它为您提供了一个小脚本,您可以将其上传到您的 web 目录,它会告诉您如何安装并为您进行所需的检查。这个小工具叫做Loader Wizard

http://www.ioncube.com/loaders.php <-- 装载机

如果您仍有问题,值得一试;然后联系 ioncube 支持

于 2012-12-22T01:26:27.747 回答
1

This suggests that you have some files that are protected, and that the creator of the files has specified that they need a license. The ionCube component will be working fine and doing its job. The provider of the scripts should be able to assist. If you are using the ionCube Encoder and the creator of the files, ionCube support would be able to assist.

于 2012-12-21T22:15:31.687 回答