thanks Skylar i have used chmod 777 -R for /index , but it didnt work maybe because as u said the owner of the web process is different than the user im using anyway i used the absolute path as Graham suggested down and it is working fine thank you for your quick response
On Jun 21, 9:59 pm, Skylar Saveland <skylar.savel...@gmail.com> wrote: > I would guess that you are trying to access /index with the webserver > user but that is owned by another user and the user that owns the web > process has not the sufficient permissions to do the attempted > operation. Set the permissions on the directory accordingly, perhaps > ownership as well. You could just nuke the permissions with a chmod > 777 /index (or so) if security is not crucial. Otherwise you need to > give permissions to the dir to your webserver user in a less nukular > way. > > You could also run the wsgi process(es) as the user of your choice > using > perhapshttp://code.google.com/p/modwsgi/wiki/ConfigurationDirectives#WSGIDae... > hope that helps. > > On Jun 21, 10:03 am, watad <awa...@gmail.com> wrote: > > > > > 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-us...@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.