RE: one last attempt?

2001-06-05 Thread Jamie Krasnoo
What server are you using? (Apache, ... etc ) Are you sure that you have it configured correctly for SSI? This should be in httpd.conf (if Apache): Exec /*.shtml /where/your/proggie/is.pl Make sure you also have -T enabled on your program (regardless if they take a value or not). Jamie -

RE: Perl: Finding unique strings in an array

2001-06-05 Thread Jamie Krasnoo
using Tie::IxHash would though. use strict; use Tie::IxHash; my %seen; tie %seen, 'Tie::IxHash'; my @array = qw(fee fi fo fum fee fee fi foo fum fogie); @seen{@array} = 1; my @wanted = keys %seen; print "@wanted\n"; outputs: fee fi fo fum foo fogie Jamie -Original Message- From: Pet

RE: perl -MCPAN -e shell / ppm / vpm - do what exactly?

2001-06-04 Thread Jamie Krasnoo
perl -MCPAN -e shell puts you in the command prompt of the module downloader for cpan not sure about ppm but I did find this PPM faq http://www.activestate.com/Products/ActivePerl/docs/faq/ActivePerl-faq2.html I couldn't find anything on vpm. Jamie -Original Message- From: Oliver Glass

RE: syntax/definitions

2001-06-04 Thread Jamie Krasnoo
Hi Sally, I use the library at www.perlmonks.com. It requires no login to use. Simply go to the site and in the search box at the top type in 'library' and hit search. That will take you right to the documentation that's the same docs that you would find as if you typed 'man perl' (and a