Robert Coup wrote:
> Carl Karsten wrote:
>   
>> Malcolm Tredinnick wrote:
>>   
>>     
>>> I don't know what htmldoc does, but if it tries to access the url you
>>> give it, you can't do that. The dev server is single threaded. It is
>>> already serving one request (running your view), so it can't serve the
>>> second parallel access to localhost:8000.
>>>     
>>>       
>> Could a 2nd instance of dev server be run on localhost:8001 ? (and then 
>> htmldoc? 
>> be pointed at that, and hope it isn't recursive or something.)
>>   
>>     
> It certainly could. Try it :)
>   
Not that I explained how.

python manage.py runserver 0.0.0.0:8001

(0.0.0.0 allows access to your server from any IP that can route to it. 
If you're only working on localhost you could change it to 127.0.0.1:8001)

Rob :)

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