winsock error

2008-08-26 Thread Timothy Kanters
Hey I have a strange problem on windows when trying to do 'python manage.py runserver'. I get back the error socket.error: (10106, 'winsock error'). I also get this error when running other commands that open a socket. I have no idea where this is comming from. But this did used to work before. T

Re: winsock error

2008-08-26 Thread Timothy Kanters
comment for a software called "Win Sock XP Fix". > I haven't tried the software, but looking at the traceback it seems > obvious that this is a windows problem (C:\Python25\lib\socket.py > throws the error). > > Hope this helps! > > Best Regards, > > Jesaja

error on live server, 'module' object has no attribute 'models'

2008-10-02 Thread Timothy Kanters
I have a strange error on my live server. On the development server everything works just fine. About half the time I get an error: ViewDoesNotExist at /companies/ Tried list in module vicrsa.companies.views. Error was: 'module' object has no attribute 'models' Request Method: GET Request URL

Re: error on live server, 'module' object has no attribute 'models'

2008-10-03 Thread Timothy Kanters
ither. Timothy p.s. I will be switching this project over to 1.0 soon, unfortunately that is not an option at this moment. On Fri, Oct 3, 2008 at 9:02 AM, Malcolm Tredinnick <[EMAIL PROTECTED] > wrote: > > > On Fri, 2008-10-03 at 08:55 +0200, Timothy Kanters wrote: > > I

learning django, strange problem with admin

2007-08-23 Thread Timothy Kanters
Hey, I've got django installed on a webserver with apache / mod_python / mysql (on debian). I've got the latest svn version of django installed. I'm runinng through the tutorials but I'm getting some strange results. Tutorial 1 went fine, so I've got the Poll / Choice models and I can work with

Re: learning django, strange problem with admin

2007-08-24 Thread Timothy Kanters
> Some may suggest that you set maximum number of requests per Apache > child to 1. This however is a rather brute force approach and if doing > that you may as well use CGI. Aye, but for my development server that is quite ok, easier to do than restarting apache after every change :) Thanks for