Re: [EMAIL PROTECTED] Proglem with RewriteMap directive (mod_rewrite module)

2006-10-17 Thread Sandeep Warikoo
Hi Georgi,   Changed RewriteLock to some other file. Still the problem persists.  On 10/17/06, Georgi Chorbadzhiyski <[EMAIL PROTECTED]> wrote: Sandeep Warikoo wrote:> I am facing a very strange problem with mod_rewrite module of Apache.> I am using an external program in perl to perfo

[EMAIL PROTECTED] Proglem with RewriteMap directive (mod_rewrite module)

2006-10-17 Thread Sandeep Warikoo
Hi All,I am facing a very strange problem with mod_rewrite module of Apache.I am using an external program in perl to perform key-value mapping using RewriteMap Directive.I have a very simple program: -#!/usr/bin/perl$|=1;$i = 1;while($input = ){    print "$i\n";    $i++;}--