I have/had the same problem with apache/sqlite3, and found these hints
helpful.  (Sorry, I haven't tried to figure out which ones are bogus
yet):

For sqlite, "check that the web server can write not only to the db
file, but the directory too".

Add to htdocs/reviewboard.fcgi:
os.environ["PYTHONPATH"] = "/usr/local/lib/python2.5"
os.environ["PYTHON_EGG_CACHE"] = "/tmp/python-egg-cache"

and replace the #!/usr/bin/env python with the actual path to the
python you need.

Copy (or maybe move?) apache-fastcgi.conf into eg. /usr/local/apache2/
conf/extra/httpd-vhosts.conf , and add something like:

       <Directory "/var/www/example.com.reviews/htdocs">
        Options Indexes FollowSymLinks +ExecCGI
        AllowOverride None
        Order allow,deny
        Allow from all
       </Directory>

Maybe lighttpd finds /var/www/example.com.reviews/conf, but I doubt
it.

lighttp or apache error log might yield further hints; delete it and
restart the web server often so you can read it easier.



--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"reviewboard" group.
To post to this group, send email to reviewboard@googlegroups.com
To unsubscribe from this group, send email to 
reviewboard+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/reviewboard?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to