On Fri, Oct 10, 2008 at 4:24 PM, shawn <[EMAIL PROTECTED]> wrote:

>
> Hey guys,
>
> So I want to be able to use mod_python and apache to host my django
> project, but I'm running into a little problem. When I go to my URL, I
> get this error:
>
>
> Exception Type: OperationalError at /admin/
> Exception Value: unable to open database file
>
> I'm using sqlite3 and apache, and I've been looking around the
> interwebs and I know that this is a problem where apache can't write/
> read that particular file. This is what my apache configuration looks
> like:
>
> # Location of project
> <Location "/rest/">
>    SetHandler python-program
>    PythonHandler django.core.handlers.modpython
>    SetEnv DJANGO_SETTINGS_MODULE rest.settings
>    PythonOption django.root /rest
>    PythonDebug On
>    PythonPath "['/home/djangoz/django_projects/'] + sys.path"
> </Location>
>
> Now, I'll let you know what I've tried. I have tried changing the
> permissions on the rest.db file itself, as well as the parent folder.
> I tried changing the owners to the same one as apache (www-data). I've
> tried making the permissions fully readable, executable, and
> writeable, and it still doesn't seem to work.
>
> If I run the server with django using python manage runserver
> 0.0.0.0:8080, I have no problem running the application.
>
> Does anyone have any suggestions? I can't seem to find a solution!
>
>
What OS are your running? Is it possibly one (SELinux-based ones come to
mind) where permissions are not necessarily what control file access rights?

Karen

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