The following requirements must be met if you want to install and run EQDKPlus:
If you don't know your versions or settings upload a little .php file
Create an empty file with the following code pasted:
<?PHP phpinfo(); ?>
Ask your provider if your webspace supports those functions or test yourself:
Create a file with this pasted:
<?PHP
if (function_exists('curl_init'))
{
echo ("cURL function found <br />");
if (ini_get('allow_url_fopen') == 1)
{
echo ("fopen function found <br />");
}
else
{
echo ("fopen function deactivated <br />");
}
}
else if (ini_get('allow_url_fopen') == 1)
{
echo ("cURL not found <br />");
echo ("fopen function found <br />");
}
else
{
echo("The php functions <a href=http://php3.de/manual/en/ref.curl.php>cURL</a> and
<a href=http://de3.php.net/manual/en/function.fopen.php> fopen </a>
are not available on your webspace ! <br>
Please contact your hoster and ask him to enable those functions!");
}
?>