Hi Christian,
I must be doing something really wrong. This is my reviewboard.conf
file at /etc/apache2/vhosts.d
opentriskelion:/etc/apache2/vhosts.d # cat reviewboard.conf
<VirtualHost *:80>
ServerName opentriskelion
DocumentRoot "/var/www/opentriskelion/htdocs"
# Error handlers
ErrorDocument 500 /errordocs/500.html
# Serve django pages
<Location "/">
PythonPath "['/var/www/opentriskelion/conf'] + sys.path"
SetEnv DJANGO_SETTINGS_MODULE reviewboard.settings
SetEnv PYTHON_EGG_CACHE "/var/www/opentriskelion/tmp/egg_cache"
SetHandler mod_python
PythonHandler django.core.handlers.modpython
PythonAutoReload Off
PythonDebug On
# Used to run multiple mod_python sites in the same apache
PythonInterpreter reviewboard_opentriskelion
</Location>
# Serve static media without running it through mod_python
# (overrides the above)
<Location "/reviewboard/media">
SetHandler None
Options FollowSymlinks
</Location>
<Location "/reviewboard/errordocs">
SetHandler None
</Location>
<Directory "/var/www/opentriskelion/htdocs">
AllowOverride All
Options FollowSymLinks
</Directory>
# Alias static media requests to filesystem
Alias /reviewboard/media "/var/www/opentriskelion/htdocs/media"
Alias /reviewboard/errordocs "/var/www/opentriskelion/htdocs/
errordocs"
</VirtualHost>
I've restarted apache with
$ rcapache2 restart
But I still see the "page not found" issue.
And here's my var/log/apache2/error_log file
[Sun Jan 10 02:20:47 2010] [error] [client 127.0.0.2] client denied by
server configuration: /var/www/opentriskelion/htdocs/media/rb/css/
common.css, referer: http://opentriskelion/dashboard
/usr/lib64/python2.6/site-packages/mod_python/importer.py:32:
DeprecationWarning: the md5 module is deprecated; use hashlib instead
import md5
/usr/local/lib/python2.6/site-packages/ReviewBoard-1.0.5.1-py2.6.egg/
reviewboard/accounts/views.py:2: DeprecationWarning: the sha module is
deprecated; use the hashlib module instead
from sha import sha
/usr/lib64/python2.6/site-packages/mod_python/importer.py:32:
DeprecationWarning: the md5 module is deprecated; use hashlib instead
import md5
Any help would be appreciated.
Thanks,
pablo
On Jan 9, 12:21 am, Christian Hammond <[email protected]> wrote:
> I'm sorry, I gave you the wrong information. It was late :P
>
> Options FollowSymlinks
>
> See if that works for you.
>
> Christian
>
> --
> Christian Hammond - [email protected]
> Review Board -http://www.reviewboard.org
> VMware, Inc. -http://www.vmware.com
>
> On Fri, Jan 8, 2010 at 4:26 AM, pablo <[email protected]> wrote:
> > Hi Christian,
>
> > I'm sorry but where am I supposed to add this? If I add it to ç
>
> > <Location "/reviewboard/media">
> > SetHandler None
> > </Location>
>
> > then it raises an error on apache restart
>
> > Syntax error on line 25 of /etc/apache2/vhosts.d/reviewboard.conf:
> > Invalid command 'AllowSymLinks', perhaps misspelled or defined by a
> > module not included in the server configuration
>
> > This is the content of my path:
>
> > opentriskelion:/etc/apache2/vhosts.d # ls /var/www/opentriskelion/
> > htdocs/media/
> > admin djblets .htaccess rb uploaded
>
> > We're trying to develop a new SCM integration with ReviewBoard, so we
> > need to set it up first :-P
>
> > Thanks again,
>
> > pablo
>
> > On Jan 8, 12:49 pm, Christian Hammond <[email protected]> wrote:
> > > Hi Pablo,
>
> > > Does the htdocs/media/rb directory point to a valid location? If so, try
> > > adding the following to the <Location> section for media:
>
> > > Options AllowSymLinks
>
> > > Christian
>
> > > --
> > > Christian Hammond - [email protected]
> > > Review Board -http://www.reviewboard.org
> > > VMware, Inc. -http://www.vmware.com
>
> > > On Fri, Jan 8, 2010 at 3:37 AM, pablo <[email protected]> wrote:
> > > > Hi there,
>
> > > > I guess my question is pretty straightforward but I wasn't able to
> > > > figure it out myself.
>
> > > > I've just installed reviewboard following the instructions on the
> > > > linux install guide. I'm using:
>
> > > > - apache
> > > > - mysql
> > > > - mod_python
>
> > > > The db is created but I can't run the site.
>
> > > > If I look into the apache log at /var/log/apache2 I find:
>
> > > > [Fri Jan 08 12:29:17 2010] [error] [client 127.0.0.2] Symbolic link
> > > > not allowed or link target not accessible: /var/www/opentris
> > > > kelion/htdocs/media/rb, referer:http://opentriskelion/dashboard
>
> > > > At /etc/apache2/vhosts.d I've a reviewboard.conf file with the basic
> > > > content (copied from the install)
> > > > <VirtualHost *:80>
> > > > ServerName opentriskelion
> > > > DocumentRoot "/var/www/opentriskelion/htdocs"
>
> > > > # Error handlers
> > > > ErrorDocument 500 /errordocs/500.html
>
> > > > # Serve django pages
> > > > <Location "/">
> > > > PythonPath "['/var/www/opentriskelion/conf'] +
> > > > sys.path"
> > > > SetEnv DJANGO_SETTINGS_MODULE reviewboard.settings
> > > > SetEnv PYTHON_EGG_CACHE "/var/www/opentriskelion/tmp/
> > > > egg_cache"
> > > > SetHandler mod_python
> > > > PythonHandler django.core.handlers.modpython
> > > > PythonAutoReload Off
> > > > PythonDebug On
> > > > # Used to run multiple mod_python sites in the same
> > > > apache
> > > > PythonInterpreter reviewboard_opentriskelion
> > > > </Location>
>
> > > > # Serve static media without running it through mod_python
> > > > # (overrides the above)
> > > > <Location "/reviewboard/media">
> > > > SetHandler None
> > > > </Location>
> > > > <Location "/reviewboard/errordocs">
> > > > SetHandler None
> > > > </Location>
>
> > > > <Directory "/var/www/opentriskelion/htdocs">
> > > > AllowOverride All
> > > > </Directory>
>
> > > > # Alias static media requests to filesystem
> > > > Alias /reviewboard/media "/var/www/opentriskelion/htdocs/
> > > > media"
> > > > Alias /reviewboard/errordocs "/var/www/opentriskelion/htdocs/
> > > > errordocs"
> > > > </VirtualHost>
>
> > > > When I try to log in to my reviewboard I just get a 404 "page does not
> > > > exist"
>
> > > > I must be missing something pretty obvious.
>
> > > > Any help will be appreciated.
>
> > > > Thanks,
>
> > > > pablo
>
> > > > --
> > > > Want to help the Review Board project? Donate today at
> > > >http://www.reviewboard.org/donate/
> > > > Happy user? Let us know athttp://www.reviewboard.org/users/
> > > > -~----------~----~----~----~------~----~------~--~---
> > > > To unsubscribe from this group, send email to
> > > > [email protected]<reviewboard%[email protected]>
> > <reviewboard%[email protected]<reviewboard%[email protected]>
>
> > > > For more options, visit this group at
> > > >http://groups.google.com/group/reviewboard?hl=en
>
> > --
> > Want to help the Review Board project? Donate today at
> >http://www.reviewboard.org/donate/
> > Happy user? Let us know athttp://www.reviewboard.org/users/
> > -~----------~----~----~----~------~----~------~--~---
> > To unsubscribe from this group, send email to
> > [email protected]<reviewboard%[email protected]>
> > For more options, visit this group at
> >http://groups.google.com/group/reviewboard?hl=en
--
Want to help the Review Board project? Donate today at
http://www.reviewboard.org/donate/
Happy user? Let us know at http://www.reviewboard.org/users/
-~----------~----~----~----~------~----~------~--~---
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/reviewboard?hl=en