On 10/16/06 20:13, DavidA wrote:
> Hi,
> 
> I noticed an inconsistency between the request META information in the
> modpython handler versus the base handler.
> 
> I'm opening the URL http://web/data/pos/ which goes through two URL
> conf's:
> 
> The default urls.py for the application:
>     (r'^data/', include('pfweb.core.urls')),
> 
> And the urls.py for the 'core' app:
>     (r'^pos/$', 'pfweb.core.views.list_positions'),
> 
> But under mod_python, request.META['PATH_INFO'] is '/pos/' while in the
> development server its '/data/pos/' (which I think is right).
> 
> I'm using the PATH_INFO as a base for my next/previous links so they
> aren't working in production (under apache).
> 
> Shouldn't I be able to see the full path of the URL somehow under
> mod_python? (Maybe there is a better way than I'm trying).
> 
> I'm not sure what's right so I thought I'd post a question here before
> submitting a ticket.
> 

Have you got a folder/file named 'data' in your apaches document root?
If so, try nuking or renaming it.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django developers" group.
To post to this group, send email to django-developers@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-developers
-~----------~----~----~----~------~----~------~--~---

Reply via email to