Re: [cgiapp] Calling redirect under CA::Dispatch and mod_rewrite

2010-12-01 Thread Michael Peters
On 11/26/2010 04:07 PM, Gurunandan R. Bhat wrote: Is there something about using redirects under CA::Dispatch that I am missing? I use CA::Dispatch and redirects all the time. Although not from CAP::Redirect. I instead use the header_type and header_props combo. -- Michael Peters Plus

Re: [cgiapp] Calling redirect under CA::Dispatch and mod_rewrite

2010-12-01 Thread Mark Stosberg
On 11/26/2010 04:07 PM, Gurunandan R. Bhat wrote: Hi, I am moving my application to work under CA::Dispatch and using mod_rewrite to hide the dispatch script (index.cgi) from the URL. I am using rewrite rules .htaccess copy-pasted (without change) from the CA::Dispatch man page and I am

Re: [cgiapp] Calling redirect under CA::Dispatch and mod_rewrite

2010-12-01 Thread Gurunandan R. Bhat
The problem was that I had my application to use CGI qw/:cgi/ in my cgiapp_get_query. I changed it to use CGI::Simple and everything works as expected. I had mistakenly assumed that importing the :cgi set from CGI would be OK, but it seems to break many things. Thank you for your attention