Hi
Thank you for your tool - I just tried it today.
I had a little problem writing the rss file when it was
already existing.
There should be a test, if there is a file with the
same name an delete it before creating it again,
shouldn't ist?
With best regards
Ursula
Logged In: NO
you can put this in the code around line 518. This will
remove the file with the same name before you recreate it.
//if the file is preexisting
if(file_exists($name) )
unlink($name);
// Creates the new file //
$file = @fopen ($name, "w");
...
...
...