Re: Retrieve Query String

2007-01-24 Thread Tracy12
://perl.apache.org/docs/offsite/books.html > > while all the existing books are biased toward mp1, once you understand > the API and how mod_perl really works in general, porting the > functionality to mp2 is pretty simple. > > --Geoff > > -- View this message in context: http://www.nabble.com/Retrieve-Query-String-tf3079246.html#a8577898 Sent from the mod_perl - General mailing list archive at Nabble.com.

Re: Retrieve Query String

2007-01-24 Thread Geoffrey Young
Tracy12 wrote: > In my mod_perl authentication module I have the following to get the url > without the ticket parameter > > my $uri_parsed = $r->parsed_uri; > my $unparsed = $uri_parsed->unparse(); > > but if the user hits the url as follows > > http://localhost/t

Retrieve Query String

2007-01-23 Thread Tracy12
oes to http://localhost/test/index.pl because of the Directory index configuration in my httpd.conf (e.g DirectoryIndex index.pl) When I print the $unparsed it gives http://localhost/test but How can I get the entire url. -- View this message in context: http://www.nabble.com/Retrieve-Query-