Re: Reviewboard alpa

2009-01-21 Thread Wes Winham

Well that was easy :)

Thanks for the quick help. Switching it to a fully qualified domain
name and using /etc/hosts to catch it made everything work like a
charm after the re-install.

So it sounds like the error message I thought might be coming from the
Server actually was and I wasn't even stressing over the right field.
doh

Thanks again
-wes

On Jan 22, 12:52 am, Christian Hammond  wrote:
> Django's URLField requires a fully-qualified domain (like foo.com), so if
> you're using something likehttp://reviews/, it'll complain. I want to
> change this at some point, since internal domains should be fine. Are you
> using such a domain in that field?
>
> I imagine the media field is actually fine, and once you enter a URL that
> the URLField is happy with, it should fix the double "/" in the media path.
>
> Christian
>
> --
> Christian Hammond - chip...@chipx86.com
> VMware, Inc.
>
> On Wed, Jan 21, 2009 at 9:45 PM, Wes Winham  wrote:
>
> > I'm not sure, but I might be having the same site media problem. I'm
> > familiar with django, but not the way djiblets does the database
> > settings stuff.
>
> > Basically, the MEDIA_URL isn't being set at all. I've tried setting it
> > through the admin interface, but what I'd think would be the correct
> > value of "/media/" (no quotes) throws up an "Enter a valid URL." error
> > when I try and save it. All of the media is attempting to be pulled
> > from urls likehttp://media/djblets/js/jquery-1.2.6.min.jsor
> >http://media/rb/css/admin.css
>
> > I tried setting a MEDIA_URL in my settings_local, but it looks like
> > it's over-ridden in settings.py anyway (and possible through whatever
> > the djiblets stuff does that I don't fully understand). The more
> > confusing part is that I can't get any value to stick in the media url
> > field  with the description-
>
> > > Media URL:
>
> > > The URL to the media files. Leave blank to use the default media path on
> > this server.
>
> > I've tried: /, /media/,http://test.reviews/media/, /media and leaving
> > it blank and I always get the "Enter a valid URL" message (which is
> > placed above the Server field in reality, so maybe I'm just
> > misunderstanding, but I can't get any valid values for that either).
>
> > Also, the default value for Media URL when I load
> >http://test.reviews/admin/settings/general/is "//media/' despite the
> > fact that I can't even resubmit the form to keep it as //media/
>
> > I'm using the easy_install with 1.0alpha2.dev_20090121
>
> > And yes, my media works fine if I just access it via something like
> >http://test.reviews/media/djiblets
>
> > Any suggestions?
>
> > thanks
> > -wes
>
> > On Jan 20, 5:05 am, "roshan pius"  wrote:
> > > The Permissions have been set:
>
> > > drwxrwxrwx 3 www-data www-data 4096 Jan 19 20:05 .
> > > drwxrwxrwx 5 www-data www-data 4096 Jan 19 20:05 ..
> > > lrwxrwxrwx 1 www-data www-data   99 Jan 19 20:05 errordocs ->
>
> > /usr/local/lib/python2.6/site-packages/ReviewBoard-1.0alpha1-py2.6.egg/reviewboard/htdocs/errordocs
> > > drwxrwxrwx 3 www-data www-data 4096 Jan 19 20:05media
>
> > > On Tue, Jan 20, 2009 at 3:24 PM, Christian Hammond 
> > wrote:
> > > > Okay, so you're getting a "Forbidden" error with this directory, but
> > the
> > > > HTML file for that is missing so it's sending a 404 instead.
>
> > > > What you're seeing is a config error on your server where Apache's user
> > is
> > > > unable to access yourmediadirectory. The user just doesn't have the
> > > > permissions required.
>
> > > > Check to make sure your site's htdocs/mediadirectory (and everything
> > else
> > > > in htdocs/) has permissions set so that the Apache user can access it.
>
> > > > Christian
>
> > > > --
> > > > Christian Hammond - chip...@chipx86.com
> > > > VMware, Inc.
>
> > > > On Tue, Jan 20, 2009 at 1:46 AM, roshan pius <
> > roshanpiustho...@gmail.com>
> > > > wrote:
>
> > > >> I added the line to vhosts.conf file
>
> > > >> "Options FollowSymLinks"
>
> > > >> When i tried accessing thehttp://135.254.219.50/media/-I got this
> > > >> error on the browser
>
> > > >> Page not found (404)
> > > >> Request Method: GET
> > > >> Request URL:    http://135.254.219.50/error/HTTP_FORBIDDEN.html.var
>
> > > >> Regards,
> > > >> Roshan Pius
>
> > > >> On Tue, Jan 20, 2009 at 3:06 PM, Christian Hammond <
> > chip...@chipx86.com>
> > > >> wrote:
> > > >> > That file seems to have some issues. Perhaps the browser tried to
> > > >> > normalize
> > > >> > the file paths, but they end up looking like:
>
> > > >> > 
>
> > > >> > There's also a bunch of custom HTML in there, and existing HTML
> > that's
> > > >> > modified. Definitely looks like the browser is doing it.
>
> > > >> > Can you look at the source for that file in your browser, find any
> > > >> >  or
> > > >> > 

Re: Reviewboard alpa

2009-01-21 Thread Christian Hammond
Django's URLField requires a fully-qualified domain (like foo.com), so if
you're using something like http://reviews/, it'll complain. I want to
change this at some point, since internal domains should be fine. Are you
using such a domain in that field?

I imagine the media field is actually fine, and once you enter a URL that
the URLField is happy with, it should fix the double "/" in the media path.

Christian

-- 
Christian Hammond - chip...@chipx86.com
VMware, Inc.


On Wed, Jan 21, 2009 at 9:45 PM, Wes Winham  wrote:

>
> I'm not sure, but I might be having the same site media problem. I'm
> familiar with django, but not the way djiblets does the database
> settings stuff.
>
> Basically, the MEDIA_URL isn't being set at all. I've tried setting it
> through the admin interface, but what I'd think would be the correct
> value of "/media/" (no quotes) throws up an "Enter a valid URL." error
> when I try and save it. All of the media is attempting to be pulled
> from urls like http://media/djblets/js/jquery-1.2.6.min.js or
> http://media/rb/css/admin.css
>
> I tried setting a MEDIA_URL in my settings_local, but it looks like
> it's over-ridden in settings.py anyway (and possible through whatever
> the djiblets stuff does that I don't fully understand). The more
> confusing part is that I can't get any value to stick in the media url
> field  with the description-
>
> > Media URL:
>
> > The URL to the media files. Leave blank to use the default media path on
> this server.
>
> I've tried: /, /media/, http://test.reviews/media/, /media and leaving
> it blank and I always get the "Enter a valid URL" message (which is
> placed above the Server field in reality, so maybe I'm just
> misunderstanding, but I can't get any valid values for that either).
>
> Also, the default value for Media URL when I load
> http://test.reviews/admin/settings/general/ is "//media/' despite the
> fact that I can't even resubmit the form to keep it as //media/
>
> I'm using the easy_install with 1.0alpha2.dev_20090121
>
> And yes, my media works fine if I just access it via something like
> http://test.reviews/media/djiblets
>
> Any suggestions?
>
> thanks
> -wes
>
> On Jan 20, 5:05 am, "roshan pius"  wrote:
> > The Permissions have been set:
> >
> > drwxrwxrwx 3 www-data www-data 4096 Jan 19 20:05 .
> > drwxrwxrwx 5 www-data www-data 4096 Jan 19 20:05 ..
> > lrwxrwxrwx 1 www-data www-data   99 Jan 19 20:05 errordocs ->
> >
> /usr/local/lib/python2.6/site-packages/ReviewBoard-1.0alpha1-py2.6.egg/reviewboard/htdocs/errordocs
> > drwxrwxrwx 3 www-data www-data 4096 Jan 19 20:05media
> >
> > On Tue, Jan 20, 2009 at 3:24 PM, Christian Hammond 
> wrote:
> > > Okay, so you're getting a "Forbidden" error with this directory, but
> the
> > > HTML file for that is missing so it's sending a 404 instead.
> >
> > > What you're seeing is a config error on your server where Apache's user
> is
> > > unable to access yourmediadirectory. The user just doesn't have the
> > > permissions required.
> >
> > > Check to make sure your site's htdocs/mediadirectory (and everything
> else
> > > in htdocs/) has permissions set so that the Apache user can access it.
> >
> > > Christian
> >
> > > --
> > > Christian Hammond - chip...@chipx86.com
> > > VMware, Inc.
> >
> > > On Tue, Jan 20, 2009 at 1:46 AM, roshan pius <
> roshanpiustho...@gmail.com>
> > > wrote:
> >
> > >> I added the line to vhosts.conf file
> >
> > >> "Options FollowSymLinks"
> >
> > >> When i tried accessing thehttp://135.254.219.50/media/- I got this
> > >> error on the browser
> >
> > >> Page not found (404)
> > >> Request Method: GET
> > >> Request URL:http://135.254.219.50/error/HTTP_FORBIDDEN.html.var
> >
> > >> Regards,
> > >> Roshan Pius
> >
> > >> On Tue, Jan 20, 2009 at 3:06 PM, Christian Hammond <
> chip...@chipx86.com>
> > >> wrote:
> > >> > That file seems to have some issues. Perhaps the browser tried to
> > >> > normalize
> > >> > the file paths, but they end up looking like:
> >
> > >> > 
> >
> > >> > There's also a bunch of custom HTML in there, and existing HTML
> that's
> > >> > modified. Definitely looks like the browser is doing it.
> >
> > >> > Can you look at the source for that file in your browser, find any
> > >> >  or
> > >> > 

Re: Reviewboard alpa

2009-01-21 Thread Wes Winham

I'm not sure, but I might be having the same site media problem. I'm
familiar with django, but not the way djiblets does the database
settings stuff.

Basically, the MEDIA_URL isn't being set at all. I've tried setting it
through the admin interface, but what I'd think would be the correct
value of "/media/" (no quotes) throws up an "Enter a valid URL." error
when I try and save it. All of the media is attempting to be pulled
from urls like http://media/djblets/js/jquery-1.2.6.min.js or
http://media/rb/css/admin.css

I tried setting a MEDIA_URL in my settings_local, but it looks like
it's over-ridden in settings.py anyway (and possible through whatever
the djiblets stuff does that I don't fully understand). The more
confusing part is that I can't get any value to stick in the media url
field  with the description-

> Media URL:

> The URL to the media files. Leave blank to use the default media path on this 
> server.

I've tried: /, /media/, http://test.reviews/media/, /media and leaving
it blank and I always get the "Enter a valid URL" message (which is
placed above the Server field in reality, so maybe I'm just
misunderstanding, but I can't get any valid values for that either).

Also, the default value for Media URL when I load
http://test.reviews/admin/settings/general/ is "//media/' despite the
fact that I can't even resubmit the form to keep it as //media/

I'm using the easy_install with 1.0alpha2.dev_20090121

And yes, my media works fine if I just access it via something like
http://test.reviews/media/djiblets

Any suggestions?

thanks
-wes

On Jan 20, 5:05 am, "roshan pius"  wrote:
> The Permissions have been set:
>
> drwxrwxrwx 3 www-data www-data 4096 Jan 19 20:05 .
> drwxrwxrwx 5 www-data www-data 4096 Jan 19 20:05 ..
> lrwxrwxrwx 1 www-data www-data   99 Jan 19 20:05 errordocs ->
> /usr/local/lib/python2.6/site-packages/ReviewBoard-1.0alpha1-py2.6.egg/reviewboard/htdocs/errordocs
> drwxrwxrwx 3 www-data www-data 4096 Jan 19 20:05media
>
> On Tue, Jan 20, 2009 at 3:24 PM, Christian Hammond  
> wrote:
> > Okay, so you're getting a "Forbidden" error with this directory, but the
> > HTML file for that is missing so it's sending a 404 instead.
>
> > What you're seeing is a config error on your server where Apache's user is
> > unable to access yourmediadirectory. The user just doesn't have the
> > permissions required.
>
> > Check to make sure your site's htdocs/mediadirectory (and everything else
> > in htdocs/) has permissions set so that the Apache user can access it.
>
> > Christian
>
> > --
> > Christian Hammond - chip...@chipx86.com
> > VMware, Inc.
>
> > On Tue, Jan 20, 2009 at 1:46 AM, roshan pius 
> > wrote:
>
> >> I added the line to vhosts.conf file
>
> >> "Options FollowSymLinks"
>
> >> When i tried accessing thehttp://135.254.219.50/media/- I got this
> >> error on the browser
>
> >> Page not found (404)
> >> Request Method: GET
> >> Request URL:    http://135.254.219.50/error/HTTP_FORBIDDEN.html.var
>
> >> Regards,
> >> Roshan Pius
>
> >> On Tue, Jan 20, 2009 at 3:06 PM, Christian Hammond 
> >> wrote:
> >> > That file seems to have some issues. Perhaps the browser tried to
> >> > normalize
> >> > the file paths, but they end up looking like:
>
> >> > 
>
> >> > There's also a bunch of custom HTML in there, and existing HTML that's
> >> > modified. Definitely looks like the browser is doing it.
>
> >> > Can you look at the source for that file in your browser, find any
> >> >  or
> >> > 

Re: Reviewboard alpa

2009-01-20 Thread roshan pius

The Permissions have been set:


drwxrwxrwx 3 www-data www-data 4096 Jan 19 20:05 .
drwxrwxrwx 5 www-data www-data 4096 Jan 19 20:05 ..
lrwxrwxrwx 1 www-data www-data   99 Jan 19 20:05 errordocs ->
/usr/local/lib/python2.6/site-packages/ReviewBoard-1.0alpha1-py2.6.egg/reviewboard/htdocs/errordocs
drwxrwxrwx 3 www-data www-data 4096 Jan 19 20:05 media



On Tue, Jan 20, 2009 at 3:24 PM, Christian Hammond  wrote:
> Okay, so you're getting a "Forbidden" error with this directory, but the
> HTML file for that is missing so it's sending a 404 instead.
>
> What you're seeing is a config error on your server where Apache's user is
> unable to access your media directory. The user just doesn't have the
> permissions required.
>
> Check to make sure your site's htdocs/media directory (and everything else
> in htdocs/) has permissions set so that the Apache user can access it.
>
> Christian
>
> --
> Christian Hammond - chip...@chipx86.com
> VMware, Inc.
>
>
> On Tue, Jan 20, 2009 at 1:46 AM, roshan pius 
> wrote:
>>
>> I added the line to vhosts.conf file
>>
>> "Options FollowSymLinks"
>>
>> When i tried accessing the http://135.254.219.50/media/ - I got this
>> error on the browser
>>
>> Page not found (404)
>> Request Method: GET
>> Request URL:http://135.254.219.50/error/HTTP_FORBIDDEN.html.var
>>
>> Regards,
>> Roshan Pius
>>
>>
>>
>> On Tue, Jan 20, 2009 at 3:06 PM, Christian Hammond 
>> wrote:
>> > That file seems to have some issues. Perhaps the browser tried to
>> > normalize
>> > the file paths, but they end up looking like:
>> >
>> > 
>> >
>> > There's also a bunch of custom HTML in there, and existing HTML that's
>> > modified. Definitely looks like the browser is doing it.
>> >
>> > Can you look at the source for that file in your browser, find any
>> >  or
>> > 

Re: Reviewboard alpa

2009-01-20 Thread Christian Hammond
Okay, so you're getting a "Forbidden" error with this directory, but the
HTML file for that is missing so it's sending a 404 instead.

What you're seeing is a config error on your server where Apache's user is
unable to access your media directory. The user just doesn't have the
permissions required.

Check to make sure your site's htdocs/media directory (and everything else
in htdocs/) has permissions set so that the Apache user can access it.

Christian

-- 
Christian Hammond - chip...@chipx86.com
VMware, Inc.


On Tue, Jan 20, 2009 at 1:46 AM, roshan pius wrote:

>
> I added the line to vhosts.conf file
>
> "Options FollowSymLinks"
>
> When i tried accessing the http://135.254.219.50/media/ - I got this
> error on the browser
>
> Page not found (404)
> Request Method: GET
> Request URL:http://135.254.219.50/error/HTTP_FORBIDDEN.html.var
>
> Regards,
> Roshan Pius
>
>
>
> On Tue, Jan 20, 2009 at 3:06 PM, Christian Hammond 
> wrote:
> > That file seems to have some issues. Perhaps the browser tried to
> normalize
> > the file paths, but they end up looking like:
> >
> > 
> >
> > There's also a bunch of custom HTML in there, and existing HTML that's
> > modified. Definitely looks like the browser is doing it.
> >
> > Can you look at the source for that file in your browser, find any 
> or
> > 

Re: Reviewboard alpa

2009-01-20 Thread roshan pius

I added the line to vhosts.conf file

"Options FollowSymLinks"

When i tried accessing the http://135.254.219.50/media/ - I got this
error on the browser

Page not found (404)
Request Method: GET
Request URL:http://135.254.219.50/error/HTTP_FORBIDDEN.html.var

Regards,
Roshan Pius



On Tue, Jan 20, 2009 at 3:06 PM, Christian Hammond  wrote:
> That file seems to have some issues. Perhaps the browser tried to normalize
> the file paths, but they end up looking like:
>
> 
>
> There's also a bunch of custom HTML in there, and existing HTML that's
> modified. Definitely looks like the browser is doing it.
>
> Can you look at the source for that file in your browser, find any  or
> 

Re: Reviewboard alpa

2009-01-20 Thread Christian Hammond
That file seems to have some issues. Perhaps the browser tried to normalize
the file paths, but they end up looking like:



There's also a bunch of custom HTML in there, and existing HTML that's
modified. Definitely looks like the browser is doing it.

Can you look at the source for that file in your browser, find any  or

Re: Reviewboard alpa

2009-01-20 Thread roshan pius
Hi ,

The post-review worked once i removed the old cookies file.

<<<
> You may want to also try going to http://yoursite/admin/, logging in,
> clicking on "Settings", and then checking what the "Media URL" is set to. It
> should be "/media/". If not, you can set this and then click "Save." It
> should all work even if the page styles aren't there.
>>>

I already tried this and no luck. My media URL is already "/media/".

I've attached the admin html page. i accessed using the url :
http://xxx.xxx.xxx.xxx/admin

Thanks,
Roshan Pius


On Tue, Jan 20, 2009 at 2:26 PM, Christian Hammond  wrote:
> Can you run post-review with -d and attach the debug log?
>
> Is it just asking for a password over and over? If so, try deleting
> ~/.post-review-cookies.txt.
>
> I'm imagining the problem is the site root or media root. Can you attach the
> HTML file of any page on your install? It'll help me determine if this is
> the cause. If so, we can fix this pretty easily.
>
> You may want to also try going to http://yoursite/admin/, logging in,
> clicking on "Settings", and then checking what the "Media URL" is set to. It
> should be "/media/". If not, you can set this and then click "Save." It
> should all work even if the page styles aren't there.
>
> Christian
>
> --
> Christian Hammond - chip...@chipx86.com
> VMware, Inc.
>
>
> On Tue, Jan 20, 2009 at 12:51 AM, roshan pius 
> wrote:
>>
>> Hi ,
>>
>> I've run into major issues with post-review as well now. it is not
>> able to post the reviews as well.
>> It keeps retrying and retrying but fails.
>>
>> Thanks,
>> Roshan Pius
>>
>>
>> On Tue, Jan 20, 2009 at 12:27 PM, roshan pius
>>  wrote:
>> > 
>> >ServerName xxx.xxx.com
>> >DocumentRoot /srv/www/htdocs/review-board-evros/htdocs
>> >
>> ># Error handlers
>> >ErrorDocument 500 /errordocs/500.html
>> >
>> ># Serve django pages
>> >
>> >PythonPath
>> > "['/srv/www/htdocs/review-board-evros/conf'] + sys.path"
>> >SetEnv DJANGO_SETTINGS_MODULE reviewboard.settings
>> >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-board-evros
>> >
>> >
>> ># Serve static media without running it through mod_python
>> ># (overrides the above)
>> >
>> >SetHandler None
>> >
>> >
>> >SetHandler None
>> >
>> >
>> ># Alias static media requests to filesystem
>> >Alias /media /srv/www/htdocs/review-board-evros/htdocs/media
>> >Alias /errordocs
>> > /srv/www/htdocs/review-board-evros/htdocs/errordocs
>> > 
>> >
>> >
>> > On Tue, Jan 20, 2009 at 12:20 PM, Christian Hammond
>> >  wrote:
>> >>
>> >> Hmm. If sounds like the site install went fine. Can you e-mail me the
>> >> resulting Apache config and the HTML from any page on the site
>> >> (something generic like the login page would do).
>> >>
>> >> It's probably either the site root setting, or Apache is looking in
>> >> the wrong place for media files.
>> >>
>> >> Christian
>> >>
>> >>
>> >> On 1/19/09, roshan pius  wrote:
>> >>>
>> >>> Hi
>> >>>
>> >>> 1.I'm not using a domain name as of now, running it directly with an
>> >>> IP:(xxx.xxx.xxx.xxx).Will get a domain later. But i was running before
>> >>> with direct IP.
>> >>> 2.As is said, i was running the old reviewboard off the svn checkout
>> >>> so i didn't have a rb-site installation so "rb-site upgrade" is not
>> >>> possible.
>> >>>
>> >>> 3.It is using the same old database( i can see all the members as well
>> >>> as the old review requests, just that the layout is messed).
>> >>>
>> >>> 4.The Symbolic links htdocs/media/ directory(seems to be ok):
>> >>>
>> >>> drwxrwxrwx 3 www-data www-data 4096 Jan 19 20:05 .
>> >>> drwxrwxrwx 3 www-data www-data 4096 Jan 19 20:05 ..
>> >>> lrwxrwxrwx 1 www-data www-data  101 Jan 19 20:05 admin ->
>> >>>
>> >>> /usr/local/lib/python2.6/site-packages/ReviewBoard-1.0alpha1-py2.6.egg/reviewboard/htdocs/media/admin
>> >>> lrwxrwxrwx 1 www-data www-data   80 Jan 19 20:05 djblets ->
>> >>>
>> >>> /usr/local/lib/python2.6/site-packages/Djblets-0.5alpha1-py2.6.egg/djblets/media
>> >>> lrwxrwxrwx 1 www-data www-data   98 Jan 19 20:05 rb ->
>> >>>
>> >>> /usr/local/lib/python2.6/site-packages/ReviewBoard-1.0alpha1-py2.6.egg/reviewboard/htdocs/media/rb
>> >>> drwxrwxrwx 3 www-data www-data 4096 Jan 19 20:05 uploaded
>> >>>
>> >>> 6. When i installed ReviewBoard i used "python setup.py install" and
>> >>> then did rb-site /srv/www/htdocs/review-board.com
>> >>>
>> >>> 7.For some reason the easy_install had some issues while i was trying
>> >>> yesterday, it was saying it was not able to. That is why i manually
>> >>> downloaded the tar.gz files and insta

Re: Reviewboard alpa

2009-01-20 Thread Christian Hammond
Can you run post-review with -d and attach the debug log?

Is it just asking for a password over and over? If so, try deleting
~/.post-review-cookies.txt.

I'm imagining the problem is the site root or media root. Can you attach the
HTML file of any page on your install? It'll help me determine if this is
the cause. If so, we can fix this pretty easily.

You may want to also try going to http://yoursite/admin/, logging in,
clicking on "Settings", and then checking what the "Media URL" is set to. It
should be "/media/". If not, you can set this and then click "Save." It
should all work even if the page styles aren't there.

Christian

-- 
Christian Hammond - chip...@chipx86.com
VMware, Inc.


On Tue, Jan 20, 2009 at 12:51 AM, roshan pius wrote:

>
> Hi ,
>
> I've run into major issues with post-review as well now. it is not
> able to post the reviews as well.
> It keeps retrying and retrying but fails.
>
> Thanks,
> Roshan Pius
>
>
> On Tue, Jan 20, 2009 at 12:27 PM, roshan pius
>  wrote:
> > 
> >ServerName xxx.xxx.com
> >DocumentRoot /srv/www/htdocs/review-board-evros/htdocs
> >
> ># Error handlers
> >ErrorDocument 500 /errordocs/500.html
> >
> ># Serve django pages
> >
> >PythonPath
> > "['/srv/www/htdocs/review-board-evros/conf'] + sys.path"
> >SetEnv DJANGO_SETTINGS_MODULE reviewboard.settings
> >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-board-evros
> >
> >
> ># Serve static media without running it through mod_python
> ># (overrides the above)
> >
> >SetHandler None
> >
> >
> >SetHandler None
> >
> >
> ># Alias static media requests to filesystem
> >Alias /media /srv/www/htdocs/review-board-evros/htdocs/media
> >Alias /errordocs
> /srv/www/htdocs/review-board-evros/htdocs/errordocs
> > 
> >
> >
> > On Tue, Jan 20, 2009 at 12:20 PM, Christian Hammond 
> wrote:
> >>
> >> Hmm. If sounds like the site install went fine. Can you e-mail me the
> >> resulting Apache config and the HTML from any page on the site
> >> (something generic like the login page would do).
> >>
> >> It's probably either the site root setting, or Apache is looking in
> >> the wrong place for media files.
> >>
> >> Christian
> >>
> >>
> >> On 1/19/09, roshan pius  wrote:
> >>>
> >>> Hi
> >>>
> >>> 1.I'm not using a domain name as of now, running it directly with an
> >>> IP:(xxx.xxx.xxx.xxx).Will get a domain later. But i was running before
> >>> with direct IP.
> >>> 2.As is said, i was running the old reviewboard off the svn checkout
> >>> so i didn't have a rb-site installation so "rb-site upgrade" is not
> >>> possible.
> >>>
> >>> 3.It is using the same old database( i can see all the members as well
> >>> as the old review requests, just that the layout is messed).
> >>>
> >>> 4.The Symbolic links htdocs/media/ directory(seems to be ok):
> >>>
> >>> drwxrwxrwx 3 www-data www-data 4096 Jan 19 20:05 .
> >>> drwxrwxrwx 3 www-data www-data 4096 Jan 19 20:05 ..
> >>> lrwxrwxrwx 1 www-data www-data  101 Jan 19 20:05 admin ->
> >>>
> /usr/local/lib/python2.6/site-packages/ReviewBoard-1.0alpha1-py2.6.egg/reviewboard/htdocs/media/admin
> >>> lrwxrwxrwx 1 www-data www-data   80 Jan 19 20:05 djblets ->
> >>>
> /usr/local/lib/python2.6/site-packages/Djblets-0.5alpha1-py2.6.egg/djblets/media
> >>> lrwxrwxrwx 1 www-data www-data   98 Jan 19 20:05 rb ->
> >>>
> /usr/local/lib/python2.6/site-packages/ReviewBoard-1.0alpha1-py2.6.egg/reviewboard/htdocs/media/rb
> >>> drwxrwxrwx 3 www-data www-data 4096 Jan 19 20:05 uploaded
> >>>
> >>> 6. When i installed ReviewBoard i used "python setup.py install" and
> >>> then did rb-site /srv/www/htdocs/review-board.com
> >>>
> >>> 7.For some reason the easy_install had some issues while i was trying
> >>> yesterday, it was saying it was not able to. That is why i manually
> >>> downloaded the tar.gz files and installed using "python setup.py
> >>> install"
> >>>
> >>>
> >>>
> >>>
> >>>
> >>> On Tue, Jan 20, 2009 at 3:21 AM, Christian Hammond <
> chip...@chipx86.com>
> >>> wrote:
>  A few things I need to know first:
> 
>  1) Is your Review Board install using its own subdomain, or is it in a
>  directory off a domain?
> 
>  2) If it's in a directory off a domain, did you specify that directory
>  during the install?
> 
>  3) Is this using an existing database?
> 
>  4) Try running rb-site upgrade on the site again. Does that fix the
>  problem?
> 
>  5) What do the symlinks look like in your site's htdocs/media/
> directory?
>  Are they pointing to the right place?
> 
>  6) When you instal

Re: Reviewboard alpa

2009-01-20 Thread roshan pius

Hi ,

I've run into major issues with post-review as well now. it is not
able to post the reviews as well.
It keeps retrying and retrying but fails.

Thanks,
Roshan Pius


On Tue, Jan 20, 2009 at 12:27 PM, roshan pius
 wrote:
> 
>ServerName xxx.xxx.com
>DocumentRoot /srv/www/htdocs/review-board-evros/htdocs
>
># Error handlers
>ErrorDocument 500 /errordocs/500.html
>
># Serve django pages
>
>PythonPath
> "['/srv/www/htdocs/review-board-evros/conf'] + sys.path"
>SetEnv DJANGO_SETTINGS_MODULE reviewboard.settings
>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-board-evros
>
>
># Serve static media without running it through mod_python
># (overrides the above)
>
>SetHandler None
>
>
>SetHandler None
>
>
># Alias static media requests to filesystem
>Alias /media /srv/www/htdocs/review-board-evros/htdocs/media
>Alias /errordocs /srv/www/htdocs/review-board-evros/htdocs/errordocs
> 
>
>
> On Tue, Jan 20, 2009 at 12:20 PM, Christian Hammond  
> wrote:
>>
>> Hmm. If sounds like the site install went fine. Can you e-mail me the
>> resulting Apache config and the HTML from any page on the site
>> (something generic like the login page would do).
>>
>> It's probably either the site root setting, or Apache is looking in
>> the wrong place for media files.
>>
>> Christian
>>
>>
>> On 1/19/09, roshan pius  wrote:
>>>
>>> Hi
>>>
>>> 1.I'm not using a domain name as of now, running it directly with an
>>> IP:(xxx.xxx.xxx.xxx).Will get a domain later. But i was running before
>>> with direct IP.
>>> 2.As is said, i was running the old reviewboard off the svn checkout
>>> so i didn't have a rb-site installation so "rb-site upgrade" is not
>>> possible.
>>>
>>> 3.It is using the same old database( i can see all the members as well
>>> as the old review requests, just that the layout is messed).
>>>
>>> 4.The Symbolic links htdocs/media/ directory(seems to be ok):
>>>
>>> drwxrwxrwx 3 www-data www-data 4096 Jan 19 20:05 .
>>> drwxrwxrwx 3 www-data www-data 4096 Jan 19 20:05 ..
>>> lrwxrwxrwx 1 www-data www-data  101 Jan 19 20:05 admin ->
>>> /usr/local/lib/python2.6/site-packages/ReviewBoard-1.0alpha1-py2.6.egg/reviewboard/htdocs/media/admin
>>> lrwxrwxrwx 1 www-data www-data   80 Jan 19 20:05 djblets ->
>>> /usr/local/lib/python2.6/site-packages/Djblets-0.5alpha1-py2.6.egg/djblets/media
>>> lrwxrwxrwx 1 www-data www-data   98 Jan 19 20:05 rb ->
>>> /usr/local/lib/python2.6/site-packages/ReviewBoard-1.0alpha1-py2.6.egg/reviewboard/htdocs/media/rb
>>> drwxrwxrwx 3 www-data www-data 4096 Jan 19 20:05 uploaded
>>>
>>> 6. When i installed ReviewBoard i used "python setup.py install" and
>>> then did rb-site /srv/www/htdocs/review-board.com
>>>
>>> 7.For some reason the easy_install had some issues while i was trying
>>> yesterday, it was saying it was not able to. That is why i manually
>>> downloaded the tar.gz files and installed using "python setup.py
>>> install"
>>>
>>>
>>>
>>>
>>>
>>> On Tue, Jan 20, 2009 at 3:21 AM, Christian Hammond 
>>> wrote:
 A few things I need to know first:

 1) Is your Review Board install using its own subdomain, or is it in a
 directory off a domain?

 2) If it's in a directory off a domain, did you specify that directory
 during the install?

 3) Is this using an existing database?

 4) Try running rb-site upgrade on the site again. Does that fix the
 problem?

 5) What do the symlinks look like in your site's htdocs/media/ directory?
 Are they pointing to the right place?

 6) When you installed Review Board, did you use "setup.py install"?

 7) What happens when you install via easy_install?

 Christian

 --
 Christian Hammond - chip...@chipx86.com
 VMware, Inc.


 On Mon, Jan 19, 2009 at 6:57 AM, roshanpius 
 wrote:
>
> Hi ,
>
> I installed the Reviewboard alpha tar.gz file today and installed an
> instance using rb-site tool as i have been running reviewboard out of
> my svn checkout till now.
>
> But when i restarted my apache server with the new conf file
> (generated from the rb-site install) and when i tried to login i found
> the page-media garbled. I mean the colors and the general page layout
> is messed up.
>
> I'm pretty sure it is a minor issue with some media path or
> permissions or something  like that.
>
> What exactly do i need to configure for the media?
>
> Please Help fast ,lot of people are using it and it is temporarily
> down because of this is

Re: Reviewboard alpa

2009-01-19 Thread roshan pius


ServerName xxx.xxx.com
DocumentRoot /srv/www/htdocs/review-board-evros/htdocs

# Error handlers
ErrorDocument 500 /errordocs/500.html

# Serve django pages

PythonPath
"['/srv/www/htdocs/review-board-evros/conf'] + sys.path"
SetEnv DJANGO_SETTINGS_MODULE reviewboard.settings
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-board-evros


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

SetHandler None


SetHandler None


# Alias static media requests to filesystem
Alias /media /srv/www/htdocs/review-board-evros/htdocs/media
Alias /errordocs /srv/www/htdocs/review-board-evros/htdocs/errordocs



On Tue, Jan 20, 2009 at 12:20 PM, Christian Hammond  wrote:
>
> Hmm. If sounds like the site install went fine. Can you e-mail me the
> resulting Apache config and the HTML from any page on the site
> (something generic like the login page would do).
>
> It's probably either the site root setting, or Apache is looking in
> the wrong place for media files.
>
> Christian
>
>
> On 1/19/09, roshan pius  wrote:
>>
>> Hi
>>
>> 1.I'm not using a domain name as of now, running it directly with an
>> IP:(xxx.xxx.xxx.xxx).Will get a domain later. But i was running before
>> with direct IP.
>> 2.As is said, i was running the old reviewboard off the svn checkout
>> so i didn't have a rb-site installation so "rb-site upgrade" is not
>> possible.
>>
>> 3.It is using the same old database( i can see all the members as well
>> as the old review requests, just that the layout is messed).
>>
>> 4.The Symbolic links htdocs/media/ directory(seems to be ok):
>>
>> drwxrwxrwx 3 www-data www-data 4096 Jan 19 20:05 .
>> drwxrwxrwx 3 www-data www-data 4096 Jan 19 20:05 ..
>> lrwxrwxrwx 1 www-data www-data  101 Jan 19 20:05 admin ->
>> /usr/local/lib/python2.6/site-packages/ReviewBoard-1.0alpha1-py2.6.egg/reviewboard/htdocs/media/admin
>> lrwxrwxrwx 1 www-data www-data   80 Jan 19 20:05 djblets ->
>> /usr/local/lib/python2.6/site-packages/Djblets-0.5alpha1-py2.6.egg/djblets/media
>> lrwxrwxrwx 1 www-data www-data   98 Jan 19 20:05 rb ->
>> /usr/local/lib/python2.6/site-packages/ReviewBoard-1.0alpha1-py2.6.egg/reviewboard/htdocs/media/rb
>> drwxrwxrwx 3 www-data www-data 4096 Jan 19 20:05 uploaded
>>
>> 6. When i installed ReviewBoard i used "python setup.py install" and
>> then did rb-site /srv/www/htdocs/review-board.com
>>
>> 7.For some reason the easy_install had some issues while i was trying
>> yesterday, it was saying it was not able to. That is why i manually
>> downloaded the tar.gz files and installed using "python setup.py
>> install"
>>
>>
>>
>>
>>
>> On Tue, Jan 20, 2009 at 3:21 AM, Christian Hammond 
>> wrote:
>>> A few things I need to know first:
>>>
>>> 1) Is your Review Board install using its own subdomain, or is it in a
>>> directory off a domain?
>>>
>>> 2) If it's in a directory off a domain, did you specify that directory
>>> during the install?
>>>
>>> 3) Is this using an existing database?
>>>
>>> 4) Try running rb-site upgrade on the site again. Does that fix the
>>> problem?
>>>
>>> 5) What do the symlinks look like in your site's htdocs/media/ directory?
>>> Are they pointing to the right place?
>>>
>>> 6) When you installed Review Board, did you use "setup.py install"?
>>>
>>> 7) What happens when you install via easy_install?
>>>
>>> Christian
>>>
>>> --
>>> Christian Hammond - chip...@chipx86.com
>>> VMware, Inc.
>>>
>>>
>>> On Mon, Jan 19, 2009 at 6:57 AM, roshanpius 
>>> wrote:

 Hi ,

 I installed the Reviewboard alpha tar.gz file today and installed an
 instance using rb-site tool as i have been running reviewboard out of
 my svn checkout till now.

 But when i restarted my apache server with the new conf file
 (generated from the rb-site install) and when i tried to login i found
 the page-media garbled. I mean the colors and the general page layout
 is messed up.

 I'm pretty sure it is a minor issue with some media path or
 permissions or something  like that.

 What exactly do i need to configure for the media?

 Please Help fast ,lot of people are using it and it is temporarily
 down because of this issue.

 Thanks,
 Roshan Pius

>>>
>>>
>>> >
>>>
>>
>> >
>>
>
>
> --
> --
> Christian Hammond - chip...@chipx86.com
> VMware, Inc.
>
> >
>

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"reviewboard" group.
To post to this group, send email to reviewboard@googlegroups.co

Re: Reviewboard alpa

2009-01-19 Thread Christian Hammond

Hmm. If sounds like the site install went fine. Can you e-mail me the
resulting Apache config and the HTML from any page on the site
(something generic like the login page would do).

It's probably either the site root setting, or Apache is looking in
the wrong place for media files.

Christian


On 1/19/09, roshan pius  wrote:
>
> Hi
>
> 1.I'm not using a domain name as of now, running it directly with an
> IP:(xxx.xxx.xxx.xxx).Will get a domain later. But i was running before
> with direct IP.
> 2.As is said, i was running the old reviewboard off the svn checkout
> so i didn't have a rb-site installation so "rb-site upgrade" is not
> possible.
>
> 3.It is using the same old database( i can see all the members as well
> as the old review requests, just that the layout is messed).
>
> 4.The Symbolic links htdocs/media/ directory(seems to be ok):
>
> drwxrwxrwx 3 www-data www-data 4096 Jan 19 20:05 .
> drwxrwxrwx 3 www-data www-data 4096 Jan 19 20:05 ..
> lrwxrwxrwx 1 www-data www-data  101 Jan 19 20:05 admin ->
> /usr/local/lib/python2.6/site-packages/ReviewBoard-1.0alpha1-py2.6.egg/reviewboard/htdocs/media/admin
> lrwxrwxrwx 1 www-data www-data   80 Jan 19 20:05 djblets ->
> /usr/local/lib/python2.6/site-packages/Djblets-0.5alpha1-py2.6.egg/djblets/media
> lrwxrwxrwx 1 www-data www-data   98 Jan 19 20:05 rb ->
> /usr/local/lib/python2.6/site-packages/ReviewBoard-1.0alpha1-py2.6.egg/reviewboard/htdocs/media/rb
> drwxrwxrwx 3 www-data www-data 4096 Jan 19 20:05 uploaded
>
> 6. When i installed ReviewBoard i used "python setup.py install" and
> then did rb-site /srv/www/htdocs/review-board.com
>
> 7.For some reason the easy_install had some issues while i was trying
> yesterday, it was saying it was not able to. That is why i manually
> downloaded the tar.gz files and installed using "python setup.py
> install"
>
>
>
>
>
> On Tue, Jan 20, 2009 at 3:21 AM, Christian Hammond 
> wrote:
>> A few things I need to know first:
>>
>> 1) Is your Review Board install using its own subdomain, or is it in a
>> directory off a domain?
>>
>> 2) If it's in a directory off a domain, did you specify that directory
>> during the install?
>>
>> 3) Is this using an existing database?
>>
>> 4) Try running rb-site upgrade on the site again. Does that fix the
>> problem?
>>
>> 5) What do the symlinks look like in your site's htdocs/media/ directory?
>> Are they pointing to the right place?
>>
>> 6) When you installed Review Board, did you use "setup.py install"?
>>
>> 7) What happens when you install via easy_install?
>>
>> Christian
>>
>> --
>> Christian Hammond - chip...@chipx86.com
>> VMware, Inc.
>>
>>
>> On Mon, Jan 19, 2009 at 6:57 AM, roshanpius 
>> wrote:
>>>
>>> Hi ,
>>>
>>> I installed the Reviewboard alpha tar.gz file today and installed an
>>> instance using rb-site tool as i have been running reviewboard out of
>>> my svn checkout till now.
>>>
>>> But when i restarted my apache server with the new conf file
>>> (generated from the rb-site install) and when i tried to login i found
>>> the page-media garbled. I mean the colors and the general page layout
>>> is messed up.
>>>
>>> I'm pretty sure it is a minor issue with some media path or
>>> permissions or something  like that.
>>>
>>> What exactly do i need to configure for the media?
>>>
>>> Please Help fast ,lot of people are using it and it is temporarily
>>> down because of this issue.
>>>
>>> Thanks,
>>> Roshan Pius
>>>
>>
>>
>> >
>>
>
> >
>


-- 
-- 
Christian Hammond - chip...@chipx86.com
VMware, Inc.

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"reviewboard" group.
To post to this group, send email to reviewboard@googlegroups.com
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: Reviewboard alpa

2009-01-19 Thread roshan pius

Hi

1.I'm not using a domain name as of now, running it directly with an
IP:(xxx.xxx.xxx.xxx).Will get a domain later. But i was running before
with direct IP.
2.As is said, i was running the old reviewboard off the svn checkout
so i didn't have a rb-site installation so "rb-site upgrade" is not
possible.

3.It is using the same old database( i can see all the members as well
as the old review requests, just that the layout is messed).

4.The Symbolic links htdocs/media/ directory(seems to be ok):

drwxrwxrwx 3 www-data www-data 4096 Jan 19 20:05 .
drwxrwxrwx 3 www-data www-data 4096 Jan 19 20:05 ..
lrwxrwxrwx 1 www-data www-data  101 Jan 19 20:05 admin ->
/usr/local/lib/python2.6/site-packages/ReviewBoard-1.0alpha1-py2.6.egg/reviewboard/htdocs/media/admin
lrwxrwxrwx 1 www-data www-data   80 Jan 19 20:05 djblets ->
/usr/local/lib/python2.6/site-packages/Djblets-0.5alpha1-py2.6.egg/djblets/media
lrwxrwxrwx 1 www-data www-data   98 Jan 19 20:05 rb ->
/usr/local/lib/python2.6/site-packages/ReviewBoard-1.0alpha1-py2.6.egg/reviewboard/htdocs/media/rb
drwxrwxrwx 3 www-data www-data 4096 Jan 19 20:05 uploaded

6. When i installed ReviewBoard i used "python setup.py install" and
then did rb-site /srv/www/htdocs/review-board.com

7.For some reason the easy_install had some issues while i was trying
yesterday, it was saying it was not able to. That is why i manually
downloaded the tar.gz files and installed using "python setup.py
install"





On Tue, Jan 20, 2009 at 3:21 AM, Christian Hammond  wrote:
> A few things I need to know first:
>
> 1) Is your Review Board install using its own subdomain, or is it in a
> directory off a domain?
>
> 2) If it's in a directory off a domain, did you specify that directory
> during the install?
>
> 3) Is this using an existing database?
>
> 4) Try running rb-site upgrade on the site again. Does that fix the problem?
>
> 5) What do the symlinks look like in your site's htdocs/media/ directory?
> Are they pointing to the right place?
>
> 6) When you installed Review Board, did you use "setup.py install"?
>
> 7) What happens when you install via easy_install?
>
> Christian
>
> --
> Christian Hammond - chip...@chipx86.com
> VMware, Inc.
>
>
> On Mon, Jan 19, 2009 at 6:57 AM, roshanpius 
> wrote:
>>
>> Hi ,
>>
>> I installed the Reviewboard alpha tar.gz file today and installed an
>> instance using rb-site tool as i have been running reviewboard out of
>> my svn checkout till now.
>>
>> But when i restarted my apache server with the new conf file
>> (generated from the rb-site install) and when i tried to login i found
>> the page-media garbled. I mean the colors and the general page layout
>> is messed up.
>>
>> I'm pretty sure it is a minor issue with some media path or
>> permissions or something  like that.
>>
>> What exactly do i need to configure for the media?
>>
>> Please Help fast ,lot of people are using it and it is temporarily
>> down because of this issue.
>>
>> Thanks,
>> Roshan Pius
>>
>
>
> >
>

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"reviewboard" group.
To post to this group, send email to reviewboard@googlegroups.com
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: Reviewboard alpa

2009-01-19 Thread Christian Hammond
A few things I need to know first:

1) Is your Review Board install using its own subdomain, or is it in a
directory off a domain?

2) If it's in a directory off a domain, did you specify that directory
during the install?

3) Is this using an existing database?

4) Try running rb-site upgrade on the site again. Does that fix the problem?

5) What do the symlinks look like in your site's htdocs/media/ directory?
Are they pointing to the right place?

6) When you installed Review Board, did you use "setup.py install"?

7) What happens when you install via easy_install?

Christian

-- 
Christian Hammond - chip...@chipx86.com
VMware, Inc.


On Mon, Jan 19, 2009 at 6:57 AM, roshanpius wrote:

>
> Hi ,
>
> I installed the Reviewboard alpha tar.gz file today and installed an
> instance using rb-site tool as i have been running reviewboard out of
> my svn checkout till now.
>
> But when i restarted my apache server with the new conf file
> (generated from the rb-site install) and when i tried to login i found
> the page-media garbled. I mean the colors and the general page layout
> is messed up.
>
> I'm pretty sure it is a minor issue with some media path or
> permissions or something  like that.
>
> What exactly do i need to configure for the media?
>
> Please Help fast ,lot of people are using it and it is temporarily
> down because of this issue.
>
> Thanks,
> Roshan Pius
> >
>

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"reviewboard" group.
To post to this group, send email to reviewboard@googlegroups.com
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
-~--~~~~--~~--~--~---



Reviewboard alpa

2009-01-19 Thread roshanpius

Hi ,

I installed the Reviewboard alpha tar.gz file today and installed an
instance using rb-site tool as i have been running reviewboard out of
my svn checkout till now.

But when i restarted my apache server with the new conf file
(generated from the rb-site install) and when i tried to login i found
the page-media garbled. I mean the colors and the general page layout
is messed up.

I'm pretty sure it is a minor issue with some media path or
permissions or something  like that.

What exactly do i need to configure for the media?

Please Help fast ,lot of people are using it and it is temporarily
down because of this issue.

Thanks,
Roshan Pius
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"reviewboard" group.
To post to this group, send email to reviewboard@googlegroups.com
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
-~--~~~~--~~--~--~---