Re: URL configuration with Django deployed in a subdirectory

2008-09-02 Thread bryanzera
I've figured it out. .htaccess above my subdirectory was trying to munge my URLs rather than letting Django take care of them. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this gro

Re: URL configuration with Django deployed in a subdirectory

2008-09-02 Thread bryanzera
> You don't say how you are deploying the site. mod_python/apache2 --~--~-~--~~~---~--~~ 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 unsubsc

Re: URL configuration with Django deployed in a subdirectory

2008-08-29 Thread Graham Dumpleton
On Aug 30, 5:40 am, bryanzera <[EMAIL PROTECTED]> wrote: > I am a new Django user with Django 0.96 deployed in a sub-directory > under our main document root.  My problem is that I cannot get my URL > configuration to work. > > Inside the Django-deployed subdirectory, I have the following urls.p

Re: URL configuration with Django deployed in a subdirectory

2008-08-29 Thread Erik Allik
Just to let you know, if you upgraded your Django version, you wouldn't have to manually specify base_url in you URLconf because Django will do it for you. I'm not sure what's causing your problem though. Erik On 29.08.2008, at 22:40, bryanzera wrote: > > I am a new Django user with Djang

URL configuration with Django deployed in a subdirectory

2008-08-29 Thread bryanzera
I am a new Django user with Django 0.96 deployed in a sub-directory under our main document root. My problem is that I cannot get my URL configuration to work. Inside the Django-deployed subdirectory, I have the following urls.py file: from django.conf.urls.defaults import * base_url = 'columb