Dear all,

I am trying to deploy my blog using apache+mod_python. When I browsed
to: http://tentangmico.info/mysite/admin, I got OperationalError. Here
is my traceback:

Mod_python error: "PythonHandler django.core.handlers.modpython"

Traceback (most recent call last):

  File "/usr/lib/python2.4/site-packages/mod_python/apache.py", line
299, in HandlerDispatch
    result = object(req)

  File "/usr/lib/python2.4/site-packages/Django-0.95-py2.4.egg/django/
core/handlers/modpython.py", line 163, in handler
    return ModPythonHandler()(req)

  File "/usr/lib/python2.4/site-packages/Django-0.95-py2.4.egg/django/
core/handlers/modpython.py", line 143, in __call__
    dispatcher.send(signal=signals.request_finished)

  File "/usr/lib/python2.4/site-packages/Django-0.95-py2.4.egg/django/
dispatch/dispatcher.py", line 347, in send
    sender=sender,

  File "/usr/lib/python2.4/site-packages/Django-0.95-py2.4.egg/django/
dispatch/robustapply.py", line 47, in robustApply
    return receiver(*arguments, **named)

  File "/usr/lib/python2.4/site-packages/Django-0.95-py2.4.egg/django/
db/backends/sqlite3/base.py", line 66, in close
    self.connection.close()

OperationalError: Unable to close due to unfinalised statements

My urls.py

from django.conf.urls.defaults import *

urlpatterns = patterns('',
    # Example:
    # (r'^mysite/', include('mysite.apps.foo.urls.foo')),
    (r'/blog/', include('mysite.blog.urls')),

    # Uncomment this for admin:
    (r'/admin/', include('django.contrib.admin.urls')),
)

and my Apache configuration:

<Location "/mysite/">
    SetHandler python-program
    PythonHandler django.core.handlers.modpython
    PythonPath "['/home/tentangmico'] + sys.path"
    SetEnv DJANGO_SETTINGS_MODULE mysite.settings
    PythonDebug On
</Location>

How to solve this OperationalError?

thanks and best regards,

Mico


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