UBB.Dev
Posted By: Zombie HELP ... PERL problem - 10/27/2002 5:40 AM
I am restoring my backups to a rebuilt server.

The server is now running RH8.0 Perl 5.008

I am getting this error from ubb6_test.cgi

Invalid [] range "a-Z" in transliteration operator at Modules/vars.pm line 17.

line 17 says:
if ($sym =~ tr/A-Za-Z_0-9//c) {

I cant figure this out .... HELLLPPPPP !!!!
help help
Posted By: JB007 Re: HELP ... PERL problem - 10/27/2002 6:27 AM
Change the line to
Code
if ( $sym =~ tr/A-Za-z_0-9//c ) {
Note the small 'z'.
Posted By: Charles Capps Re: HELP ... PERL problem - 10/27/2002 9:38 AM
'Tis a bug in the vars.pm file we ship - you should simply delete the file.
Posted By: Zombie Re: HELP ... PERL problem - 10/27/2002 2:06 PM
Thank You ... it worked smile
© UBB.Developers