 |
|
Author |
Message |
webfeatus
Joined: 12 May 2008
Posts: 23
|
Posted:
Mon Dec 16, 2013 4:32 am |
  |
|
 |
 |
Tech Support
Joined: 27 Aug 2004
Posts: 2798
|
Posted:
Mon Dec 16, 2013 1:32 pm |
  |
You can probably edit your rss2html.php file to fix that.
On (or around) line 450 in rss2html.php you will see this:
Code: |
//
// If using cURL, make sure it exists
if (($useFopenURL == 0) && !function_exists("curl_init")) {
$useFopenURL = -1;
if (isset($debugLevel) && ($debugLevel >= 3)) {
echo "DIAG: setting \$useFopenURL=-1 because curl_init() doesn't exist<br>\n";
}
}
|
Add this line before it:
date_default_timezone_set('Asia/Singapore');//or change to whatever timezone you want
So it will now look like this:
Code: |
date_default_timezone_set('Asia/Singapore');//or change to whatever timezone you want
//
// If using cURL, make sure it exists
if (($useFopenURL == 0) && !function_exists("curl_init")) {
$useFopenURL = -1;
if (isset($debugLevel) && ($debugLevel >= 3)) {
echo "DIAG: setting \$useFopenURL=-1 because curl_init() doesn't exist<br>\n";
}
}
|
[/code] |
_________________ Create RSS Feeds
Audio Recording and Editing |
|
 |
 |
|
| |