Changes between Initial Version and Version 1 of Ticket #14013
- Timestamp:
- Jul 27, 2010, 3:19:12 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #14013 – Description
initial v1 3 3 So, I successfully installed 4 4 5 {{{ 5 6 Operating System: Windows XP SP3 6 7 Python: Version 2.7 … … 10 11 LAMP: XAMPP (Apache Friends Edition) 11 12 Python Interface: mod_wsgi 13 }}} 12 14 13 15 I configured a virtual host for my Django project. … … 18 20 19 21 This is my errorlog: 20 22 {{{ 21 23 [Tue Jul 27 21:14:49 2010] [error] [client 127.0.0.1] mod_wsgi (pid=2968): Exception occurred processing WSGI script 'D:/education/python/FirstProject/mysite/django.wsgi'. 22 24 [Tue Jul 27 21:14:49 2010] [error] [client 127.0.0.1] Traceback (most recent call last): … … 91 93 [Tue Jul 27 21:14:49 2010] [error] [client 127.0.0.1] 'dummy', 'mysql', 'oracle', 'postgresql', 'postgresql_psycopg2', 'sqlite3' 92 94 [Tue Jul 27 21:14:49 2010] [error] [client 127.0.0.1] Error was: cannot import name utils 93 95 }}} 94 96 95 97 I saw a suggestion (elsewhere on the web) that I might fix this if I downgrade psycopg2 to 2.0.14, but to even test this fix, I will also need to downgrade Python to 2.6 ... but so far as I can tell, the problem isn't with either of those since they are both working fine together with python manage.py runserver 96 98 97 99 Moreover, I have confirmed the problem isn't with my Apache configuration, since everything works fine if I replace Postgre with SQLite3 98 99 100 101 102 103