That error message is usually caused by having a slightly messed up PYTHONPATH.

For example, the tutorial has:
(r'^polls/$', 'mysite.polls.views.index'),

and the message you're getting would make me think that you have something like:
(r'^polls/$', 'views.index'),

Your PYTHONPATH will generally have your project included in it - so
what you're aiming to do is reference the index method in
polls/views/__init__.py from the root of your PYTHONPATH.

Post what you have as your PYTHONPATH and the urls.py that you're
having trouble with, we'll nail it down.

-joe




On 5/5/07, Mark Phillips <[EMAIL PROTECTED]> wrote:
>
>
> On Apr 30, 2007, at 11:16 AM, Joseph Heck wrote:
>
> > django-fcgi.py --settings=myproject.settings --host 127.0.0.1 --
> > port 8882 --daemon)
> > and that you didn't see any errors with that, the problem is likely
> > in the connection
> > between the Apache service built in to MacOS X server and your
> > FastCGI process.
>
> I did run into problems here. Presently, the process launches but I
> cannot load a page. The browser says "can't establish a connection
> at ...". For the connection tests I used "localhost:8882" and
> "127.0.0.1:8882" in the browser on the server. From the work station
> I used the IP address+port and the DNS name + port for the test.
>
> In going through the tutorial again using the built-in server via
> "runserver", I hit a snag on page 3 when adding urls to urls.py. The
> error message displayed does not agree with the tutorial. My result
> says "No module named view.detail".
>
>   - Mark
>
> >
>

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