Changes between Initial Version and Version 1 of Ticket #14013


Ignore:
Timestamp:
Jul 27, 2010, 3:19:12 PM (14 years ago)
Author:
Ramiro Morales
Comment:

Reformatted the description.

Next time please read the recommendations listed under Read this first section on the page you used to create the ticket. One of them read:

To include code snippets in the ticket description, surround them with curley braces ( code snippet ). Read more about formatting on the WikiFormatting page.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #14013 – Description

    initial v1  
    33So, I successfully installed
    44
     5{{{
    56Operating System: Windows XP SP3
    67Python: Version 2.7
     
    1011LAMP: XAMPP (Apache Friends Edition)
    1112Python Interface: mod_wsgi
     13}}}
    1214
    1315I configured a virtual host for my Django project.
     
    1820
    1921This is my errorlog:
    20 
     22{{{
    2123[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'.
    2224[Tue Jul 27 21:14:49 2010] [error] [client 127.0.0.1] Traceback (most recent call last):
     
    9193[Tue Jul 27 21:14:49 2010] [error] [client 127.0.0.1]     'dummy', 'mysql', 'oracle', 'postgresql', 'postgresql_psycopg2', 'sqlite3'
    9294[Tue Jul 27 21:14:49 2010] [error] [client 127.0.0.1] Error was: cannot import name utils
    93 
     95}}}
    9496
    9597I 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
    9698
    9799Moreover, 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 
Back to Top