10-03-2014, 11:47 PM
Create a file called "test.php" in your webserver root.
Add the following:
Open the file in your browser and you'll find the following.
Curl Support (I highly doubt PHP was compiled without support for it):
"-with-curl=/curldirectory"
URL Open Support:
"allow_url_fopen => On"
If "allow_url_fopen" is set to off, you're host might be running suPHP, this might work.
Create "php.ini" in webserver root.
Add the following to the file.
Add the following:
PHP Code:
phpinfo();
Open the file in your browser and you'll find the following.
Curl Support (I highly doubt PHP was compiled without support for it):
"-with-curl=/curldirectory"
URL Open Support:
"allow_url_fopen => On"
If "allow_url_fopen" is set to off, you're host might be running suPHP, this might work.
Create "php.ini" in webserver root.
Add the following to the file.
Code:
allow_url_fopen = On;