hi ,
i have problem with review board on centos 5.3 with svn
$rb-site install /svn/review/review.ocv.com
Domain Name: review.ocv.com
Root Path [/]: /svn/review-board/
Media URL [media/]:
(1) mysql
Database Type: 1
Database Name [reviewboard]: reviewboard
Database Server [localhost]: localhost
Database Username: bugs
Database Password: bugs
(1) memcached
(2) file
Cache Type: 1
Memcache Server [memcached://localhost:11211/]: memcached://
192.168.2.61:63000/
(1) apache
(2) lighttpd
Web Server: 1
(1) modpython
(2) fastcgi
Python Loader: 1
Username [admin]:root
Password: linux123
E-Mail Address: abc_at_def.com
cp /svn/review-board/review.ocv.com/conf/apache-modpython.conf/etc/httpd/conf.d/.
vi /svn/review-board/review.ocv.com/conf/settings_local.py
add
----------------
#Disable user registration. Only admin can register new users.
BUILTIN_AUTH = False
#Require log-in to view any part of ReviewBoard
REQUIRE_SITEWIDE_LOGIN = True
------------------------------
/etc/init.d/memcached restart
/svn/review-board/review.ocv.com/conf/settings_local.py
/usr/lib/python2.4/site-packages/Django-1.0.2_final-py2.4.egg/django/conf/project_template/manage.py
help
Django
http://www.djangoproject.com
We are using svn version of Django framework:
$ svn co http://code.djangoproject.com/svn/django/trunk django_src
$ cd django_src
# python setup.py install
#python
>>> import MySQLdb
>>>MySQLdb.connect(db='reviewboard', user='bugs', passwd='bu')
---------------------
installed pysvn-1.7.0.tar.gz
and reviews.ocv.com.conf in /etc/httpd/conf.d
------------------------
<VirtualHost *>
ServerName review.ocv.com
DocumentRoot "/svn/review-board/review.ocv.com/htdocs"
# Error handlers
ErrorDocument 500 /errordocs/500.html
# Serve django pages
<Location "/">
PythonPath "['/svn/review-board/review.ocv.com/conf'] +
sys.path"
SetEnv DJANGO_SETTINGS_MODULE reviewboard.settings
SetEnv PYTHON_EGG_CACHE "/svn/review-board/
review.ocv.com/tmp/egg_cache"
SetHandler mod_python
PythonHandler django.core.handlers.modpython
PythonAutoReload Off
PythonDebug Off
# Used to run multiple mod_python sites in the same apache
PythonInterpreter reviewboard_review_ocv_com
</Location>
# Serve static media without running it through mod_python
# (overrides the above)
<Location "/media">
SetHandler None
</Location>
<Location "/errordocs">
SetHandler None
</Location>
<Directory "/svn/review-board/review.ocv.com/htdocs">
AllowOverride All
</Directory>
# Alias static media requests to filesystem
Alias /media "/svn/review-board/review.ocv.com/htdocs/media"
Alias /errordocs "/svn/review-board/review.ocv.com/htdocs/errordocs"
</VirtualHost>
--------------------------------------------
now in url i enterd http://192.168.2.21/svn/review-board/review.ocv.com/
page is getting all options are there and iam able to login but it it is
giving "the page your looking for doesn't exit".
and i am not able to add svn.
i followed admin and repository add and asking bellow information
Name: first_pro ---->it is in /svn/svn_repos/first_pro
Path:/svn/svn_repos/first_pro
Mirror path:
Repository Type: selected subversion in drop down list
Bug tracker URL:http://192.168.2.21/bugzilla
This should be the path to the bug tracker for this repository. You must
include '%s' in place of the bug number.
it is saying added but iam not able to see code.
and page also total test iam getting not as shown in screenshots
help me iam very new to this last 2 day i sit on this and ??? nothing went
out
help me
------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=1065&dsMessageId=2376287
To unsubscribe from this discussion, e-mail: [users-unsubscribe_at_subversion.tigris.org].
Received on 2009-07-28 16:09:03 CEST