Finally I finish the tutorial at 
http://docs.djangoproject.com/en/dev/intro/tutorial04/#intro-tutorial04
the example completly work on the WebServer test (the admin, questions
and the polls, everything).

Then when I tried to execute the application at apache server (I
install mod_python, etc.) using tutorial at
http://docs.djangoproject.com/en/dev/howto/deployment/modpython/

1)  I can't access admin, I receive the error when I tried
http://127.0.1.1/mysite2/admin

the last line of the error is

*****
OperationalError: unable to open database file
******

NOtes: I have put the complete path for the DB /home/XXX/djangoProys/
mysite2/DBmysite2, and I tried change permissions for database file

When I use
http://127.0.1.1/mysite2/polls     or    http://127.0.1.1/mysite2/polls/1

they works fine

2) except when I send the form to check for results from the poll, the
error is
*****
Not Found. The requested URL /polls/2/vote/ was not found on this
server.
*****

Files httpd.conf, mysite2/urls.py  and mysite2/polls/urls.py  are
showed below.

I am sure someone knows how to solve my little problem.

Thanks for your help!! A newie user of django

Juan J. Garza


******* My httpd.conf is ************
<Location "/mysite2/">
        SetHandler python-program
        PythonHandler django.core.handlers.modpython
        SetEnv DJANGO_SETTINGS_MODULE mysite2.settings
        PythonOption django.root /mysite2
        PythonPath "['/home/XXX/djangoProys','/home/XXX/djangoProys/mysite2']
+ sys.path"
        PythonDebug On
</Location>
*******


********* My file on mysite2/urls.py *******
from django.conf.urls.defaults import *
from django.contrib import admin
admin.autodiscover()

urlpatterns = patterns('',
    # Uncomment the next line to enable the admin:
    (r'^admin/(.*)', admin.site.root),
    (r'^polls/', include('mysite2.polls.urls')),
)
************


********** My file on mysite2/polls/urls.py *********
from django.conf.urls.defaults import *
from mysite2.polls.models import Poll

info_dict = {
    'queryset': Poll.objects.all(),
}

urlpatterns = patterns('',
    (r'^$', 'django.views.generic.list_detail.object_list',
info_dict),
    (r'^(?P<object_id>\d+)/$',
'django.views.generic.list_detail.object_detail', info_dict),
    url(r'^(?P<object_id>\d+)/results/$',
'django.views.generic.list_detail.object_detail', dict(info_dict,
template_name='polls/results.html'), 'poll_results'),
    (r'^(?P<object_id>\d+)/vote/$', 'mysite2.polls.views.vote'),
)
************




--~--~---------~--~----~------------~-------~--~----~
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 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to