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
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
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
<[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
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:
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
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
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
> 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})