Re: Perl script and mod_rewrite

2005-03-03 Thread Jan Eden
Hi Vladimir, Vladimir D Belousov wrote on 03.03.2005: >Jan Eden wrote: > >>Vladimir D Belousov wrote on 03.03.2005: >> >> >> >>>Vladimir D Belousov wrote: >>> >>> >>> just try: $q->start_form(-method=>"POST"); >>>I'm wrong, sorry. Can I see your .htaccess in part of ModRewr

Re: Perl script and mod_rewrite

2005-03-03 Thread Jan Eden
Vladimir D Belousov wrote on 03.03.2005: >Jan Eden wrote: > >>Vladimir D Belousov wrote on 03.03.2005: >> >> >> >>>Vladimir D Belousov wrote: >>> >>> >>> just try: $q->start_form(-method=>"POST"); >>>I'm wrong, sorry. Can I see your .htaccess in part of ModRewrite >>>directi

Re: Perl script and mod_rewrite

2005-03-03 Thread Vladimir D Belousov
Jan Eden wrote: Vladimir D Belousov wrote on 03.03.2005: Vladimir D Belousov wrote: just try: $q->start_form(-method=>"POST"); I'm wrong, sorry. Can I see your .htaccess in part of ModRewrite directives? Sure (abbreviated): RewriteEngine on RewriteBase / RewriteRule ^news/?$ cgi

Re: Perl script and mod_rewrite

2005-03-03 Thread Jan Eden
Vladimir D Belousov wrote on 03.03.2005: >Vladimir D Belousov wrote: > >>just try: >> >>$q->start_form(-method=>"POST"); > > >I'm wrong, sorry. Can I see your .htaccess in part of ModRewrite >directives? Sure (abbreviated): RewriteEngine on RewriteBase / RewriteRule ^news/?$ cgi-bin/show.pl?id=

Re: Perl script and mod_rewrite

2005-03-03 Thread Vladimir D Belousov
Vladimir D Belousov wrote: just try: $q->start_form(-method=>"POST"); I'm wrong, sorry. Can I see your .htaccess in part of ModRewrite directives? Jan Eden wrote: Hi, I use mod_rewrite to provide simpler URLs for my database-driven site. My document root's .htaccess contains the following line (a

Re: Perl script and mod_rewrite

2005-03-03 Thread Jan Eden
Vladimir D Belousov wrote on 03.03.2005: >just try: > >$q->start_form(-method=>"POST"); > I had done that already. Besides, POST is the default method anyway. Thanks, Jan -- The day Microsoft makes something that doesn't suck is the day they start selling vacuum cleaners. -- To unsubscribe, e

Re: Perl script and mod_rewrite

2005-03-03 Thread Vladimir D Belousov
just try: $q->start_form(-method=>"POST"); Jan Eden wrote: Hi, I use mod_rewrite to provide simpler URLs for my database-driven site. My document root's .htaccess contains the following line (among others): RewriteRule pages/([0-9]+) cgi-bin/show.pl?id=$1 It works fine. But some of my pages are pa

Perl script and mod_rewrite

2005-03-03 Thread Jan Eden
Hi, I use mod_rewrite to provide simpler URLs for my database-driven site. My document root's .htaccess contains the following line (among others): RewriteRule pages/([0-9]+) cgi-bin/show.pl?id=$1 It works fine. But some of my pages are password-protected, such that show.pl calls the followin