Kavious,
I've been doing some research on your problem...
What version of PHP do you have? Do you know if safe mode is on?
http://us.php.net/fopen -- This is the function that opens the VGPlayers CSV file.
Quote:
If PHP has decided that filename specifies a registered protocol, and that protocol is registered as a network URL, PHP will check to make sure that allow_url_fopen is enabled. If it is switched off, PHP will emit a warning and the fopen call will fail.
|
And here is the allow_url_fopen:
Quote:
allow_url_fopen boolean
This option enables the URL-aware fopen wrappers that enable accessing URL object like files. Default wrappers are provided for the access of remote files using the ftp or http protocol, some extensions like zlib may register additional wrappers.
Note: This setting can only be set in php.ini due to security reasons.
Note: This option was introduced immediately after the release of version 4.0.3. For versions up to and including 4.0.3 you can only disable this feature at compile time by using the configuration switch --disable-url-fopen-wrapper.
|
So it looks like you may be unable to run the scheduled task because safe mode for PHP is turned on.
Something you can try....
- Download the CSV from VGPlayers manually. From your guild's page on VGPlayers, right-click the CSV List link and choose Save-As. The file will be something like "guildsRosterCSV.vm"
- Rename that file to "guildsRosterCSV.csv" and upload it to your webserver.
- Change line #27 in "vgroster_import.php" to the location of where you uploaded the CSV file in Step 2. Don't use a URL... use something similar to this:
Code:
$file = "/forum_root/vgroster/guildsRosterCSV.csv";
- Try the Scheduled Task and see if it works locally rather than trying to grab the CSV from a URL.