Web hosts are gradually replacing earlier Perl versions with Perl 5.10.
It has been noted that the version of Tie::File, that is included in
Ringlink 3.2 and earlier Ringlink versions, does not work with Perl
5.10. This is what you can do:
The file that needs to be modified is
[Ringlink library]/Tie/File.pm
Currently line 92 in File.pm looks like:
seek $file, 0, SEEK_SET # put it back
Change that line to:
seek $file, 0, SEEK_SET; # put it back
i.e. add a semi-colon after SEEK_SET.
--
Gunnar Hjalmarsson