Ejemplo n.º 1
0
function runtime_loading_instructions()
{
    $default = get_default_address();
    echo '<h4>Runtime Loading Instructions</h4>';
    echo '<div class=panel>';
    echo '<p>On your shared server the Loader can be installed using the runtime loading method.';
    echo " (<a href=\"{$default}&amp;manual=1\">Please click here if you are <strong>not</strong> on a shared server</a>.)</p>";
    if ('.' == extension_dir()) {
        $dirphrase = is_ms_windows() ? 'folder' : 'directory';
        echo "Please note that on your system the Loader <em>must</em> be present in the same " . $dirphrase . " as the first encoded file accessed.";
    }
    echo '<ol>';
    loader_download_instructions();
    $loader_dir = loader_install_instructions(SERVER_SHARED, dirname(__FILE__));
    shared_test_instructions();
    echo '</ol>';
    echo '</div>';
}
Ejemplo n.º 2
0
function runtime_loading_instructions()
{
    $default = get_default_address();
    echo '<h4>”运行时加载程序“说明</h4>';
    echo '<div class=panel>';
    echo '<p>在共享服务器上,加密程序可以通过“运行时加载技术”安装,';
    echo " (<a href=\"{$default}&amp;manual=1\">如果您的程序<strong>不是</strong>运行在共享服务器,请单击这里</a>.)</p>";
    if ('.' == extension_dir()) {
        $dirphrase = is_ms_windows() ? 'folder' : 'directory';
        echo "注意:加密程序<em>必须</em>与第一个加密文件在同一个目录下。";
    }
    echo '<ol>';
    loader_download_instructions();
    $loader_dir = loader_install_instructions(SERVER_SHARED, dirname(__FILE__));
    shared_test_instructions();
    echo '</ol>';
    echo '</div>';
}