Re: Review Board is taking a nap After install

2018-10-14 Thread Adriano Gonçalves
Hi Christian, Thank you for you answer. I'm using Ubuntu Server. Is this setuptools a dpkg package? Adriano Em sáb, 13 de out de 2018 às 20:04, Christian Hammond < christ...@beanbaginc.com> escreveu: > Hi Adriano, > > This is due to a very old version of the setuptools package being > installed

Re: Review Board is taking a nap After install

2018-10-13 Thread Christian Hammond
Hi Adriano, This is due to a very old version of the setuptools package being installed on your distro. It’s too old to understand some modern Python packaging conventions. You’ll need to upgrade it. Which distro are you running? Christian On Fri, Oct 12, 2018 at 15:30 Adriano Gonçalves

Re: "Review Board is taking a nap" after update

2016-07-22 Thread Christian Hammond
You say you're using yum only, but Review Board was installed via easy_install. You shouldn't ever mix yum and easy_install/pip. You either want to exclusively use the Review Board RPMs, or use only easy_install/pip for Review Board and its dependencies (and not RPMs). This may be

Re: "Review Board is taking a nap" after update

2016-07-22 Thread julien gdt
News: I reboot the VM and now i got the "Manual server updates required" web-page for: - Data directory changes - Extensions static media directory changes I changed permissions, restart the web server and always got this page. Nothing noticeable on error_log access_log for httpd,

Re: "Review Board is taking a nap" after update

2016-07-22 Thread julien gdt
Hi Christian, Here is the output: /usr/lib/python2.7/site-packages/mimeparse.py /usr/lib/python2.7/site-packages/mimeparse.pyc /usr/lib/python2.7/site-packages/mimeparse.pyo /usr/lib/python2.7/site-packages/python_mimeparse-0.1.4-py2.7.egg-info /usr/share/doc/python-mimeparse-0.1.4

Re: "Review Board is taking a nap" after update

2016-07-21 Thread Christian Hammond
Hi, Can you show the results of: rpm -ql python-mimeparse Was Review Board ever installed via yum? Christian On Thursday, July 21, 2016, julien gdt wrote: > Here is my err log from HTTPD: > > [root@git-jenkins httpd]# tail -f error_log > > [Thu Jul 21

Re: "Review Board is taking a nap" after update

2016-07-21 Thread julien gdt
Here is my err log from HTTPD: [root@git-jenkins httpd]# tail -f error_log [Thu Jul 21 11:58:51.972655 2016] [:error] [pid 9309] [client 172.17.17.126:56640] Traceback (most recent call last):, referer: http://git-jenkins/reviewboard/ [Thu Jul 21 11:58:51.972724 2016] [:error] [pid 9309]

Re: "Review Board is taking a nap" after update

2016-07-21 Thread julien gdt
Better typo, sorry Le jeudi 21 juillet 2016 11:41:53 UTC+2, julien gdt a écrit : > > Hello everyone, > > My team and myself are using review board. > When i tried to do an update, it blocks our instance and telling us "i'm > taking a nap". > > This is ALL i did: > > $ sudo systemctl stop

Re: Review Board is taking a nap

2012-06-14 Thread Casey
The last thing that I needed to do was run easy_install --upgrade pycrypto On Saturday, March 31, 2012 4:30:44 AM UTC-6, muiz lee wrote: Dear all, (OS Centos 6.2) I install RB successfully but cannot lunch, when I open the home page, got the folling error: Review Board is

Re: Review Board is taking a nap

2012-05-23 Thread mark.har...@arcinnovations.co.nz
Additional information about installed components: PostgreSQL v 9.1 Patch v 2.5.9-7 Python v 2.7 PIL v 1.1.7 Psycopg2 v 2.4.5 Pycrypto v 2.1.0 PySVN v 1.7.6-1457 Setuptools v 0.6c11 Slik subversion v 1.7.4 Pycrypto v 2.3 was removed and 2.1 subsequently installed as the former was causing

Re: Review Board is taking a nap

2012-05-23 Thread Christian Hammond
Hi Mark, This is one of those really annoying and confusing Windows issues that I have no answer to. Hopefully someone else on this list does. However, I *strongly* recommend ditching the Windows install and instead installing on Linux (Ubuntu or Fedora), either on a physical box or in a VM.

Re: Review Board is taking a nap

2012-03-31 Thread Muiz
HI, David, I have installed pycrypto already use command easy_install pycrypto: [root@localhost ~]# easy_install pycrypto Searching for pycrypto Best match: pycrypto 2.4 Adding pycrypto 2.4 to easy-install.pth file Using /usr/lib64/python2.6/site-packages Processing dependencies for pycrypto

Re: Review Board is taking a nap

2012-03-31 Thread Muiz
Dear all, I check the rb-site install log: Unable to load SCMTool perforce = reviewboard.scmtools.perforce:PerforceTool: No module named Crypto /usr/lib/python2.6/site-packages/paramiko-1.7.7.1-py2.6.egg/paramiko/common.py:98: ImportWarning: Not importing directory

Re: Review Board is taking a nap

2012-03-31 Thread Chris Tooley
If you used easy_install you probably need to adjust permissions on python libraries in the /usr/lib/pythonxx directory tree. Look for missing permissions for o. On Mar 31, 2012 7:02 PM, Muiz work.m...@gmail.com wrote: Dear all, I check the rb-site install log: Unable to load SCMTool

Re: Review Board is taking a nap

2012-03-31 Thread Muiz
Dear Chris, Which permission should I update? BTY, my linux is a 64 bit system. On Sun, Apr 1, 2012 at 8:05 AM, Chris Tooley ch...@tooley.com wrote: If you used easy_install you probably need to adjust permissions on python libraries in the /usr/lib/pythonxx directory tree. Look for

Re: Review Board is taking a nap

2012-03-31 Thread Chris Tooley
The other permission group needs read and execute on directories and read on files. On Mar 31, 2012 7:32 PM, Muiz work.m...@gmail.com wrote: Dear Chris, Which permission should I update? BTY, my linux is a 64 bit system. On Sun, Apr 1, 2012 at 8:05 AM, Chris Tooley ch...@tooley.com

Re: Review Board is taking a nap

2012-03-31 Thread Muiz
Dear Chris, It works when I update the ACL: setfacl -R -m o::rwx,d:o::rwx /usr/lib/python2.6/ But the RB says: Your site's data directory isn't properly set up. This directory is where Review Board will store various state and configuration needed to access repositories. Your data

Re: Review Board is taking a nap

2012-03-31 Thread Muiz
Dear All, It's ok now after I restart the httpd. :) Thanks very much!!! On Sun, Apr 1, 2012 at 9:07 AM, Muiz work.m...@gmail.com wrote: Dear Chris, It works when I update the ACL: setfacl -R -m o::rwx,d:o::rwx /usr/lib/python2.6/ But the RB says: Your site's data directory isn't

Re: Review Board is taking a nap

2011-11-04 Thread Kannaiyan Natesan
Help from #django irc channel helped to fix it. Did the following, everything is backup. After every restart if you go and see you will see the missing module. Delete it and reinstall it. It will get it resolved. rm -rf /usr/lib/python2.4/site-packages/recaptcha_client-1.0.6-py2.4.egg pip

Re: Review Board is taking a nap

2011-11-04 Thread Christian Hammond
Hmm, trying to figure out how that's different from what was recommended before and why it only worked now. If this is breaking on every restart, there's something very wrong with your server. That should never happen. Consider it a red flag and do some investigating. Christian On Friday,

Re: Review Board is taking a nap

2011-11-04 Thread Kannaiyan Natesan
Reinstalling with easy_install did not fix it. One person from #django room recommened to use pip to get things done correctly. I'm sure easy_install misses some of the entries that pip does. Did, easy_install pip and did all the reinstall with pip. I did rebooted the machine now and checked

Re: Review Board is taking a nap

2011-11-02 Thread Kannaiyan Natesan
Even tried importing on command line, [root@BLCRMX0200 www]# python import Python 2.4.3 (#1, May 5 2011, 16:39:10) [GCC 4.1.2 20080704 (Red Hat 4.1.2-50)] on linux2 Type help, copyright, credits or license for more information. import recaptcha.client works fine. May someone please help what

Re: Review Board is taking a nap

2011-11-02 Thread Christian Hammond
Hi, Unfortunately I have no idea why you're seeing that. Maybe try removing the installed recaptcha_client package and reinstall? You'll need to then restart Apache. Christian On Wednesday, November 2, 2011, Kannaiyan Natesan gbpnk...@gmail.com wrote: Even tried importing on command line,

Re: Review Board is taking a nap

2011-11-02 Thread Kannaiyan Natesan
Thanks Christian. Same issue still persists. Removed, installed recaptcha-client, restarted Apache and tried again. Is there a way to remove the recaptcha-client dependency? Since we are using it within the internal network. [root@BLCRMX0200 www]# rm -rf

Re: Review Board is taking a nap

2010-12-14 Thread Christian Hammond
If you have DEBUG = True in the settings_local.py file, then you should be getting a detailed backtrace instead of the Taking a Nap page, as long as we're even getting the point of entering Review Board's code. Christian -- Christian Hammond - chip...@chipx86.com Review Board -

Re: Review Board is taking a nap after installation

2010-12-01 Thread Jan Koprowski
This looks like You don't have ReviewBoard in Your mod_wsgi's python-path but I don't know why :| On Wed, Dec 1, 2010 at 10:55 AM, T.O.AFN torsten.ockenf...@assfinet.de wrote: Hi, I just installed ReviewBoard to test it but I only get the site: Review Board is taking a nap... I followed the

Re: Review Board is taking a nap after installation

2010-12-01 Thread Christian Hammond
The Python Path appears incorrect. Can you show me the location of where the ReviewBoard egg is installed, and provide the Apache config and reviewboard.wsgi file? Also, where is Python itself installed? Christian -- Christian Hammond - chip...@chipx86.com Review Board -

Re: Review Board is taking a nap

2010-05-04 Thread Christian Hammond
Hi, This means there was a server error internally. Can you modify your site's conf/settings_local.py to add: DEBUG = True Then restart the web server. You should see more detailed information, which I can use to figure out what's happening. Christian -- Christian Hammond -