apache - How to prepend PHP file to ionCubed script -
i've prepend php file of script files using php.ini config:
auto_prepend_file = "./file.php"
then got error while running script:
site error: file /home/user/public_html/path/index.php requires ioncube php loader ioncube_loader_lin_5.3.so installed website operator. if website operator please use ioncube loader wizard assist installation.
since script encoded ioncube, there way make okay?
just more details, here file.php contents:
<?php $_server['server_addr'] = '100.101.102.103'; $_env['server_addr'] = '100.101.102.103'; $http_server_vars['server_addr'] = '100.101.102.103'; ?>
you need setup ioncube php loader error message telling you.
download appropriate loader here: http://www.ioncube.com/loaders.php
follow docs setup: http://www.ioncube.com/loader_installation.php
there loader wizard helps setup: http://www.ioncube.com/loader-wizard/loader-wizard.zip
once have ioncube php loader working, encoded script should work.
Comments
Post a Comment