Re: Installation problem

2010-01-06 Thread Christian Hammond
If it's giving you an authentication error now (I assume you placed import
logging in scmtools/svn.py) then that's indeed what Subversion is sending
back to us. If you look in the log file, there should be a line starting
with: "SVN: Failed to get repository information for ..." which should have
more detailed information. (At least, I think that's in the 1.1 alpha 2
release, but you may need a nightly for that.)

Does the server at all allow anonymous access? If so, I'd just try it
without a username/password. However, I can't think of a reason why it would
fail with that error message when authenticating over HTTP if the username
and password are valid. Maybe the log file will shed more light.

Christian

-- 
Christian Hammond - chip...@chipx86.com
Review Board - http://www.reviewboard.org
VMware, Inc. - http://www.vmware.com


On Wed, Jan 6, 2010 at 11:52 AM, Anthony Whitaker wrote:

> I tried importing 'logging' myself and now I get an "Authentication
> failed."... I'm not sure if that's just an erroneous error or if it's
> actually the problem. I verified that my login credentials were correct with
> Tortoise.
>
>
> On Wed, Jan 6, 2010 at 1:11 PM, Anthony Whitaker wrote:
>
>> It's just HTTP on on the LAN. But our network is all kinds of annoying for
>> security reasons (I work for a defense contractor), could it be a proxy
>> issue? I guess it'll be easier to diagnose after the logging stuff is
>> imported properly. Is there an eta on this? I'm reviewing Review Board and a
>> few others and I need to choose a package for my supervisor soon.
>>
>> Thanks a ton Christian, you've been most hopeful.
>>
>> Anthony
>>
>>
>> On Tue, Jan 5, 2010 at 7:35 PM, Christian Hammond wrote:
>>
>>> It's a bug in that release. What's really happening is that there's an
>>> error with the repository information. It's trying to log it to the log file
>>> before showing it but, well, we didn't import the logging functionality in
>>> that part of the code. It'll be fixed in the upcoming beta.
>>>
>>> Is the repository HTTP-backed, or something like HTTPS, svn+ssh, etc?
>>> Generally you'll see that error when it's not able to verify that it's a
>>> repository. For example, it may not be resolving the hostname, or you may
>>> not have specified the path to the root of the repository (make sure it's to
>>> the root of the repository and not something inside it like trunk or a
>>> branch).
>>>
>>>
>>> Christian
>>>
>>> --
>>> Christian Hammond - chip...@chipx86.com
>>> Review Board - http://www.reviewboard.org
>>> VMware, Inc. - http://www.vmware.com
>>>
>>>
>>> On Tue, Jan 5, 2010 at 4:27 PM, Anthony Whitaker wrote:
>>>
 Ah, yeah I've got it running now. Thanks a ton. I had an issue where the
 Repositories weren't showing up. So, I upgraded to the latest Review Board,
 install pysvn (I had installed the wrong version) and recreated the site as
 you specified. Now, it tells me that the "global name 'logging' is not
 defined". I tried toggling the logging setting, no luck. I found a post of 
 a
 similar issue but that guy was having the problem on the new review page 
 and
 the solution didn't seem to apply. Any suggestions? This feels like the 
 last
 hurdle. :)

 Thanks again,
 Anthony


 On Tue, Jan 5, 2010 at 6:11 PM, Christian Hammond 
 wrote:

> The server name looks wrong. It needs to be an actual domain, not a
> path in a domain. If you were looking to use Review Board in
> http://localhost/reviewboard/, you'll want to re-run the rb-site
> create and enter localhost for the domain and /reviewboard/ for the site
> root on (I think) the following page.
>
>
> Christian
>
> --
> Christian Hammond - chip...@chipx86.com
> Review Board - http://www.reviewboard.org
> VMware, Inc. - http://www.vmware.com
>
>
> On Tue, Jan 5, 2010 at 2:49 PM, Anthony Whitaker 
> wrote:
>
>> It says to install Patch.exe. However, I have installed it, it's in
>> the path. And I read another post that suggested copying Patch.exe to the
>> apache/bin folder (which I thought a bit odd).
>>
>> I installed PIL from an installer. I can import PIL from a python
>> shell.
>>
>> Python 2.5.1, PIL 1.1.6, Apache 2.2,
>> Using SQLite and mod_python, without memcache.
>>
>> The only error in the apache log is about a python version mismatch
>> expecting 2.5 and finding 2.5.1.
>>
>> I now believe it's some sort of path issue. Typically I can access
>> http://localhost/xampp for xampp settings... but currently even that
>> URL shows the Manual Server Updates page.
>>
>> I've tried various changes in the configuration but haven't gotten
>> anywhere... this is the current state of that:
>>
>> 
>> ServerName localhost/reviewboard
>> DocumentRoot "C:/xampp/xampplite/htdocs/reviewboard/htdocs"
>>
>> # Error handl

Re: Installation problem

2010-01-06 Thread Anthony Whitaker
I tried importing 'logging' myself and now I get an "Authentication
failed."... I'm not sure if that's just an erroneous error or if it's
actually the problem. I verified that my login credentials were correct with
Tortoise.

On Wed, Jan 6, 2010 at 1:11 PM, Anthony Whitaker wrote:

> It's just HTTP on on the LAN. But our network is all kinds of annoying for
> security reasons (I work for a defense contractor), could it be a proxy
> issue? I guess it'll be easier to diagnose after the logging stuff is
> imported properly. Is there an eta on this? I'm reviewing Review Board and a
> few others and I need to choose a package for my supervisor soon.
>
> Thanks a ton Christian, you've been most hopeful.
>
> Anthony
>
>
> On Tue, Jan 5, 2010 at 7:35 PM, Christian Hammond wrote:
>
>> It's a bug in that release. What's really happening is that there's an
>> error with the repository information. It's trying to log it to the log file
>> before showing it but, well, we didn't import the logging functionality in
>> that part of the code. It'll be fixed in the upcoming beta.
>>
>> Is the repository HTTP-backed, or something like HTTPS, svn+ssh, etc?
>> Generally you'll see that error when it's not able to verify that it's a
>> repository. For example, it may not be resolving the hostname, or you may
>> not have specified the path to the root of the repository (make sure it's to
>> the root of the repository and not something inside it like trunk or a
>> branch).
>>
>>
>> Christian
>>
>> --
>> Christian Hammond - chip...@chipx86.com
>> Review Board - http://www.reviewboard.org
>> VMware, Inc. - http://www.vmware.com
>>
>>
>> On Tue, Jan 5, 2010 at 4:27 PM, Anthony Whitaker wrote:
>>
>>> Ah, yeah I've got it running now. Thanks a ton. I had an issue where the
>>> Repositories weren't showing up. So, I upgraded to the latest Review Board,
>>> install pysvn (I had installed the wrong version) and recreated the site as
>>> you specified. Now, it tells me that the "global name 'logging' is not
>>> defined". I tried toggling the logging setting, no luck. I found a post of a
>>> similar issue but that guy was having the problem on the new review page and
>>> the solution didn't seem to apply. Any suggestions? This feels like the last
>>> hurdle. :)
>>>
>>> Thanks again,
>>> Anthony
>>>
>>>
>>> On Tue, Jan 5, 2010 at 6:11 PM, Christian Hammond 
>>> wrote:
>>>
 The server name looks wrong. It needs to be an actual domain, not a path
 in a domain. If you were looking to use Review Board in
 http://localhost/reviewboard/, you'll want to re-run the rb-site create
 and enter localhost for the domain and /reviewboard/ for the site root on 
 (I
 think) the following page.


 Christian

 --
 Christian Hammond - chip...@chipx86.com
 Review Board - http://www.reviewboard.org
 VMware, Inc. - http://www.vmware.com


 On Tue, Jan 5, 2010 at 2:49 PM, Anthony Whitaker 
 wrote:

> It says to install Patch.exe. However, I have installed it, it's in the
> path. And I read another post that suggested copying Patch.exe to the
> apache/bin folder (which I thought a bit odd).
>
> I installed PIL from an installer. I can import PIL from a python
> shell.
>
> Python 2.5.1, PIL 1.1.6, Apache 2.2,
> Using SQLite and mod_python, without memcache.
>
> The only error in the apache log is about a python version mismatch
> expecting 2.5 and finding 2.5.1.
>
> I now believe it's some sort of path issue. Typically I can access
> http://localhost/xampp for xampp settings... but currently even that
> URL shows the Manual Server Updates page.
>
> I've tried various changes in the configuration but haven't gotten
> anywhere... this is the current state of that:
>
> 
> ServerName localhost/reviewboard
> DocumentRoot "C:/xampp/xampplite/htdocs/reviewboard/htdocs"
>
> # Error handlers
> ErrorDocument 500 /errordocs/500.html
>
> # Serve django pages
> 
> PythonPath "['C:/xampp/xampplite/htdocs/reviewboard/conf'] +
> sys.path"
> SetEnv DJANGO_SETTINGS_MODULE reviewboard.settings
> SetEnv PYTHON_EGG_CACHE
> "C:/xampp/xampplite/htdocs/reviewboard/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_reviewboard
> 
>
> # Serve static media without running it through mod_python
> # (overrides the above)
> 
> SetHandler None
> 
> 
> SetHandler None
> 
>
> 
> AllowOverride All
> 
>
> # Alias static media requests to filesystem
> Alias /media "C:/xampp/x

Re: Installation problem

2010-01-06 Thread Anthony Whitaker
It's just HTTP on on the LAN. But our network is all kinds of annoying for
security reasons (I work for a defense contractor), could it be a proxy
issue? I guess it'll be easier to diagnose after the logging stuff is
imported properly. Is there an eta on this? I'm reviewing Review Board and a
few others and I need to choose a package for my supervisor soon.

Thanks a ton Christian, you've been most hopeful.

Anthony

On Tue, Jan 5, 2010 at 7:35 PM, Christian Hammond wrote:

> It's a bug in that release. What's really happening is that there's an
> error with the repository information. It's trying to log it to the log file
> before showing it but, well, we didn't import the logging functionality in
> that part of the code. It'll be fixed in the upcoming beta.
>
> Is the repository HTTP-backed, or something like HTTPS, svn+ssh, etc?
> Generally you'll see that error when it's not able to verify that it's a
> repository. For example, it may not be resolving the hostname, or you may
> not have specified the path to the root of the repository (make sure it's to
> the root of the repository and not something inside it like trunk or a
> branch).
>
>
> Christian
>
> --
> Christian Hammond - chip...@chipx86.com
> Review Board - http://www.reviewboard.org
> VMware, Inc. - http://www.vmware.com
>
>
> On Tue, Jan 5, 2010 at 4:27 PM, Anthony Whitaker wrote:
>
>> Ah, yeah I've got it running now. Thanks a ton. I had an issue where the
>> Repositories weren't showing up. So, I upgraded to the latest Review Board,
>> install pysvn (I had installed the wrong version) and recreated the site as
>> you specified. Now, it tells me that the "global name 'logging' is not
>> defined". I tried toggling the logging setting, no luck. I found a post of a
>> similar issue but that guy was having the problem on the new review page and
>> the solution didn't seem to apply. Any suggestions? This feels like the last
>> hurdle. :)
>>
>> Thanks again,
>> Anthony
>>
>>
>> On Tue, Jan 5, 2010 at 6:11 PM, Christian Hammond wrote:
>>
>>> The server name looks wrong. It needs to be an actual domain, not a path
>>> in a domain. If you were looking to use Review Board in
>>> http://localhost/reviewboard/, you'll want to re-run the rb-site create
>>> and enter localhost for the domain and /reviewboard/ for the site root on (I
>>> think) the following page.
>>>
>>>
>>> Christian
>>>
>>> --
>>> Christian Hammond - chip...@chipx86.com
>>> Review Board - http://www.reviewboard.org
>>> VMware, Inc. - http://www.vmware.com
>>>
>>>
>>> On Tue, Jan 5, 2010 at 2:49 PM, Anthony Whitaker wrote:
>>>
 It says to install Patch.exe. However, I have installed it, it's in the
 path. And I read another post that suggested copying Patch.exe to the
 apache/bin folder (which I thought a bit odd).

 I installed PIL from an installer. I can import PIL from a python shell.

 Python 2.5.1, PIL 1.1.6, Apache 2.2,
 Using SQLite and mod_python, without memcache.

 The only error in the apache log is about a python version mismatch
 expecting 2.5 and finding 2.5.1.

 I now believe it's some sort of path issue. Typically I can access
 http://localhost/xampp for xampp settings... but currently even that
 URL shows the Manual Server Updates page.

 I've tried various changes in the configuration but haven't gotten
 anywhere... this is the current state of that:

 
 ServerName localhost/reviewboard
 DocumentRoot "C:/xampp/xampplite/htdocs/reviewboard/htdocs"

 # Error handlers
 ErrorDocument 500 /errordocs/500.html

 # Serve django pages
 
 PythonPath "['C:/xampp/xampplite/htdocs/reviewboard/conf'] +
 sys.path"
 SetEnv DJANGO_SETTINGS_MODULE reviewboard.settings
 SetEnv PYTHON_EGG_CACHE
 "C:/xampp/xampplite/htdocs/reviewboard/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_reviewboard
 

 # Serve static media without running it through mod_python
 # (overrides the above)
 
 SetHandler None
 
 
 SetHandler None
 

 
 AllowOverride All
 

 # Alias static media requests to filesystem
 Alias /media "C:/xampp/xampplite/htdocs/reviewboard/htdocs/media"
 Alias /errordocs
 "C:/xampp/xampplite/htdocs/reviewboard/htdocs/errordocs"
 


 Thanks a ton for the guidance. Is there any other information I left
 out?




 On Tue, Jan 5, 2010 at 3:11 PM, Christian Hammond 
 wrote:

> There are several Manual Server Updates pages. What instructions is
> this one referring to?
>
> H

Re: Installation problem

2010-01-05 Thread Christian Hammond
It's a bug in that release. What's really happening is that there's an error
with the repository information. It's trying to log it to the log file
before showing it but, well, we didn't import the logging functionality in
that part of the code. It'll be fixed in the upcoming beta.

Is the repository HTTP-backed, or something like HTTPS, svn+ssh, etc?
Generally you'll see that error when it's not able to verify that it's a
repository. For example, it may not be resolving the hostname, or you may
not have specified the path to the root of the repository (make sure it's to
the root of the repository and not something inside it like trunk or a
branch).

Christian

-- 
Christian Hammond - chip...@chipx86.com
Review Board - http://www.reviewboard.org
VMware, Inc. - http://www.vmware.com


On Tue, Jan 5, 2010 at 4:27 PM, Anthony Whitaker wrote:

> Ah, yeah I've got it running now. Thanks a ton. I had an issue where the
> Repositories weren't showing up. So, I upgraded to the latest Review Board,
> install pysvn (I had installed the wrong version) and recreated the site as
> you specified. Now, it tells me that the "global name 'logging' is not
> defined". I tried toggling the logging setting, no luck. I found a post of a
> similar issue but that guy was having the problem on the new review page and
> the solution didn't seem to apply. Any suggestions? This feels like the last
> hurdle. :)
>
> Thanks again,
> Anthony
>
>
> On Tue, Jan 5, 2010 at 6:11 PM, Christian Hammond wrote:
>
>> The server name looks wrong. It needs to be an actual domain, not a path
>> in a domain. If you were looking to use Review Board in
>> http://localhost/reviewboard/, you'll want to re-run the rb-site create
>> and enter localhost for the domain and /reviewboard/ for the site root on (I
>> think) the following page.
>>
>>
>> Christian
>>
>> --
>> Christian Hammond - chip...@chipx86.com
>> Review Board - http://www.reviewboard.org
>> VMware, Inc. - http://www.vmware.com
>>
>>
>> On Tue, Jan 5, 2010 at 2:49 PM, Anthony Whitaker wrote:
>>
>>> It says to install Patch.exe. However, I have installed it, it's in the
>>> path. And I read another post that suggested copying Patch.exe to the
>>> apache/bin folder (which I thought a bit odd).
>>>
>>> I installed PIL from an installer. I can import PIL from a python shell.
>>>
>>> Python 2.5.1, PIL 1.1.6, Apache 2.2,
>>> Using SQLite and mod_python, without memcache.
>>>
>>> The only error in the apache log is about a python version mismatch
>>> expecting 2.5 and finding 2.5.1.
>>>
>>> I now believe it's some sort of path issue. Typically I can access
>>> http://localhost/xampp for xampp settings... but currently even that URL
>>> shows the Manual Server Updates page.
>>>
>>> I've tried various changes in the configuration but haven't gotten
>>> anywhere... this is the current state of that:
>>>
>>> 
>>> ServerName localhost/reviewboard
>>> DocumentRoot "C:/xampp/xampplite/htdocs/reviewboard/htdocs"
>>>
>>> # Error handlers
>>> ErrorDocument 500 /errordocs/500.html
>>>
>>> # Serve django pages
>>> 
>>> PythonPath "['C:/xampp/xampplite/htdocs/reviewboard/conf'] +
>>> sys.path"
>>> SetEnv DJANGO_SETTINGS_MODULE reviewboard.settings
>>> SetEnv PYTHON_EGG_CACHE
>>> "C:/xampp/xampplite/htdocs/reviewboard/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_reviewboard
>>> 
>>>
>>> # Serve static media without running it through mod_python
>>> # (overrides the above)
>>> 
>>> SetHandler None
>>> 
>>> 
>>> SetHandler None
>>> 
>>>
>>> 
>>> AllowOverride All
>>> 
>>>
>>> # Alias static media requests to filesystem
>>> Alias /media "C:/xampp/xampplite/htdocs/reviewboard/htdocs/media"
>>> Alias /errordocs
>>> "C:/xampp/xampplite/htdocs/reviewboard/htdocs/errordocs"
>>> 
>>>
>>>
>>> Thanks a ton for the guidance. Is there any other information I left out?
>>>
>>>
>>>
>>>
>>> On Tue, Jan 5, 2010 at 3:11 PM, Christian Hammond 
>>> wrote:
>>>
 There are several Manual Server Updates pages. What instructions is this
 one referring to?

 How did you install PIL? And what version of Python is PIL and Review
 Board using?

 Christian

 --
 Christian Hammond - chip...@chipx86.com

 Review Board - http://www.reviewboard.org
 VMware, Inc. - http://www.vmware.com


 On Tue, Jan 5, 2010 at 11:17 AM, Anthony  wrote:

> I have this same problem... except PIL is installed correctly. The
> main page shows a yellow box that says "Manual server updates
> required" and a blue box that says something about installing Gnu
> Patch. Patch is installed and is in the path. I can run it from any
> command

Re: Installation problem

2010-01-05 Thread Anthony Whitaker
Ah, yeah I've got it running now. Thanks a ton. I had an issue where the
Repositories weren't showing up. So, I upgraded to the latest Review Board,
install pysvn (I had installed the wrong version) and recreated the site as
you specified. Now, it tells me that the "global name 'logging' is not
defined". I tried toggling the logging setting, no luck. I found a post of a
similar issue but that guy was having the problem on the new review page and
the solution didn't seem to apply. Any suggestions? This feels like the last
hurdle. :)

Thanks again,
Anthony

On Tue, Jan 5, 2010 at 6:11 PM, Christian Hammond wrote:

> The server name looks wrong. It needs to be an actual domain, not a path in
> a domain. If you were looking to use Review Board in
> http://localhost/reviewboard/, you'll want to re-run the rb-site create
> and enter localhost for the domain and /reviewboard/ for the site root on (I
> think) the following page.
>
>
> Christian
>
> --
> Christian Hammond - chip...@chipx86.com
> Review Board - http://www.reviewboard.org
> VMware, Inc. - http://www.vmware.com
>
>
> On Tue, Jan 5, 2010 at 2:49 PM, Anthony Whitaker wrote:
>
>> It says to install Patch.exe. However, I have installed it, it's in the
>> path. And I read another post that suggested copying Patch.exe to the
>> apache/bin folder (which I thought a bit odd).
>>
>> I installed PIL from an installer. I can import PIL from a python shell.
>>
>> Python 2.5.1, PIL 1.1.6, Apache 2.2,
>> Using SQLite and mod_python, without memcache.
>>
>> The only error in the apache log is about a python version mismatch
>> expecting 2.5 and finding 2.5.1.
>>
>> I now believe it's some sort of path issue. Typically I can access
>> http://localhost/xampp for xampp settings... but currently even that URL
>> shows the Manual Server Updates page.
>>
>> I've tried various changes in the configuration but haven't gotten
>> anywhere... this is the current state of that:
>>
>> 
>> ServerName localhost/reviewboard
>> DocumentRoot "C:/xampp/xampplite/htdocs/reviewboard/htdocs"
>>
>> # Error handlers
>> ErrorDocument 500 /errordocs/500.html
>>
>> # Serve django pages
>> 
>> PythonPath "['C:/xampp/xampplite/htdocs/reviewboard/conf'] +
>> sys.path"
>> SetEnv DJANGO_SETTINGS_MODULE reviewboard.settings
>> SetEnv PYTHON_EGG_CACHE
>> "C:/xampp/xampplite/htdocs/reviewboard/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_reviewboard
>> 
>>
>> # Serve static media without running it through mod_python
>> # (overrides the above)
>> 
>> SetHandler None
>> 
>> 
>> SetHandler None
>> 
>>
>> 
>> AllowOverride All
>> 
>>
>> # Alias static media requests to filesystem
>> Alias /media "C:/xampp/xampplite/htdocs/reviewboard/htdocs/media"
>> Alias /errordocs
>> "C:/xampp/xampplite/htdocs/reviewboard/htdocs/errordocs"
>> 
>>
>>
>> Thanks a ton for the guidance. Is there any other information I left out?
>>
>>
>>
>>
>> On Tue, Jan 5, 2010 at 3:11 PM, Christian Hammond wrote:
>>
>>> There are several Manual Server Updates pages. What instructions is this
>>> one referring to?
>>>
>>> How did you install PIL? And what version of Python is PIL and Review
>>> Board using?
>>>
>>> Christian
>>>
>>> --
>>> Christian Hammond - chip...@chipx86.com
>>>
>>> Review Board - http://www.reviewboard.org
>>> VMware, Inc. - http://www.vmware.com
>>>
>>>
>>> On Tue, Jan 5, 2010 at 11:17 AM, Anthony  wrote:
>>>
 I have this same problem... except PIL is installed correctly. The
 main page shows a yellow box that says "Manual server updates
 required" and a blue box that says something about installing Gnu
 Patch. Patch is installed and is in the path. I can run it from any
 command line.

 Any ideas?

 On Dec 16 2009, 8:00 am, Dregel  wrote:
 > This did the trick:
 > yum install python-imaging
 >
 > On Dec 15, 4:44 pm, Dregel  wrote:
 >
 > > Looks like the installation of PIL did fail. I'll start there then.
 > > Cheers!
 >
 > > Python 2.4.3 (#1, Sep  3 2009, 15:37:37)
 > > ...>>> import PIL
 >
 > > Traceback (most recent call last):
 > >   File "", line 1, in ?
 >
 > > Easy_install, yeah right...
 >
 > > On Dec 15, 1:17 am, Christian Hammond  wrote:
 >
 > > > From a python prompt, type:
 >
 > > > import PIL
 >
 > > > If that fails, then PIL is not installed on the system. If it does
 work,
 > > > then we need to investigate why your Python isn't seeing it. I
 assume you've
 > > > done a webserverrestart since installing Review Board?
 >
 > > > Christian
 >
 > > > --
 > > > Christian Hammond - chip...@chipx8

Re: Installation problem

2010-01-05 Thread Christian Hammond
The server name looks wrong. It needs to be an actual domain, not a path in
a domain. If you were looking to use Review Board in
http://localhost/reviewboard/, you'll want to re-run the rb-site create and
enter localhost for the domain and /reviewboard/ for the site root on (I
think) the following page.

Christian

-- 
Christian Hammond - chip...@chipx86.com
Review Board - http://www.reviewboard.org
VMware, Inc. - http://www.vmware.com


On Tue, Jan 5, 2010 at 2:49 PM, Anthony Whitaker wrote:

> It says to install Patch.exe. However, I have installed it, it's in the
> path. And I read another post that suggested copying Patch.exe to the
> apache/bin folder (which I thought a bit odd).
>
> I installed PIL from an installer. I can import PIL from a python shell.
>
> Python 2.5.1, PIL 1.1.6, Apache 2.2,
> Using SQLite and mod_python, without memcache.
>
> The only error in the apache log is about a python version mismatch
> expecting 2.5 and finding 2.5.1.
>
> I now believe it's some sort of path issue. Typically I can access
> http://localhost/xampp for xampp settings... but currently even that URL
> shows the Manual Server Updates page.
>
> I've tried various changes in the configuration but haven't gotten
> anywhere... this is the current state of that:
>
> 
> ServerName localhost/reviewboard
> DocumentRoot "C:/xampp/xampplite/htdocs/reviewboard/htdocs"
>
> # Error handlers
> ErrorDocument 500 /errordocs/500.html
>
> # Serve django pages
> 
> PythonPath "['C:/xampp/xampplite/htdocs/reviewboard/conf'] +
> sys.path"
> SetEnv DJANGO_SETTINGS_MODULE reviewboard.settings
> SetEnv PYTHON_EGG_CACHE
> "C:/xampp/xampplite/htdocs/reviewboard/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_reviewboard
> 
>
> # Serve static media without running it through mod_python
> # (overrides the above)
> 
> SetHandler None
> 
> 
> SetHandler None
> 
>
> 
> AllowOverride All
> 
>
> # Alias static media requests to filesystem
> Alias /media "C:/xampp/xampplite/htdocs/reviewboard/htdocs/media"
> Alias /errordocs
> "C:/xampp/xampplite/htdocs/reviewboard/htdocs/errordocs"
> 
>
>
> Thanks a ton for the guidance. Is there any other information I left out?
>
>
>
>
> On Tue, Jan 5, 2010 at 3:11 PM, Christian Hammond wrote:
>
>> There are several Manual Server Updates pages. What instructions is this
>> one referring to?
>>
>> How did you install PIL? And what version of Python is PIL and Review
>> Board using?
>>
>> Christian
>>
>> --
>> Christian Hammond - chip...@chipx86.com
>>
>> Review Board - http://www.reviewboard.org
>> VMware, Inc. - http://www.vmware.com
>>
>>
>> On Tue, Jan 5, 2010 at 11:17 AM, Anthony  wrote:
>>
>>> I have this same problem... except PIL is installed correctly. The
>>> main page shows a yellow box that says "Manual server updates
>>> required" and a blue box that says something about installing Gnu
>>> Patch. Patch is installed and is in the path. I can run it from any
>>> command line.
>>>
>>> Any ideas?
>>>
>>> On Dec 16 2009, 8:00 am, Dregel  wrote:
>>> > This did the trick:
>>> > yum install python-imaging
>>> >
>>> > On Dec 15, 4:44 pm, Dregel  wrote:
>>> >
>>> > > Looks like the installation of PIL did fail. I'll start there then.
>>> > > Cheers!
>>> >
>>> > > Python 2.4.3 (#1, Sep  3 2009, 15:37:37)
>>> > > ...>>> import PIL
>>> >
>>> > > Traceback (most recent call last):
>>> > >   File "", line 1, in ?
>>> >
>>> > > Easy_install, yeah right...
>>> >
>>> > > On Dec 15, 1:17 am, Christian Hammond  wrote:
>>> >
>>> > > > From a python prompt, type:
>>> >
>>> > > > import PIL
>>> >
>>> > > > If that fails, then PIL is not installed on the system. If it does
>>> work,
>>> > > > then we need to investigate why your Python isn't seeing it. I
>>> assume you've
>>> > > > done a webserverrestart since installing Review Board?
>>> >
>>> > > > Christian
>>> >
>>> > > > --
>>> > > > Christian Hammond - chip...@chipx86.com
>>> > > > Review Board -http://www.reviewboard.org
>>> > > > VMware, Inc. -http://www.vmware.com
>>> >
>>> > > > On Mon, Dec 14, 2009 at 4:03 PM, nshenry03 
>>> wrote:
>>> > > > > I am getting the same issue:
>>> >
>>> > > > > r...@scubuntuvm1:~# python --version
>>> > > > > Python 2.5.2
>>> > > > > r...@scubuntuvm1:~# lsb_release -a
>>> > > > > No LSB modules are available.
>>> > > > > Distributor ID: Ubuntu
>>> > > > > Description:Ubuntu 8.04.3 LTS
>>> > > > > Release:8.04
>>> > > > > Codename:   hardy
>>> > > > > r...@scubuntuvm1:~# uname -r
>>> > > > > 2.6.24-23-generic
>>> >
>>> > > > > On Dec 14, 2:26 pm, Christian Hammond 
>>> wrote:
>>> > > > > > Hi,
>>> >
>>> > > > > > The manualupdatespage is old and generally isn't seen anymore.
>>

Re: Installation problem

2010-01-05 Thread Anthony Whitaker
It says to install Patch.exe. However, I have installed it, it's in the
path. And I read another post that suggested copying Patch.exe to the
apache/bin folder (which I thought a bit odd).

I installed PIL from an installer. I can import PIL from a python shell.

Python 2.5.1, PIL 1.1.6, Apache 2.2,
Using SQLite and mod_python, without memcache.

The only error in the apache log is about a python version mismatch
expecting 2.5 and finding 2.5.1.

I now believe it's some sort of path issue. Typically I can access
http://localhost/xampp for xampp settings... but currently even that URL
shows the Manual Server Updates page.

I've tried various changes in the configuration but haven't gotten
anywhere... this is the current state of that:


ServerName localhost/reviewboard
DocumentRoot "C:/xampp/xampplite/htdocs/reviewboard/htdocs"

# Error handlers
ErrorDocument 500 /errordocs/500.html

# Serve django pages

PythonPath "['C:/xampp/xampplite/htdocs/reviewboard/conf'] +
sys.path"
SetEnv DJANGO_SETTINGS_MODULE reviewboard.settings
SetEnv PYTHON_EGG_CACHE
"C:/xampp/xampplite/htdocs/reviewboard/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_reviewboard


# Serve static media without running it through mod_python
# (overrides the above)

SetHandler None


SetHandler None



AllowOverride All


# Alias static media requests to filesystem
Alias /media "C:/xampp/xampplite/htdocs/reviewboard/htdocs/media"
Alias /errordocs
"C:/xampp/xampplite/htdocs/reviewboard/htdocs/errordocs"



Thanks a ton for the guidance. Is there any other information I left out?



On Tue, Jan 5, 2010 at 3:11 PM, Christian Hammond wrote:

> There are several Manual Server Updates pages. What instructions is this
> one referring to?
>
> How did you install PIL? And what version of Python is PIL and Review Board
> using?
>
> Christian
>
> --
> Christian Hammond - chip...@chipx86.com
>
> Review Board - http://www.reviewboard.org
> VMware, Inc. - http://www.vmware.com
>
>
> On Tue, Jan 5, 2010 at 11:17 AM, Anthony  wrote:
>
>> I have this same problem... except PIL is installed correctly. The
>> main page shows a yellow box that says "Manual server updates
>> required" and a blue box that says something about installing Gnu
>> Patch. Patch is installed and is in the path. I can run it from any
>> command line.
>>
>> Any ideas?
>>
>> On Dec 16 2009, 8:00 am, Dregel  wrote:
>> > This did the trick:
>> > yum install python-imaging
>> >
>> > On Dec 15, 4:44 pm, Dregel  wrote:
>> >
>> > > Looks like the installation of PIL did fail. I'll start there then.
>> > > Cheers!
>> >
>> > > Python 2.4.3 (#1, Sep  3 2009, 15:37:37)
>> > > ...>>> import PIL
>> >
>> > > Traceback (most recent call last):
>> > >   File "", line 1, in ?
>> >
>> > > Easy_install, yeah right...
>> >
>> > > On Dec 15, 1:17 am, Christian Hammond  wrote:
>> >
>> > > > From a python prompt, type:
>> >
>> > > > import PIL
>> >
>> > > > If that fails, then PIL is not installed on the system. If it does
>> work,
>> > > > then we need to investigate why your Python isn't seeing it. I
>> assume you've
>> > > > done a webserverrestart since installing Review Board?
>> >
>> > > > Christian
>> >
>> > > > --
>> > > > Christian Hammond - chip...@chipx86.com
>> > > > Review Board -http://www.reviewboard.org
>> > > > VMware, Inc. -http://www.vmware.com
>> >
>> > > > On Mon, Dec 14, 2009 at 4:03 PM, nshenry03 
>> wrote:
>> > > > > I am getting the same issue:
>> >
>> > > > > r...@scubuntuvm1:~# python --version
>> > > > > Python 2.5.2
>> > > > > r...@scubuntuvm1:~# lsb_release -a
>> > > > > No LSB modules are available.
>> > > > > Distributor ID: Ubuntu
>> > > > > Description:Ubuntu 8.04.3 LTS
>> > > > > Release:8.04
>> > > > > Codename:   hardy
>> > > > > r...@scubuntuvm1:~# uname -r
>> > > > > 2.6.24-23-generic
>> >
>> > > > > On Dec 14, 2:26 pm, Christian Hammond 
>> wrote:
>> > > > > > Hi,
>> >
>> > > > > > The manualupdatespage is old and generally isn't seen anymore.
>> We'll
>> > > > > need
>> > > > > > to update the text to reference rb-site instead of manage.py.
>> >
>> > > > > > The error definitely seems to be that PIL isn't installed
>> correctly. Yes,
>> > > > > > easy_install should get it, but perhaps something went wrong.
>> What
>> > > > > version
>> > > > > > of Python is being used on the system?
>> >
>> > > > > > Christian
>> >
>> > > > > > --
>> > > > > > Christian Hammond - chip...@chipx86.com
>> > > > > > Review Board -http://www.reviewboard.org
>> > > > > > VMware, Inc. -http://www.vmware.com
>> >
>> > > > > > On Mon, Dec 14, 2009 at 12:07 PM, Dregel 
>> wrote:
>> > > > > > > Hi,
>> >
>> > > > > > > After following the installation guide

Re: Installation problem

2010-01-05 Thread Christian Hammond
There are several Manual Server Updates pages. What instructions is this one
referring to?

How did you install PIL? And what version of Python is PIL and Review Board
using?

Christian

-- 
Christian Hammond - chip...@chipx86.com
Review Board - http://www.reviewboard.org
VMware, Inc. - http://www.vmware.com


On Tue, Jan 5, 2010 at 11:17 AM, Anthony  wrote:

> I have this same problem... except PIL is installed correctly. The
> main page shows a yellow box that says "Manual server updates
> required" and a blue box that says something about installing Gnu
> Patch. Patch is installed and is in the path. I can run it from any
> command line.
>
> Any ideas?
>
> On Dec 16 2009, 8:00 am, Dregel  wrote:
> > This did the trick:
> > yum install python-imaging
> >
> > On Dec 15, 4:44 pm, Dregel  wrote:
> >
> > > Looks like the installation of PIL did fail. I'll start there then.
> > > Cheers!
> >
> > > Python 2.4.3 (#1, Sep  3 2009, 15:37:37)
> > > ...>>> import PIL
> >
> > > Traceback (most recent call last):
> > >   File "", line 1, in ?
> >
> > > Easy_install, yeah right...
> >
> > > On Dec 15, 1:17 am, Christian Hammond  wrote:
> >
> > > > From a python prompt, type:
> >
> > > > import PIL
> >
> > > > If that fails, then PIL is not installed on the system. If it does
> work,
> > > > then we need to investigate why your Python isn't seeing it. I assume
> you've
> > > > done a webserverrestart since installing Review Board?
> >
> > > > Christian
> >
> > > > --
> > > > Christian Hammond - chip...@chipx86.com
> > > > Review Board -http://www.reviewboard.org
> > > > VMware, Inc. -http://www.vmware.com
> >
> > > > On Mon, Dec 14, 2009 at 4:03 PM, nshenry03 
> wrote:
> > > > > I am getting the same issue:
> >
> > > > > r...@scubuntuvm1:~# python --version
> > > > > Python 2.5.2
> > > > > r...@scubuntuvm1:~# lsb_release -a
> > > > > No LSB modules are available.
> > > > > Distributor ID: Ubuntu
> > > > > Description:Ubuntu 8.04.3 LTS
> > > > > Release:8.04
> > > > > Codename:   hardy
> > > > > r...@scubuntuvm1:~# uname -r
> > > > > 2.6.24-23-generic
> >
> > > > > On Dec 14, 2:26 pm, Christian Hammond  wrote:
> > > > > > Hi,
> >
> > > > > > The manualupdatespage is old and generally isn't seen anymore.
> We'll
> > > > > need
> > > > > > to update the text to reference rb-site instead of manage.py.
> >
> > > > > > The error definitely seems to be that PIL isn't installed
> correctly. Yes,
> > > > > > easy_install should get it, but perhaps something went wrong.
> What
> > > > > version
> > > > > > of Python is being used on the system?
> >
> > > > > > Christian
> >
> > > > > > --
> > > > > > Christian Hammond - chip...@chipx86.com
> > > > > > Review Board -http://www.reviewboard.org
> > > > > > VMware, Inc. -http://www.vmware.com
> >
> > > > > > On Mon, Dec 14, 2009 at 12:07 PM, Dregel 
> wrote:
> > > > > > > Hi,
> >
> > > > > > > After following the installation guide, I got RB kind of
> working on
> > > > > > > centos but when I go to default page I get the message:
> Manualserver
> > > > > > >updatesrequired
> >
> > > > > > > The suggestion is to run manage.py. After some investigation I
> found
> > > > > > > someone that recommended a rb-site upgrade instead and that
> command
> > > > > > > reveals a problem:
> >
> > > > > > > []# rb-site -d upgrade /var/www/reviewboard
> > > > > > > Rebuilding directory structure
> > > > > > > Updating database. This may take a while.
> > > > > > > Error: One or more models did not validate:
> > > > > > > reviews.screenshot: "image": To use ImageFields, you need to
> install
> > > > > > > the Python Imaging Library. Get it at
> > > > > > >http://www.pythonware.com/products/pil/
> > > > > > > .
> >
> > > > > > > What gives? I thought PIL was correctly installed when running
> > > > > > > easy_install but it's not working. Any suggestions?
> >
> > > > > > > --
> > > > > > > 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
> > > > > > > reviewboard+unsubscr...@googlegroups.com
> 
> >
> > > > > 
> 
> >
> >
> > > > > > > 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
> > > > > reviewboard+unsubscr...@googlegroups.com
> 
> >
> > > > > 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 a

Re: Installation problem

2010-01-05 Thread Anthony
I have this same problem... except PIL is installed correctly. The
main page shows a yellow box that says "Manual server updates
required" and a blue box that says something about installing Gnu
Patch. Patch is installed and is in the path. I can run it from any
command line.

Any ideas?

On Dec 16 2009, 8:00 am, Dregel  wrote:
> This did the trick:
> yum install python-imaging
>
> On Dec 15, 4:44 pm, Dregel  wrote:
>
> > Looks like the installation of PIL did fail. I'll start there then.
> > Cheers!
>
> > Python 2.4.3 (#1, Sep  3 2009, 15:37:37)
> > ...>>> import PIL
>
> > Traceback (most recent call last):
> >   File "", line 1, in ?
>
> > Easy_install, yeah right...
>
> > On Dec 15, 1:17 am, Christian Hammond  wrote:
>
> > > From a python prompt, type:
>
> > >     import PIL
>
> > > If that fails, then PIL is not installed on the system. If it does work,
> > > then we need to investigate why your Python isn't seeing it. I assume 
> > > you've
> > > done a webserverrestart since installing Review Board?
>
> > > Christian
>
> > > --
> > > Christian Hammond - chip...@chipx86.com
> > > Review Board -http://www.reviewboard.org
> > > VMware, Inc. -http://www.vmware.com
>
> > > On Mon, Dec 14, 2009 at 4:03 PM, nshenry03  wrote:
> > > > I am getting the same issue:
>
> > > > r...@scubuntuvm1:~# python --version
> > > > Python 2.5.2
> > > > r...@scubuntuvm1:~# lsb_release -a
> > > > No LSB modules are available.
> > > > Distributor ID: Ubuntu
> > > > Description:    Ubuntu 8.04.3 LTS
> > > > Release:        8.04
> > > > Codename:       hardy
> > > > r...@scubuntuvm1:~# uname -r
> > > > 2.6.24-23-generic
>
> > > > On Dec 14, 2:26 pm, Christian Hammond  wrote:
> > > > > Hi,
>
> > > > > The manualupdatespage is old and generally isn't seen anymore. We'll
> > > > need
> > > > > to update the text to reference rb-site instead of manage.py.
>
> > > > > The error definitely seems to be that PIL isn't installed correctly. 
> > > > > Yes,
> > > > > easy_install should get it, but perhaps something went wrong. What
> > > > version
> > > > > of Python is being used on the system?
>
> > > > > Christian
>
> > > > > --
> > > > > Christian Hammond - chip...@chipx86.com
> > > > > Review Board -http://www.reviewboard.org
> > > > > VMware, Inc. -http://www.vmware.com
>
> > > > > On Mon, Dec 14, 2009 at 12:07 PM, Dregel  wrote:
> > > > > > Hi,
>
> > > > > > After following the installation guide, I got RB kind of working on
> > > > > > centos but when I go to default page I get the message: Manualserver
> > > > > >updatesrequired
>
> > > > > > The suggestion is to run manage.py. After some investigation I found
> > > > > > someone that recommended a rb-site upgrade instead and that command
> > > > > > reveals a problem:
>
> > > > > > []# rb-site -d upgrade /var/www/reviewboard
> > > > > > Rebuilding directory structure
> > > > > > Updating database. This may take a while.
> > > > > > Error: One or more models did not validate:
> > > > > > reviews.screenshot: "image": To use ImageFields, you need to install
> > > > > > the Python Imaging Library. Get it at
> > > > > >http://www.pythonware.com/products/pil/
> > > > > > .
>
> > > > > > What gives? I thought PIL was correctly installed when running
> > > > > > easy_install but it's not working. Any suggestions?
>
> > > > > > --
> > > > > > 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
> > > > > > reviewboard+unsubscr...@googlegroups.com
> > > > 
>
> > > > > > 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
> > > > reviewboard+unsubscr...@googlegroups.com
> > > > 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 
reviewboard+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/reviewboard?hl=en

Re: Installation problem

2009-12-16 Thread Dregel
This did the trick:
yum install python-imaging

On Dec 15, 4:44 pm, Dregel  wrote:
> Looks like the installation of PIL did fail. I'll start there then.
> Cheers!
>
> Python 2.4.3 (#1, Sep  3 2009, 15:37:37)
> ...>>> import PIL
>
> Traceback (most recent call last):
>   File "", line 1, in ?
>
> Easy_install, yeah right...
>
> On Dec 15, 1:17 am, Christian Hammond  wrote:
>
> > From a python prompt, type:
>
> >     import PIL
>
> > If that fails, then PIL is not installed on the system. If it does work,
> > then we need to investigate why your Python isn't seeing it. I assume you've
> > done a web server restart since installing Review Board?
>
> > Christian
>
> > --
> > Christian Hammond - chip...@chipx86.com
> > Review Board -http://www.reviewboard.org
> > VMware, Inc. -http://www.vmware.com
>
> > On Mon, Dec 14, 2009 at 4:03 PM, nshenry03  wrote:
> > > I am getting the same issue:
>
> > > r...@scubuntuvm1:~# python --version
> > > Python 2.5.2
> > > r...@scubuntuvm1:~# lsb_release -a
> > > No LSB modules are available.
> > > Distributor ID: Ubuntu
> > > Description:    Ubuntu 8.04.3 LTS
> > > Release:        8.04
> > > Codename:       hardy
> > > r...@scubuntuvm1:~# uname -r
> > > 2.6.24-23-generic
>
> > > On Dec 14, 2:26 pm, Christian Hammond  wrote:
> > > > Hi,
>
> > > > The manual updates page is old and generally isn't seen anymore. We'll
> > > need
> > > > to update the text to reference rb-site instead of manage.py.
>
> > > > The error definitely seems to be that PIL isn't installed correctly. 
> > > > Yes,
> > > > easy_install should get it, but perhaps something went wrong. What
> > > version
> > > > of Python is being used on the system?
>
> > > > Christian
>
> > > > --
> > > > Christian Hammond - chip...@chipx86.com
> > > > Review Board -http://www.reviewboard.org
> > > > VMware, Inc. -http://www.vmware.com
>
> > > > On Mon, Dec 14, 2009 at 12:07 PM, Dregel  wrote:
> > > > > Hi,
>
> > > > > After following the installation guide, I got RB kind of working on
> > > > > centos but when I go to default page I get the message: Manual server
> > > > > updates required
>
> > > > > The suggestion is to run manage.py. After some investigation I found
> > > > > someone that recommended a rb-site upgrade instead and that command
> > > > > reveals a problem:
>
> > > > > []# rb-site -d upgrade /var/www/reviewboard
> > > > > Rebuilding directory structure
> > > > > Updating database. This may take a while.
> > > > > Error: One or more models did not validate:
> > > > > reviews.screenshot: "image": To use ImageFields, you need to install
> > > > > the Python Imaging Library. Get it at
> > > > >http://www.pythonware.com/products/pil/
> > > > > .
>
> > > > > What gives? I thought PIL was correctly installed when running
> > > > > easy_install but it's not working. Any suggestions?
>
> > > > > --
> > > > > 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
> > > > > reviewboard+unsubscr...@googlegroups.com
> > > 
>
> > > > > 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
> > > reviewboard+unsubscr...@googlegroups.com
> > > 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 
reviewboard+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/reviewboard?hl=en


Re: Installation problem

2009-12-15 Thread nshenry03
This fixed it for me:
  sudo apt-get -y install python-imaging

r...@scubuntuvm1:~# python --version
Python 2.5.2
r...@scubuntuvm1:~# lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:Ubuntu 8.04.3 LTS
Release:8.04
Codename:   hardy
r...@scubuntuvm1:~# uname -r
2.6.24-23-generic

On Dec 15, 8:44 am, Dregel  wrote:
> Looks like the installation of PIL did fail. I'll start there then.
> Cheers!
>
> Python 2.4.3 (#1, Sep  3 2009, 15:37:37)
> ...>>> import PIL
>
> Traceback (most recent call last):
>   File "", line 1, in ?
>
> Easy_install, yeah right...
>
> On Dec 15, 1:17 am, Christian Hammond  wrote:
>
> > From a python prompt, type:
>
> >     import PIL
>
> > If that fails, then PIL is not installed on the system. If it does work,
> > then we need to investigate why your Python isn't seeing it. I assume you've
> > done a web server restart since installing Review Board?
>
> > Christian
>
> > --
> > Christian Hammond - chip...@chipx86.com
> > Review Board -http://www.reviewboard.org
> > VMware, Inc. -http://www.vmware.com
>
> > On Mon, Dec 14, 2009 at 4:03 PM, nshenry03  wrote:
> > > I am getting the same issue:
>
> > > r...@scubuntuvm1:~# python --version
> > > Python 2.5.2
> > > r...@scubuntuvm1:~# lsb_release -a
> > > No LSB modules are available.
> > > Distributor ID: Ubuntu
> > > Description:    Ubuntu 8.04.3 LTS
> > > Release:        8.04
> > > Codename:       hardy
> > > r...@scubuntuvm1:~# uname -r
> > > 2.6.24-23-generic
>
> > > On Dec 14, 2:26 pm, Christian Hammond  wrote:
> > > > Hi,
>
> > > > The manual updates page is old and generally isn't seen anymore. We'll
> > > need
> > > > to update the text to reference rb-site instead of manage.py.
>
> > > > The error definitely seems to be that PIL isn't installed correctly. 
> > > > Yes,
> > > > easy_install should get it, but perhaps something went wrong. What
> > > version
> > > > of Python is being used on the system?
>
> > > > Christian
>
> > > > --
> > > > Christian Hammond - chip...@chipx86.com
> > > > Review Board -http://www.reviewboard.org
> > > > VMware, Inc. -http://www.vmware.com
>
> > > > On Mon, Dec 14, 2009 at 12:07 PM, Dregel  wrote:
> > > > > Hi,
>
> > > > > After following the installation guide, I got RB kind of working on
> > > > > centos but when I go to default page I get the message: Manual server
> > > > > updates required
>
> > > > > The suggestion is to run manage.py. After some investigation I found
> > > > > someone that recommended a rb-site upgrade instead and that command
> > > > > reveals a problem:
>
> > > > > []# rb-site -d upgrade /var/www/reviewboard
> > > > > Rebuilding directory structure
> > > > > Updating database. This may take a while.
> > > > > Error: One or more models did not validate:
> > > > > reviews.screenshot: "image": To use ImageFields, you need to install
> > > > > the Python Imaging Library. Get it at
> > > > >http://www.pythonware.com/products/pil/
> > > > > .
>
> > > > > What gives? I thought PIL was correctly installed when running
> > > > > easy_install but it's not working. Any suggestions?
>
> > > > > --
> > > > > 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
> > > > > reviewboard+unsubscr...@googlegroups.com
> > > 
>
> > > > > 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
> > > reviewboard+unsubscr...@googlegroups.com
> > > 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 
reviewboard+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/reviewboard?hl=en


Re: Installation problem

2009-12-15 Thread Dregel
Looks like the installation of PIL did fail. I'll start there then.
Cheers!

Python 2.4.3 (#1, Sep  3 2009, 15:37:37)
...
>>> import PIL
Traceback (most recent call last):
  File "", line 1, in ?

Easy_install, yeah right...

On Dec 15, 1:17 am, Christian Hammond  wrote:
> From a python prompt, type:
>
>     import PIL
>
> If that fails, then PIL is not installed on the system. If it does work,
> then we need to investigate why your Python isn't seeing it. I assume you've
> done a web server restart since installing Review Board?
>
> Christian
>
> --
> Christian Hammond - chip...@chipx86.com
> Review Board -http://www.reviewboard.org
> VMware, Inc. -http://www.vmware.com
>
> On Mon, Dec 14, 2009 at 4:03 PM, nshenry03  wrote:
> > I am getting the same issue:
>
> > r...@scubuntuvm1:~# python --version
> > Python 2.5.2
> > r...@scubuntuvm1:~# lsb_release -a
> > No LSB modules are available.
> > Distributor ID: Ubuntu
> > Description:    Ubuntu 8.04.3 LTS
> > Release:        8.04
> > Codename:       hardy
> > r...@scubuntuvm1:~# uname -r
> > 2.6.24-23-generic
>
> > On Dec 14, 2:26 pm, Christian Hammond  wrote:
> > > Hi,
>
> > > The manual updates page is old and generally isn't seen anymore. We'll
> > need
> > > to update the text to reference rb-site instead of manage.py.
>
> > > The error definitely seems to be that PIL isn't installed correctly. Yes,
> > > easy_install should get it, but perhaps something went wrong. What
> > version
> > > of Python is being used on the system?
>
> > > Christian
>
> > > --
> > > Christian Hammond - chip...@chipx86.com
> > > Review Board -http://www.reviewboard.org
> > > VMware, Inc. -http://www.vmware.com
>
> > > On Mon, Dec 14, 2009 at 12:07 PM, Dregel  wrote:
> > > > Hi,
>
> > > > After following the installation guide, I got RB kind of working on
> > > > centos but when I go to default page I get the message: Manual server
> > > > updates required
>
> > > > The suggestion is to run manage.py. After some investigation I found
> > > > someone that recommended a rb-site upgrade instead and that command
> > > > reveals a problem:
>
> > > > []# rb-site -d upgrade /var/www/reviewboard
> > > > Rebuilding directory structure
> > > > Updating database. This may take a while.
> > > > Error: One or more models did not validate:
> > > > reviews.screenshot: "image": To use ImageFields, you need to install
> > > > the Python Imaging Library. Get it at
> > > >http://www.pythonware.com/products/pil/
> > > > .
>
> > > > What gives? I thought PIL was correctly installed when running
> > > > easy_install but it's not working. Any suggestions?
>
> > > > --
> > > > 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
> > > > reviewboard+unsubscr...@googlegroups.com
> > 
>
> > > > 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
> > reviewboard+unsubscr...@googlegroups.com
> > 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 
reviewboard+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/reviewboard?hl=en


Re: Installation problem

2009-12-14 Thread Christian Hammond
>From a python prompt, type:

import PIL

If that fails, then PIL is not installed on the system. If it does work,
then we need to investigate why your Python isn't seeing it. I assume you've
done a web server restart since installing Review Board?

Christian

-- 
Christian Hammond - chip...@chipx86.com
Review Board - http://www.reviewboard.org
VMware, Inc. - http://www.vmware.com


On Mon, Dec 14, 2009 at 4:03 PM, nshenry03  wrote:

> I am getting the same issue:
>
> r...@scubuntuvm1:~# python --version
> Python 2.5.2
> r...@scubuntuvm1:~# lsb_release -a
> No LSB modules are available.
> Distributor ID: Ubuntu
> Description:Ubuntu 8.04.3 LTS
> Release:8.04
> Codename:   hardy
> r...@scubuntuvm1:~# uname -r
> 2.6.24-23-generic
>
> On Dec 14, 2:26 pm, Christian Hammond  wrote:
> > Hi,
> >
> > The manual updates page is old and generally isn't seen anymore. We'll
> need
> > to update the text to reference rb-site instead of manage.py.
> >
> > The error definitely seems to be that PIL isn't installed correctly. Yes,
> > easy_install should get it, but perhaps something went wrong. What
> version
> > of Python is being used on the system?
> >
> > Christian
> >
> > --
> > Christian Hammond - chip...@chipx86.com
> > Review Board -http://www.reviewboard.org
> > VMware, Inc. -http://www.vmware.com
> >
> > On Mon, Dec 14, 2009 at 12:07 PM, Dregel  wrote:
> > > Hi,
> >
> > > After following the installation guide, I got RB kind of working on
> > > centos but when I go to default page I get the message: Manual server
> > > updates required
> >
> > > The suggestion is to run manage.py. After some investigation I found
> > > someone that recommended a rb-site upgrade instead and that command
> > > reveals a problem:
> >
> > > []# rb-site -d upgrade /var/www/reviewboard
> > > Rebuilding directory structure
> > > Updating database. This may take a while.
> > > Error: One or more models did not validate:
> > > reviews.screenshot: "image": To use ImageFields, you need to install
> > > the Python Imaging Library. Get it at
> > >http://www.pythonware.com/products/pil/
> > > .
> >
> > > What gives? I thought PIL was correctly installed when running
> > > easy_install but it's not working. Any suggestions?
> >
> > > --
> > > 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
> > > reviewboard+unsubscr...@googlegroups.com
> 
> >
> > > 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
> reviewboard+unsubscr...@googlegroups.com
> 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 
reviewboard+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/reviewboard?hl=en

Re: Installation problem

2009-12-14 Thread nshenry03
I am getting the same issue:

r...@scubuntuvm1:~# python --version
Python 2.5.2
r...@scubuntuvm1:~# lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:Ubuntu 8.04.3 LTS
Release:8.04
Codename:   hardy
r...@scubuntuvm1:~# uname -r
2.6.24-23-generic

On Dec 14, 2:26 pm, Christian Hammond  wrote:
> Hi,
>
> The manual updates page is old and generally isn't seen anymore. We'll need
> to update the text to reference rb-site instead of manage.py.
>
> The error definitely seems to be that PIL isn't installed correctly. Yes,
> easy_install should get it, but perhaps something went wrong. What version
> of Python is being used on the system?
>
> Christian
>
> --
> Christian Hammond - chip...@chipx86.com
> Review Board -http://www.reviewboard.org
> VMware, Inc. -http://www.vmware.com
>
> On Mon, Dec 14, 2009 at 12:07 PM, Dregel  wrote:
> > Hi,
>
> > After following the installation guide, I got RB kind of working on
> > centos but when I go to default page I get the message: Manual server
> > updates required
>
> > The suggestion is to run manage.py. After some investigation I found
> > someone that recommended a rb-site upgrade instead and that command
> > reveals a problem:
>
> > []# rb-site -d upgrade /var/www/reviewboard
> > Rebuilding directory structure
> > Updating database. This may take a while.
> > Error: One or more models did not validate:
> > reviews.screenshot: "image": To use ImageFields, you need to install
> > the Python Imaging Library. Get it at
> >http://www.pythonware.com/products/pil/
> > .
>
> > What gives? I thought PIL was correctly installed when running
> > easy_install but it's not working. Any suggestions?
>
> > --
> > 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
> > reviewboard+unsubscr...@googlegroups.com
> > 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 
reviewboard+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/reviewboard?hl=en


Re: Installation problem

2009-12-14 Thread Christian Hammond
Hi,

The manual updates page is old and generally isn't seen anymore. We'll need
to update the text to reference rb-site instead of manage.py.

The error definitely seems to be that PIL isn't installed correctly. Yes,
easy_install should get it, but perhaps something went wrong. What version
of Python is being used on the system?

Christian

-- 
Christian Hammond - chip...@chipx86.com
Review Board - http://www.reviewboard.org
VMware, Inc. - http://www.vmware.com


On Mon, Dec 14, 2009 at 12:07 PM, Dregel  wrote:

> Hi,
>
> After following the installation guide, I got RB kind of working on
> centos but when I go to default page I get the message: Manual server
> updates required
>
> The suggestion is to run manage.py. After some investigation I found
> someone that recommended a rb-site upgrade instead and that command
> reveals a problem:
>
> []# rb-site -d upgrade /var/www/reviewboard
> Rebuilding directory structure
> Updating database. This may take a while.
> Error: One or more models did not validate:
> reviews.screenshot: "image": To use ImageFields, you need to install
> the Python Imaging Library. Get it at
> http://www.pythonware.com/products/pil/
> .
>
>
> What gives? I thought PIL was correctly installed when running
> easy_install but it's not working. Any suggestions?
>
> --
> 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
> reviewboard+unsubscr...@googlegroups.com
> 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 
reviewboard+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/reviewboard?hl=en