Hi all,

I have written a blog app and tested it locally with the dev server.
It is working fine for me, I can get to the admin etc. I then set up
an fcgi server on Dream host, following Jeff Crofts tutorial at
http://www2.jeffcroft.com/blog/2006/may/11/django-dreamhost/

Before adding my app I could see the django page that comes up before
you add an app, but after adding the app I'm getting this error,
'module' object has no attribute 'urlpatterns' . (my urls file is
below)

I have looked at other posts on this and they don't seem to help. I
also saw somewhere that the problem might be using include() in my
urls. I don't want to take this out though because I'd have to add in
all the admin comments manually into my urls and that would get messy.

Locally I am using Django 0.95 but on the host I'm using the latest
django svn revision (as of 24/06/2007). Not sure that this would cause
the error though.

Any help would be great

Cheers

Brian

urls.py...

from django.conf.urls.defaults import *

urlpatterns = patterns('',
     (r'^blog/', include('jealousy.blog.urls')),
     (r'^gallery/', include('jealousy.gallery.urls')),

    # Uncomment this for admin:
     (r'^admin/', include('django.contrib.admin.urls')),
)


--~--~---------~--~----~------------~-------~--~----~
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