php.ini config を使用して、すべてのスクリプト ファイルに PHP ファイルを追加しました。
auto_prepend_file = "./file.php"
次に、スクリプトの実行中に次のエラーが発生しました。
Site error: the file /home/user/public_html/path/index.php requires the
ionCube PHP Loader ioncube_loader_lin_5.3.so to be installed by the website
operator. If you are the website operator please use the ionCube Loader Wizard
to assist with installation.
スクリプトはionCubeでエンコードされているので、これを大丈夫にする方法はありますか?
詳細については、file.php の内容を次に示します。
<?php
$_SERVER['SERVER_ADDR'] = '100.101.102.103';
$_ENV['SERVER_ADDR'] = '100.101.102.103';
$HTTP_SERVER_VARS['SERVER_ADDR'] = '100.101.102.103';
?>