On Jan 30, 6:42 am, Bram - Smartelectronix <[EMAIL PROTECTED]> 
wrote:
> hello everyone,
>
> Short question!
>
> If I go tohttp://my.server.com/hello/this/is/my/path/
>
> and request.META.PATH_INFO is set to "/path" not to
> "/hello/this/is/my/path/"
>
> Runningmod_python/ apache. In the dev-server it obviously ( ;-) )
> works just fine...
>
> Any clues?

This can occur where you are using Location directive set to '/' and 
the actual DocumentRoot directory is specified and has physical 
directories which correspond to the leading components of the logical 
URL.

Ie., if under your document root you have directory '/hello/this/is/
my' and you request '/hello/this/is/my/path', then PATH_INFO can end 
up being just '/path' as Apache matched the bit of the URL before that 
to the physical directories. If this is indeed what happened, then 
SCRIPT_NAME would be '/hello/this/is/my'.

Graham


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to