On Wed, 12 Feb 2003 16:22:41 -0800, Lielie Meimei wrote: > Hello.. > > I'm still newbie. > > Could u help me to see why in the script perl here can > not compiled, please help me.
What's the error message printed by Perl ? Normally it includes also the reason and the location of the error. > > > ==================Begin of indexsite.pl ============== > > #!/usr/bin/perl > use strict; use warnings; First you should let help you by Perl as much as you can, by using strict and warnings mode. I'm sure, Perl will give you then better explanation what went wrong. You can also use use diagnostics; to get detailed informations. > $directory='/root/tmp'; > [snipped hundred of lines of code] I'm afraid, most of us don't have enough time to read whole your script. Locate the error first, try to solve it your own and if impossible post the relevant part of the script here. Greetings, Janek -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]