Re: Reviewbot: Should I see cppcheck and pep8 in my extension list?

2013-09-26 Thread Steve
I'm answering my own questions in case others run into similar problems. I figured out that the reviewbot process looks for the reviewbot_cookies.txt file in the directory where you ran 'reviewbot worker'. So the uid running the reviewbot process needs to be able to write to that directory.

Reviewbot: Should I see cppcheck and pep8 in my extension list?

2013-09-25 Thread Steve
I installed reviewbot on our 1.7.14 server using these instructions: https://github.com/reviewboard/ReviewBot It looks like pep8 and cppcheck are automatically installed with reviewbot, but I don't see them listed in the extension list. I'm looking for them under *Extensions - Database -

Re: Reviewbot: Should I see cppcheck and pep8 in my extension list?

2013-09-25 Thread Steven MacLeod
Right after the section you've pasted, you'll see this: After a tool has been installed on a worker, it must be registered with the Review Bot extension, and configured in the admin panel. Registering tools is accomplished in the following manner: 1. Go to the extension list in the admin

Re: Reviewbot: Should I see cppcheck and pep8 in my extension list?

2013-09-25 Thread Steve
Sorry, I should have mentioned that I did that. I even restarted apache and did the refresh again. I'm still not seeing any extensions. --Steve On Wednesday, September 25, 2013 11:24:22 AM UTC-7, Steven MacLeod wrote: Right after the section you've pasted, you'll see this: After a tool

Re: Reviewbot: Should I see cppcheck and pep8 in my extension list?

2013-09-25 Thread Steve
This may be the problem. I'm running the reviewbot worker as apache and seeing this error: [2013-09-25 10:57:33,786: WARNING/MainProcess] There was an error while creating a cookie file: [Errno 13] Permission denied: 'reviewbot-cookies.txt' [2013-09-25 10:57:33,786: ERROR/MainProcess] Could

Re: Reviewbot: Should I see cppcheck and pep8 in my extension list?

2013-09-25 Thread Steve
Okay, I restarted the reviewbot work as root and now the extensions show up. The reviewbot-cookies.txt file was written into the directory where I cloned the reviewbot source, which was owned by root. I didn't expect that directory to be a working directory. That seems odd to me. On