mod_perl doesn't seem to work

2003-07-24 Thread Kates Gasis
Hello Perl world.   I'm using ActiveState Perl 5.6.1 and Apache 1.3.27. Everything used to work fine until I installed mod_perl. Now my perl scripts doesn't work anymore. Whenever I access my scripts, my browser is giving me an option to save or open the file. If I choose open, the script wil

RE: mod_perl doesn't seem to work

2003-07-24 Thread Bob Showalter
Kates Gasis wrote: > Hello Perl world. > > I'm using ActiveState Perl 5.6.1 and Apache 1.3.27. Everything used > to work fine until I installed mod_perl. Now my perl scripts doesn't > work anymore. Whenever I access my scripts, my browser is giving me > an option to save or open the file. If I cho

.htaccess

2003-07-24 Thread awarsd
Hello, I'm curious i read somewhere with .htaccess we can block user to do hotlinks in both ways etc... But my question is a bit different it is possible with .htaccess to forbid forms that comes from a different domain? so no hacking Thank You -- To unsubscribe, e-mail: [EMAIL PROTECTED] Fo

Re: PHP vs Perl

2003-07-24 Thread Todd W.
<[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > > > One of the coolest answers is at: > > > >http://us2.php.net/manual/en/faq.languages.php#faq.languages.perl > > > > where it notes that Perl is a complicated language that comes from > > a time before the web whereas PHP was

RE: .htaccess

2003-07-24 Thread Hanson, Rob
This is really an Apache question, not Perl. Most things that can be done in the Apache config can be done in a .htaccess file, assuming the main Apache config file allows you to do so. You might want to check out the Apache docs at http://httpd.apache.org. Rob -Original Message- From:

return(bless $rant, $class) || Fwd: PHP vs Perl

2003-07-24 Thread drieux
Todd either Paused for more MountainDew or had a Moment: [..] Those last two paragraphs were total rant, and I probably have no idea what I'm talking about, but they are getting posted anyway ;0) [..] I would like be so totally opposed to your position if it were not for most of the dark horro

Re: return(bless $rant, $class) || Fwd: PHP vs Perl

2003-07-24 Thread Camilo Gonzalez
drieux wrote: Todd either Paused for more MountainDew or had a Moment: [..] Those last two paragraphs were total rant, and I probably have no idea what I'm talking about, but they are getting posted anyway ;0) [..] I would like be so totally opposed to your position if it were not for most of

htaccess and CGI Perl passwording

2003-07-24 Thread Gordon Low
Wondered if someone can help, am floundering about trying to work out whether to use htaccess or a database type solution in order to restrict access to my personal website. Have looked at perl module Apache::Htaccess module and this raises the same question I have with the htaccess solution, ca

Re: Regex question.

2003-07-24 Thread Dennis Stout
> my $date =~ s#(\d{2})(\d{2})(\d{4})#$1/$2/$3#; That amazingly, doesn't have much performance loss to it. I just did: sub build_list_news { my $newstext = ""; my %news = get_news(); foreach (keys %news) { $news{$_}{ctime} =~ s#(\d{4})(\d{2})(\d{2})(\d{2})