vote up 2 vote down star

I've run into an issue with mod_rewrite when submitting forms to our site perl scripts. If someone does a GET request on a page with a url such as http://www.example.com/us/florida/page-title, I rewrite that using the following rewrite rule which works correctly:

RewriteRule ^us/(.*)/(.*)$ /cgi-bin/script.pl?action=Display&state=$1&page=$2 [NC,L,QSA]

Now, if that page had a form on it I'd like to do a form post to the same url and have Mod Rewrite use the same rewrite rule to call the same script and invoke the same action. However, what's happening is that the rewrite rule is being triggered, the correct script is being called and all form POST variables are being posted, however, the rewritten parameters (action, state & page in this example) aren't being passed to the Perl script. I'm accessing these variables using the same Perl code for both the GET and POST requests:

use CGI;
$query = new CGI;
$action = $query->param('action');
$state = $query->param('state');
$page = $query->param('page');

I included the QSA flag since I figured that might resolve the issue but it didn't. If I do a POST directly to the script URL then everything works correctly. I'd appreciate any help in figuring out why this isn't currently working. Thanks in advance!

flag

67% accept rate

3 Answers

vote up 5 vote down check

If you're doing a POST query, you need to use $query->url_param('action') etc. to get parameters from the query string. You don't need or benefit from the QSA modifier.

link|flag
$query->url_param() did the trick. I was dumping the $query param initially to try to see if it was being passed to CGI.pm but I guess that parameters in the POST URL aren't actually part of the $query object. Interesting but at least I now have the solution. Thanks for the quick response Sinan! – Russell C. Oct 16 at 14:30
@Russell C. I think you should be thanking @chaos. Now, who downvoted my answer? – Sinan Ünür Oct 16 at 14:32
Oops. New here. I meant, thanks @chaos! – Russell C. Oct 16 at 14:37
Well, don't I get any thanks for actually linking his answer to the docs? *I am joking* – Sinan Ünür Oct 16 at 14:55
Thanks Sinan. :) And yeah, what's the deal with the downvoting on this question? Harsh, yo. – chaos Oct 16 at 15:11
vote up 2 vote down

Change your script to:

use CGI;
use Data::Dumper;

my $query = CGI->new; # even though I'd rather call the object $cgi
print $query->header('text/plain'), Dumper($query);

and take a look at what is being passed to your script and update your question with that information.

link|flag
-1 that prepares a response, it doesn't show the input. The input query string comes from the environment variable QUERY_STRING. – Kinopiko Oct 16 at 14:44
1  
@Kinopiko Look at the output in front of you. The parameters that will be in that $cgi object will only be the parameters passed via post, not via the URL. That ought to then spark something that says ... hmmmm ... maybe the problem is not with mod_rewrite. How do I access the parameter passed in the URL when the form I am processing was POSTed? Let me see the CGI docs. Admittedly more indirect than `@chaos`s answer but still leading the OP in the right direction. Now, if you do not understand what is in the $cgi object, then that is a completely different matter. – Sinan Ünür Oct 16 at 14:53
Sorry, my mistake. I didn't notice the Dumper ($query) part. – Kinopiko Oct 16 at 14:56
Too late to change the vote, tough luck! – Kinopiko Oct 16 at 14:57
vote up -2 vote down

You could just look at $ENV{QUERY_STRING} actually. This will tell you exactly what is being passed from the web server to your script after the rewrite has been done, without making use of the CGI module. I think this is a good way to debug this kind of problem.

link|flag
2  
Don't reinvent the wheel. Use CGI.pm (or actually, CGI::Simple for pure OO). – Sinan Ünür Oct 16 at 14:54
1  
Well, that attitude of reinventing the wheel all the time is not productive. See perldoc.perl.org/perlfaq9.html#How-do-I-decode-a-… : Many people try to write their own decoder (or copy one from another program) and then run into one of the many "gotchas" of the task. – Sinan Ünür Oct 16 at 14:57
1  
This answer doesn't really deserve to be downvoted. It's correct and it might even be useful to someone. – Kinopiko Oct 16 at 15:04

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.