Monday, June 21, 2010

djapian not working with apach2

hi all,

im using djapian for my search , it seems to work fine when i run it
in django development server
but when i configure my sites to use apach2 im always getting this
error when i try to search :

"Caught OSError while rendering: [Errno 13] Permission denied: '/
index'"
i am sure it is not a folder permission issue because when i run my
sites using ./manage.py runserver i get the results of my search.

im using mod_wsgi

my locasites.conf :


# -------------------------------------------

<VirtualHost myip:80>
ServerName mysite.name
ServerAlias mysitealias

WSGIScriptAlias / "/path/to/my/apache/file.wsgi"
<Directory "/path/to/my/apache">
Allow from all
</Directory>

Alias /site_media/ "/path/to/mysite/media/"
<Directory "/path/to/mysite/media/">
Order allow,deny
Options Indexes FollowSymLinks
Allow from all
IndexOptions FancyIndexing
</Directory>

Alias /media/ "/usr/local/lib/python2.6/dist-packages/django/
contrib/admin/media/"
<Directory "/usr/local/lib/python2.6/dist-packages/django/contrib/
admin/media/">
Order allow,deny
Options Indexes FollowSymLinks
Allow from all
IndexOptions FancyIndexing
</Directory>

</VirtualHost>

this is repeated for all the sites.

can anyone help with issue
regards

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

No comments:

Post a Comment