Re: Review Board displays incorrectly

2015-01-12 Thread Justin Palmer
> 1) yum install memcached; systemctl start memcached

I did do this on CentOS 7. On CentOS 6, I even built 1.4.22 from source.

$ ps -ef | grep memcached
memcach+  1070 1  0 Jan05 ?00:00:19 /usr/bin/memcached -u 
memcached -p 11211 -m 64 -c 1024

> 2)... 3) setsebool...

I disabled SELinux, so this shouldn't matter.

> 4) ln -s apache-wsgi.conf...

On CentOS 6, there is no conf.modules.d directory. All conf.d files are 
included right after the LoadModule section. This means that "LoadModule 
wsgi_module" in conf.d/wsgi.conf may not happen before 
conf.d/reviewboard.conf. That's why I appended the include at the end. I 
did move "Include apache-wsgi.conf" to the line after "Include 
confd.d/*.conf". Review Board still doesn't display correctly.

I'm glad you were able to deploy from minimum CentOS 7. I wish I knew 
what's different about my deployment.



On Monday, January 12, 2015 at 9:11:30 AM UTC-6, Stephen Gallagher wrote:

>
>
>
> On Mon, 2015-01-12 at 07:02 -0800, Justin Palmer wrote: 
> > I installed CentOS 7 on a new VM, this time choosing "Development and 
> > Creative Workstation" along with several packages known to be 
> > required. This time, Review Board displays correctly. So I'm fairly 
> > confident there is a dependency problem of some sort. If I have time, 
> > I'm going to start comparing package lists. 
>
>
> Interesting, I just installed it from a minimal CentOS 7 installation 
> just now as well. I followed most of your steps as listed earlier except 
> for four additional ones. 
>
> 1) yum install memcached; systemctl start memcached 
> I don't know if you were using a memcached server on another machine, 
> but if you used the defaults (localhost:11211), then you need to add 
> this manually. Memcached isn't a strict dependency because it doesn't 
> need to be running on the local machine. In Ubuntu terms, we might call 
> this a "suggests" dependency, but we don't have those in Fedora. Only 
> strict deps at the moment. 
>
> 2) setsebool -P httpd_can_network_memcache on 
> Make sure SELinux allows apache to contact the local memcached server 
>
> 3) setsebool -P httpd_can_network_connect_db on 
> Make sure SELinux allows apache to contact the local postgresql server 
>
> 4) Instead of 
> echo "Include apache-wsgi.conf" >> httpd.conf 
> I instead did 
> ln -s \ 
> /var/lib/reviewboard/sites/reviewboard.c7.sgallagh.rht/conf/apache-wsgi.conf 
>
> /etc/httpd/conf.d/reviewboard-reviewboard.c7.sgallagh.rht.conf 
>
> This should be functionally identical, though it's *possible* that the 
> merge happens differently. 
>
>
> 2) and 3) are probably irrelevant since you said you weren't using 
> SELinux. My best guess is that your issues above were due to not having 
> a running memcached server. Everything is working fine for me. 
>
>
>

-- 
Get the Review Board Power Pack at http://www.reviewboard.org/powerpack/
---
Sign up for Review Board hosting at RBCommons: https://rbcommons.com/
---
Happy user? Let us know at http://www.reviewboard.org/users/
--- 
You received this message because you are subscribed to the Google Groups 
"reviewboard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to reviewboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Review Board displays incorrectly

2015-01-12 Thread Stephen Gallagher



On Mon, 2015-01-12 at 07:02 -0800, Justin Palmer wrote:
> I installed CentOS 7 on a new VM, this time choosing "Development and
> Creative Workstation" along with several packages known to be
> required. This time, Review Board displays correctly. So I'm fairly
> confident there is a dependency problem of some sort. If I have time,
> I'm going to start comparing package lists.


Interesting, I just installed it from a minimal CentOS 7 installation
just now as well. I followed most of your steps as listed earlier except
for four additional ones.

1) yum install memcached; systemctl start memcached
I don't know if you were using a memcached server on another machine,
but if you used the defaults (localhost:11211), then you need to add
this manually. Memcached isn't a strict dependency because it doesn't
need to be running on the local machine. In Ubuntu terms, we might call
this a "suggests" dependency, but we don't have those in Fedora. Only
strict deps at the moment.

2) setsebool -P httpd_can_network_memcache on
Make sure SELinux allows apache to contact the local memcached server

3) setsebool -P httpd_can_network_connect_db on
Make sure SELinux allows apache to contact the local postgresql server

4) Instead of 
echo "Include apache-wsgi.conf" >> httpd.conf
I instead did
ln -s \
/var/lib/reviewboard/sites/reviewboard.c7.sgallagh.rht/conf/apache-wsgi.conf 
/etc/httpd/conf.d/reviewboard-reviewboard.c7.sgallagh.rht.conf

This should be functionally identical, though it's *possible* that the
merge happens differently.


2) and 3) are probably irrelevant since you said you weren't using
SELinux. My best guess is that your issues above were due to not having
a running memcached server. Everything is working fine for me.


-- 
Get the Review Board Power Pack at http://www.reviewboard.org/powerpack/
---
Sign up for Review Board hosting at RBCommons: https://rbcommons.com/
---
Happy user? Let us know at http://www.reviewboard.org/users/
--- 
You received this message because you are subscribed to the Google Groups 
"reviewboard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to reviewboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Review Board displays incorrectly

2015-01-12 Thread Justin Palmer
I installed CentOS 7 on a new VM, this time choosing "Development and 
Creative Workstation" along with several packages known to be required. 
This time, Review Board displays correctly. So I'm fairly confident there 
is a dependency problem of some sort. If I have time, I'm going to start 
comparing package lists.


On Friday, January 9, 2015 at 11:43:52 AM UTC-6, Stephen Gallagher wrote:

>
>
>
> On Fri, 2015-01-09 at 09:09 -0800, Justin Palmer wrote: 
> > Yeah, I rebooted after. This was a fresh CentOS 7 minimal install. Do 
> > you test on a full install which might have more packages, Apache 
> > modules, python modules... 
>
> I usually test on a default install. I'll give a minimal install a shot 
> and see if I'm missing a dependency somewhere. 
>
>
>

-- 
Get the Review Board Power Pack at http://www.reviewboard.org/powerpack/
---
Sign up for Review Board hosting at RBCommons: https://rbcommons.com/
---
Happy user? Let us know at http://www.reviewboard.org/users/
--- 
You received this message because you are subscribed to the Google Groups 
"reviewboard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to reviewboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Review Board displays incorrectly

2015-01-09 Thread Stephen Gallagher



On Fri, 2015-01-09 at 09:09 -0800, Justin Palmer wrote:
> Yeah, I rebooted after. This was a fresh CentOS 7 minimal install. Do
> you test on a full install which might have more packages, Apache
> modules, python modules... 

I usually test on a default install. I'll give a minimal install a shot
and see if I'm missing a dependency somewhere.


-- 
Get the Review Board Power Pack at http://www.reviewboard.org/powerpack/
---
Sign up for Review Board hosting at RBCommons: https://rbcommons.com/
---
Happy user? Let us know at http://www.reviewboard.org/users/
--- 
You received this message because you are subscribed to the Google Groups 
"reviewboard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to reviewboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Review Board displays incorrectly

2015-01-09 Thread Justin Palmer
Yeah, I rebooted after. This was a fresh CentOS 7 minimal install. Do you 
test on a full install which might have more packages, Apache modules, 
python modules... 


On Friday, January 9, 2015 at 11:02:53 AM UTC-6, Stephen Gallagher wrote:

>
>
>
> On Fri, 2015-01-09 at 09:00 -0800, Justin Palmer wrote: 
> > I started with permissive, then just disabled altogether. SELinux is 
> > not the cause. 
> > 
> > 
> > $ grep SELINUX /etc/selinux/config 
> > SELINUX=disabled 
>
>
> Just to be clear, you used 'setenforce' or rebooted after changing that? 
> It doesn't take effect automatically. (SELinux is often the cause of 
> such problems, so I figured we should rule it out) 
>
>
>

-- 
Get the Review Board Power Pack at http://www.reviewboard.org/powerpack/
---
Sign up for Review Board hosting at RBCommons: https://rbcommons.com/
---
Happy user? Let us know at http://www.reviewboard.org/users/
--- 
You received this message because you are subscribed to the Google Groups 
"reviewboard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to reviewboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Review Board displays incorrectly

2015-01-09 Thread Stephen Gallagher



On Fri, 2015-01-09 at 09:00 -0800, Justin Palmer wrote:
> I started with permissive, then just disabled altogether. SELinux is
> not the cause.
> 
> 
> $ grep SELINUX /etc/selinux/config
> SELINUX=disabled


Just to be clear, you used 'setenforce' or rebooted after changing that?
It doesn't take effect automatically. (SELinux is often the cause of
such problems, so I figured we should rule it out)


-- 
Get the Review Board Power Pack at http://www.reviewboard.org/powerpack/
---
Sign up for Review Board hosting at RBCommons: https://rbcommons.com/
---
Happy user? Let us know at http://www.reviewboard.org/users/
--- 
You received this message because you are subscribed to the Google Groups 
"reviewboard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to reviewboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Review Board displays incorrectly

2015-01-09 Thread Justin Palmer
I started with permissive, then just disabled altogether. SELinux is not 
the cause.

$ grep SELINUX /etc/selinux/config
SELINUX=disabled


On Friday, January 9, 2015 at 10:34:41 AM UTC-6, Stephen Gallagher wrote:

>
>
>
> On Fri, 2015-01-09 at 07:32 -0800, Justin Palmer wrote: 
> > > "didn't work" 
> > 
> > 
> > Meaning that the same display problem occurred after first installing 
> > Review Board via Yum. 
> > 
> > 
> > > "isn't kept up to date" 
> > 
> > 
> > # cat /etc/redhat-release 
> > CentOS Linux release 6.0 (Final) 
> > # yum list ReviewBoard 
> > Available Packages 
> > ReviewBoard.noarch   1.7.27-1.el6 
> > epel 
> > 
>
> Ah, right. The problem with CentOS 6 is that a lot of the dependencies 
> in the distribution are old. I have been working on backporting 2.x to 
> that distribution, but it's slow going. I keep EPEL 7 up to date though. 
>
>
> > 
> > Installing via easy_install allowed me to pick up 2.0.12. 
> > 
> > 
> > > generally release updated versions into the epel-testing repository 
> > within 48 hours 
> > 
> > 
> > That's great! Thanks for this work. Native package management is 
> > definitely easier on users. 
> > 
>
> Yeah, that's my thought as well. 
>
> > 
> > > *should* be the preferred way to run Review Board on RHEL/CentOS 7 
> > 
> > 
> > I know that enterprise Linux distributions prefer not to change major 
> > versions, apis, etc. So while keeping up to date is a nice goal, you 
> > may hit resistance. I suppose that's when you introduce a number after 
> > the package name, e.g. ReviewBoard3. :-) 
> > 
>
> Well, this is more a matter of getting the dependencies packaged. Review 
> Board has a very good upgrade path and backwards-compatibility, so it's 
> definitely a candidate to update once I can get the dependencies lined 
> up properly. 
>
>
> > Christian stopped responding. I wonder if he ran out of ideas. Has 
> > anyone else deployed on RHEL/CentOS lately? How'd it go? 
> > 
> > 
>
> I've deployed it on RHEL 7 numerous times. The thing you might be 
> hitting is SELinux; right now we have no SELinux policy shipped with 
> Review Board, so it's possible that some of the content is getting 
> blocked. Can you try running 'sudo setenforce 0' and see if that clears 
> things up? 
>
> I'm working on making some changes on the Fedora side of things so that 
> if you deploy a site into /var/lib/reviewboard/sites, it will get all 
> the appropriate SELinux labels. This is not ready yet, but hopefully 
> within the next month. 
>
> > 
> > 
> > On Friday, January 9, 2015 at 9:00:33 AM UTC-6, Stephen Gallagher 
> > wrote: 
> > 
> > 
> > 
> > On Thu, 2015-01-08 at 17:41 -0800, Justin Palmer wrote: 
> > > I started with: 
> > > 
> > > 
> > > $ yum install httpd mod_wsgi postgresql-server ReviewBoard 
> > > $ service postgresql initdb 
> > > $ service postgresql start 
> > > $ createdb reviewboard 
> > > $ createuser -P 
> > > $ psql... grant all... 
> > > $ rb-site install... 
> > > $ chown -R... 
> > > $ echo "Include apache-wsgi.conf" >> httpd.conf 
> > > $ service httpd start 
> > > 
> > > 
> > > 
> > > 
> > > When this didn't work and I realized it isn't kept 
> > up-to-date, I went 
> > > the easy_install route. 
> > > 
> > 
> > Umm, what do you mean by "didn't work" and "isn't kept up to 
> > date"? 
> > 
> > I maintain the EPEL 7 packages for ReviewBoard and generally 
> > release 
> > updated versions into the epel-testing repository within 48 
> > hours of the 
> > upstream release (in the case of 2.0.12, it was within 12 
> > hours). 
> > 
> > I'd love to know what was not working, so I can fix it... This 
> > really 
> > *should* be the preferred way to run Review Board on 
> > RHEL/CentOS 7. 
> > 
> > -- 
> > Get the Review Board Power Pack at 
> > http://www.reviewboard.org/powerpack/ 
> > --- 
> > Sign up for Review Board hosting at RBCommons: https://rbcommons.com/ 
> > --- 
> > Happy user? Let us know at http://www.reviewboard.org/users/ 
> > --- 
> > You received this message because you are subscribed to the Google 
> > Groups "reviewboard" group. 
> > To unsubscribe from this group and stop receiving emails from it, send 
> > an email to reviewboard...@googlegroups.com . 
> > For more options, visit https://groups.google.com/d/optout. 
>
>
>

-- 
Get the Review Board Power Pack at http://www.reviewboard.org/powerpack/
---
Sign up for Review Board hosting at RBCommons: https://rbcommons.com/
---
Happy user? Let us know at http://www.reviewboard.org/users/
--- 
You received this message because you are subscribed to the Google Groups 
"reviewboard" group.
To unsubscribe from this group and stop receiving emails from i

Re: Review Board displays incorrectly

2015-01-09 Thread Stephen Gallagher



On Fri, 2015-01-09 at 07:32 -0800, Justin Palmer wrote:
> > "didn't work"
> 
> 
> Meaning that the same display problem occurred after first installing
> Review Board via Yum.
> 
> 
> > "isn't kept up to date"
> 
> 
> # cat /etc/redhat-release
> CentOS Linux release 6.0 (Final)
> # yum list ReviewBoard
> Available Packages
> ReviewBoard.noarch   1.7.27-1.el6
> epel
> 

Ah, right. The problem with CentOS 6 is that a lot of the dependencies
in the distribution are old. I have been working on backporting 2.x to
that distribution, but it's slow going. I keep EPEL 7 up to date though.


> 
> Installing via easy_install allowed me to pick up 2.0.12.
> 
> 
> > generally release updated versions into the epel-testing repository
> within 48 hours 
> 
> 
> That's great! Thanks for this work. Native package management is
> definitely easier on users.
> 

Yeah, that's my thought as well.

> 
> > *should* be the preferred way to run Review Board on RHEL/CentOS 7
> 
> 
> I know that enterprise Linux distributions prefer not to change major
> versions, apis, etc. So while keeping up to date is a nice goal, you
> may hit resistance. I suppose that's when you introduce a number after
> the package name, e.g. ReviewBoard3. :-)
> 

Well, this is more a matter of getting the dependencies packaged. Review
Board has a very good upgrade path and backwards-compatibility, so it's
definitely a candidate to update once I can get the dependencies lined
up properly.


> Christian stopped responding. I wonder if he ran out of ideas. Has
> anyone else deployed on RHEL/CentOS lately? How'd it go?
> 
> 

I've deployed it on RHEL 7 numerous times. The thing you might be
hitting is SELinux; right now we have no SELinux policy shipped with
Review Board, so it's possible that some of the content is getting
blocked. Can you try running 'sudo setenforce 0' and see if that clears
things up?

I'm working on making some changes on the Fedora side of things so that
if you deploy a site into /var/lib/reviewboard/sites, it will get all
the appropriate SELinux labels. This is not ready yet, but hopefully
within the next month.

> 
> 
> On Friday, January 9, 2015 at 9:00:33 AM UTC-6, Stephen Gallagher
> wrote:
> 
> 
> 
> On Thu, 2015-01-08 at 17:41 -0800, Justin Palmer wrote: 
> > I started with: 
> > 
> > 
> > $ yum install httpd mod_wsgi postgresql-server ReviewBoard 
> > $ service postgresql initdb 
> > $ service postgresql start 
> > $ createdb reviewboard 
> > $ createuser -P 
> > $ psql... grant all... 
> > $ rb-site install... 
> > $ chown -R... 
> > $ echo "Include apache-wsgi.conf" >> httpd.conf 
> > $ service httpd start 
> > 
> > 
> > 
> > 
> > When this didn't work and I realized it isn't kept
> up-to-date, I went 
> > the easy_install route. 
> > 
> 
> Umm, what do you mean by "didn't work" and "isn't kept up to
> date"? 
> 
> I maintain the EPEL 7 packages for ReviewBoard and generally
> release 
> updated versions into the epel-testing repository within 48
> hours of the 
> upstream release (in the case of 2.0.12, it was within 12
> hours). 
> 
> I'd love to know what was not working, so I can fix it... This
> really 
> *should* be the preferred way to run Review Board on
> RHEL/CentOS 7. 
> 
> -- 
> Get the Review Board Power Pack at
> http://www.reviewboard.org/powerpack/
> ---
> Sign up for Review Board hosting at RBCommons: https://rbcommons.com/
> ---
> Happy user? Let us know at http://www.reviewboard.org/users/
> --- 
> You received this message because you are subscribed to the Google
> Groups "reviewboard" group.
> To unsubscribe from this group and stop receiving emails from it, send
> an email to reviewboard+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.


-- 
Get the Review Board Power Pack at http://www.reviewboard.org/powerpack/
---
Sign up for Review Board hosting at RBCommons: https://rbcommons.com/
---
Happy user? Let us know at http://www.reviewboard.org/users/
--- 
You received this message because you are subscribed to the Google Groups 
"reviewboard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to reviewboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Review Board displays incorrectly

2015-01-09 Thread Justin Palmer
> "didn't work"

Meaning that the same display problem occurred after first installing 
Review Board via Yum.

> "isn't kept up to date"

# cat /etc/redhat-release
CentOS Linux release 6.0 (Final)
# yum list ReviewBoard
Available Packages
ReviewBoard.noarch   1.7.27-1.el6   
epel

Installing via easy_install allowed me to pick up 2.0.12.

> generally release updated versions into the epel-testing repository 
within 48 hours 

That's great! Thanks for this work. Native package management is definitely 
easier on users.

> *should* be the preferred way to run Review Board on RHEL/CentOS 7

I know that enterprise Linux distributions prefer not to change major 
versions, apis, etc. So while keeping up to date is a nice goal, you may 
hit resistance. I suppose that's when you introduce a number after the 
package name, e.g. ReviewBoard3. :-)

Christian stopped responding. I wonder if he ran out of ideas. Has anyone 
else deployed on RHEL/CentOS lately? How'd it go?



On Friday, January 9, 2015 at 9:00:33 AM UTC-6, Stephen Gallagher wrote:

>
>
>
> On Thu, 2015-01-08 at 17:41 -0800, Justin Palmer wrote: 
> > I started with: 
> > 
> > 
> > $ yum install httpd mod_wsgi postgresql-server ReviewBoard 
> > $ service postgresql initdb 
> > $ service postgresql start 
> > $ createdb reviewboard 
> > $ createuser -P 
> > $ psql... grant all... 
> > $ rb-site install... 
> > $ chown -R... 
> > $ echo "Include apache-wsgi.conf" >> httpd.conf 
> > $ service httpd start 
> > 
> > 
> > 
> > 
> > When this didn't work and I realized it isn't kept up-to-date, I went 
> > the easy_install route. 
> > 
>
> Umm, what do you mean by "didn't work" and "isn't kept up to date"? 
>
> I maintain the EPEL 7 packages for ReviewBoard and generally release 
> updated versions into the epel-testing repository within 48 hours of the 
> upstream release (in the case of 2.0.12, it was within 12 hours). 
>
> I'd love to know what was not working, so I can fix it... This really 
> *should* be the preferred way to run Review Board on RHEL/CentOS 7. 
>
>

-- 
Get the Review Board Power Pack at http://www.reviewboard.org/powerpack/
---
Sign up for Review Board hosting at RBCommons: https://rbcommons.com/
---
Happy user? Let us know at http://www.reviewboard.org/users/
--- 
You received this message because you are subscribed to the Google Groups 
"reviewboard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to reviewboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Review Board displays incorrectly

2015-01-09 Thread Stephen Gallagher



On Thu, 2015-01-08 at 17:41 -0800, Justin Palmer wrote:
> I started with:
> 
> 
> $ yum install httpd mod_wsgi postgresql-server ReviewBoard
> $ service postgresql initdb
> $ service postgresql start
> $ createdb reviewboard
> $ createuser -P
> $ psql... grant all...
> $ rb-site install...
> $ chown -R...
> $ echo "Include apache-wsgi.conf" >> httpd.conf
> $ service httpd start
> 
> 
> 
> 
> When this didn't work and I realized it isn't kept up-to-date, I went
> the easy_install route.
> 

Umm, what do you mean by "didn't work" and "isn't kept up to date"?

I maintain the EPEL 7 packages for ReviewBoard and generally release
updated versions into the epel-testing repository within 48 hours of the
upstream release (in the case of 2.0.12, it was within 12 hours).

I'd love to know what was not working, so I can fix it... This really
*should* be the preferred way to run Review Board on RHEL/CentOS 7.

-- 
Get the Review Board Power Pack at http://www.reviewboard.org/powerpack/
---
Sign up for Review Board hosting at RBCommons: https://rbcommons.com/
---
Happy user? Let us know at http://www.reviewboard.org/users/
--- 
You received this message because you are subscribed to the Google Groups 
"reviewboard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to reviewboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Review Board displays incorrectly

2015-01-08 Thread Justin Palmer
# grep DEBUG settings_local.py
DEBUG = False

syntax.css shows as:

.c, .com, /* Comment */
.cm, /* Comment.Multiline */
.c1 /* Comment.Single */
{ color: #C0; font-style: italic }
.err { border: 1px solid #FF } /* Error */



On Thursday, January 8, 2015 at 8:10:18 PM UTC-6, Christian Hammond wrote:

> Hmmm, it's just saying syntax.css? That's not correct. It should be a 
> minified file. 
>
> To check, do you have 'DEBUG = True' in settings_local.py? If so, make 
> sure that's removed and restart Apache. 
>
> Christian 
>
> --   
> Christian Hammond - chri...@beanbaginc.com
> Review Board - https://www.reviewboard.org   
> Beanbag, Inc. - https://www.beanbaginc.com 
>
> -Original Message- 
> From: Justin Palmer > 
> Reply: revie...@googlegroups.com   >> 
> Date: January 8, 2015 at 6:08:01 PM 
> To: revie...@googlegroups.com   >> 
> Cc: justinp...@gmail.com  >>, 
> chri...@beanbaginc.com  >> 
>
> Subject:  Re: Review Board displays incorrectly 
>
> > I do see /reviews/static/djblets/css/admin.min.bd9c954361a7.css in my 
> web 
> > browser. 
> >   
> > I also see /reviews/static/rb/css/syntax.css. 
> >   
> >   
> > On Thursday, January 8, 2015 at 7:57:58 PM UTC-6, Christian Hammond 
> wrote: 
> >   
> > > Okay, so that one matches. If you access that file in the web browser, 
> > > does it also work, or does it fail? 
> > > 
> > > If it works, then the problem is likely more specific to accessing the 
> > > Review Board stylesheets, in which case we should repeat the same 
> tests for 
> > > something in static/rb/css/. 
> > > 
> > > If it doesn't work, then it points to some Apache configuration issue, 
> or 
> > > a permissions issue. What that issue is is still unclear. 
> > > 
> > > Christian 
> > > 
> > > -- 
> > > Christian Hammond - chri...@beanbaginc.com   
> > > Review Board - https://www.reviewboard.org 
> > > Beanbag, Inc. - https://www.beanbaginc.com 
> > > 
> > > -Original Message- 
> > > From: Justin Palmer > 
> > > Reply: revie...@googlegroups.com > > >> 
> > > Date: January 8, 2015 at 5:53:58 PM 
> > > To: revie...@googlegroups.com > > >> 
> > > Cc: justinp...@gmail.com >>,   
> > > chri...@beanbaginc.com >>   
> > > 
> > > Subject: Re: Review Board displays incorrectly 
> > > 
> > > > $ head htdocs/static/djblets/css/admin.min.bd9c954361a7.css 
> > > > fieldset.hidden { 
> > > > display: none; 
> > > > } 
> > > > fieldset .description { 
> > > > margin: 10px; 
> > > > } 
> > > > fieldset .description p { 
> > > > margin: 0; 
> > > > padding: 0; 
> > > > } 
> > > > 
> > > > 
> > > > 
> > > > On Thursday, January 8, 2015 at 7:48:44 PM UTC-6, Christian Hammond 
> > > wrote: 
> > > > 
> > > > > Can you verify that static/djblets/css/admin.min.bd9c954361a7.css 
> > > exists 
> > > > > within /htdocs/ ? 
> > > > > 
> > > > > Christian 
> > > > > 
> > > > > 
> > > > > -- 
> > > > > Christian Hammond - chri...@beanbaginc.com 
> > > > > Review Board - https://www.reviewboard.org 
> > > > > Beanbag, Inc. - https://www.beanbaginc.com 
> > > > > 
> > > > > -Original Message- 
> > > > > From: Justin Palmer > 
> > > > > Reply: revie...@googlegroups.com > > >> 
> > > > > Date: January 8, 2015 at 5:46:50 PM 
> > > > > To: revie...@googlegroups.com > > >> 
> > > > > Cc: justinp...@gmail.com >>, 
> > > > > chri...@beanbaginc.com >> 
> > > > > 
> > > > > Subject: Re: Review Board displays incorrectly 
> > > > > 
> > > > > > The symlinks point to valid paths. I diffed the page source with 
> the 
> > > > > Review 
> > > > > > Board demo site and nothing looked bad. Here's an excerpt: 
> > > > > > 
> > > > > > 
> > > > > > 
> > > > > > 
> > > > > > 
> > > > > > > href="/reviews/static/admin/css/forms...css" /> 
> > > > > > > rel="st

Re: Review Board displays incorrectly

2015-01-08 Thread Christian Hammond
Hmmm, it's just saying syntax.css? That's not correct. It should be a minified 
file.

To check, do you have 'DEBUG = True' in settings_local.py? If so, make sure 
that's removed and restart Apache.

Christian

--  
Christian Hammond - christ...@beanbaginc.com  
Review Board - https://www.reviewboard.org  
Beanbag, Inc. - https://www.beanbaginc.com

-Original Message-
From: Justin Palmer 
Reply: reviewboard@googlegroups.com >
Date: January 8, 2015 at 6:08:01 PM
To: reviewboard@googlegroups.com >
Cc: justinpalme...@gmail.com >, 
christ...@beanbaginc.com >
Subject:  Re: Review Board displays incorrectly

> I do see /reviews/static/djblets/css/admin.min.bd9c954361a7.css in my web
> browser.
>  
> I also see /reviews/static/rb/css/syntax.css.
>  
>  
> On Thursday, January 8, 2015 at 7:57:58 PM UTC-6, Christian Hammond wrote:
>  
> > Okay, so that one matches. If you access that file in the web browser,
> > does it also work, or does it fail?
> >
> > If it works, then the problem is likely more specific to accessing the
> > Review Board stylesheets, in which case we should repeat the same tests for
> > something in static/rb/css/.
> >
> > If it doesn't work, then it points to some Apache configuration issue, or
> > a permissions issue. What that issue is is still unclear.
> >
> > Christian
> >
> > --
> > Christian Hammond - chri...@beanbaginc.com  
> > Review Board - https://www.reviewboard.org
> > Beanbag, Inc. - https://www.beanbaginc.com
> >
> > -Original Message-
> > From: Justin Palmer >
> > Reply: revie...@googlegroups.com > > >>
> > Date: January 8, 2015 at 5:53:58 PM
> > To: revie...@googlegroups.com > > >>
> > Cc: justinp...@gmail.com >>,  
> > chri...@beanbaginc.com >>  
> >
> > Subject: Re: Review Board displays incorrectly
> >
> > > $ head htdocs/static/djblets/css/admin.min.bd9c954361a7.css
> > > fieldset.hidden {
> > > display: none;
> > > }
> > > fieldset .description {
> > > margin: 10px;
> > > }
> > > fieldset .description p {
> > > margin: 0;
> > > padding: 0;
> > > }
> > >
> > >
> > >
> > > On Thursday, January 8, 2015 at 7:48:44 PM UTC-6, Christian Hammond
> > wrote:
> > >
> > > > Can you verify that static/djblets/css/admin.min.bd9c954361a7.css
> > exists
> > > > within /htdocs/ ?
> > > >
> > > > Christian
> > > >
> > > >
> > > > --
> > > > Christian Hammond - chri...@beanbaginc.com
> > > > Review Board - https://www.reviewboard.org
> > > > Beanbag, Inc. - https://www.beanbaginc.com
> > > >
> > > > -Original Message-
> > > > From: Justin Palmer >
> > > > Reply: revie...@googlegroups.com > > >>
> > > > Date: January 8, 2015 at 5:46:50 PM
> > > > To: revie...@googlegroups.com > > >>
> > > > Cc: justinp...@gmail.com >>,
> > > > chri...@beanbaginc.com >>
> > > >
> > > > Subject: Re: Review Board displays incorrectly
> > > >
> > > > > The symlinks point to valid paths. I diffed the page source with the
> > > > Review
> > > > > Board demo site and nothing looked bad. Here's an excerpt:
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > > > href="/reviews/static/admin/css/forms...css" />
> > > > > > rel="stylesheet" type="text/css" />
> > > > >
> > > > >
> > > > > On Thursday, January 8, 2015 at 7:33:21 PM UTC-6, Christian Hammond
> > > > wrote:
> > > > >
> > > > > > Thanks Justin,
> > > > > >
> > > > > > Can you also look at the source for the page and see what URLs
> > it's
> > > > trying
> > > > > > to use for, say, the .css files?
> > > > > >
> > > > > > Also, I trust that each of those symlinks are pointing to valid
> > paths?
> > > > > >
> > > > > > Christian
> > > > > >
> > > > > > --
> > > > > > Christian Hammond - chri...@beanbaginc.com
> > > > > > Review Board - https://www.reviewboard.org
> > > > > > Beanbag, Inc. - https://www.beanba

Re: Review Board displays incorrectly

2015-01-08 Thread Justin Palmer
I do see /reviews/static/djblets/css/admin.min.bd9c954361a7.css in my web 
browser.

I also see /reviews/static/rb/css/syntax.css.


On Thursday, January 8, 2015 at 7:57:58 PM UTC-6, Christian Hammond wrote:

> Okay, so that one matches. If you access that file in the web browser, 
> does it also work, or does it fail? 
>
> If it works, then the problem is likely more specific to accessing the 
> Review Board stylesheets, in which case we should repeat the same tests for 
> something in static/rb/css/. 
>
> If it doesn't work, then it points to some Apache configuration issue, or 
> a permissions issue. What that issue is is still unclear. 
>
> Christian 
>
> --   
> Christian Hammond - chri...@beanbaginc.com
> Review Board - https://www.reviewboard.org   
> Beanbag, Inc. - https://www.beanbaginc.com 
>
> -Original Message- 
> From: Justin Palmer > 
> Reply: revie...@googlegroups.com   >> 
> Date: January 8, 2015 at 5:53:58 PM 
> To: revie...@googlegroups.com   >> 
> Cc: justinp...@gmail.com  >>, 
> chri...@beanbaginc.com  >> 
>
> Subject:  Re: Review Board displays incorrectly 
>
> > $ head htdocs/static/djblets/css/admin.min.bd9c954361a7.css 
> > fieldset.hidden { 
> > display: none; 
> > } 
> > fieldset .description { 
> > margin: 10px; 
> > } 
> > fieldset .description p { 
> > margin: 0; 
> > padding: 0; 
> > } 
> >   
> >   
> >   
> > On Thursday, January 8, 2015 at 7:48:44 PM UTC-6, Christian Hammond 
> wrote: 
> >   
> > > Can you verify that static/djblets/css/admin.min.bd9c954361a7.css 
> exists 
> > > within /htdocs/ ? 
> > > 
> > > Christian 
> > > 
> > > 
> > > -- 
> > > Christian Hammond - chri...@beanbaginc.com   
> > > Review Board - https://www.reviewboard.org 
> > > Beanbag, Inc. - https://www.beanbaginc.com 
> > > 
> > > -Original Message- 
> > > From: Justin Palmer > 
> > > Reply: revie...@googlegroups.com > > >> 
> > > Date: January 8, 2015 at 5:46:50 PM 
> > > To: revie...@googlegroups.com > > >> 
> > > Cc: justinp...@gmail.com >>,   
> > > chri...@beanbaginc.com >>   
> > > 
> > > Subject: Re: Review Board displays incorrectly 
> > > 
> > > > The symlinks point to valid paths. I diffed the page source with the 
> > > Review 
> > > > Board demo site and nothing looked bad. Here's an excerpt: 
> > > > 
> > > > 
> > > > 
> > > > 
> > > > 
> > > > > href="/reviews/static/admin/css/forms...css" /> 
> > > > > rel="stylesheet" type="text/css" /> 
> > > > 
> > > > 
> > > > On Thursday, January 8, 2015 at 7:33:21 PM UTC-6, Christian Hammond 
> > > wrote: 
> > > > 
> > > > > Thanks Justin, 
> > > > > 
> > > > > Can you also look at the source for the page and see what URLs 
> it's 
> > > trying 
> > > > > to use for, say, the .css files? 
> > > > > 
> > > > > Also, I trust that each of those symlinks are pointing to valid 
> paths? 
> > > > > 
> > > > > Christian 
> > > > > 
> > > > > -- 
> > > > > Christian Hammond - chri...@beanbaginc.com 
> > > > > Review Board - https://www.reviewboard.org 
> > > > > Beanbag, Inc. - https://www.beanbaginc.com 
> > > > > 
> > > > > -Original Message- 
> > > > > From: Justin Palmer > 
> > > > > Reply: revie...@googlegroups.com > > >> 
> > > > > Date: January 8, 2015 at 5:19:41 PM 
> > > > > To: revie...@googlegroups.com > > >> 
> > > > > Cc: justinp...@gmail.com >>, 
> > > > > chri...@beanbaginc.com >> 
> > > > > 
> > > > > Subject: Re: Review Board displays incorrectly 
> > > > > 
> > > > > > I attached apache-wsgi.conf. I changed "IfModule mod_php5.c" to 
> > > > > "IfModule 
> > > > > > php5_module" to get security test to pass. 
> > > > > > 
> > > > > > # ls -l htdocs/static/ 
> > > > > > total 20 
> > > > > > lrwxrwxrwx 1 root root 93 Jan 8 19:35 admin -> 
> > > > > &

Re: Review Board displays incorrectly

2015-01-08 Thread Christian Hammond
Okay, so that one matches. If you access that file in the web browser, does it 
also work, or does it fail?

If it works, then the problem is likely more specific to accessing the Review 
Board stylesheets, in which case we should repeat the same tests for something 
in static/rb/css/.

If it doesn't work, then it points to some Apache configuration issue, or a 
permissions issue. What that issue is is still unclear.

Christian

--  
Christian Hammond - christ...@beanbaginc.com  
Review Board - https://www.reviewboard.org  
Beanbag, Inc. - https://www.beanbaginc.com

-Original Message-
From: Justin Palmer 
Reply: reviewboard@googlegroups.com >
Date: January 8, 2015 at 5:53:58 PM
To: reviewboard@googlegroups.com >
Cc: justinpalme...@gmail.com >, 
christ...@beanbaginc.com >
Subject:  Re: Review Board displays incorrectly

> $ head htdocs/static/djblets/css/admin.min.bd9c954361a7.css
> fieldset.hidden {
> display: none;
> }
> fieldset .description {
> margin: 10px;
> }
> fieldset .description p {
> margin: 0;
> padding: 0;
> }
>  
>  
>  
> On Thursday, January 8, 2015 at 7:48:44 PM UTC-6, Christian Hammond wrote:
>  
> > Can you verify that static/djblets/css/admin.min.bd9c954361a7.css exists
> > within /htdocs/ ?
> >
> > Christian
> >
> >
> > --
> > Christian Hammond - chri...@beanbaginc.com  
> > Review Board - https://www.reviewboard.org
> > Beanbag, Inc. - https://www.beanbaginc.com
> >
> > -Original Message-
> > From: Justin Palmer >
> > Reply: revie...@googlegroups.com > > >>
> > Date: January 8, 2015 at 5:46:50 PM
> > To: revie...@googlegroups.com > > >>
> > Cc: justinp...@gmail.com >>,  
> > chri...@beanbaginc.com >>  
> >
> > Subject: Re: Review Board displays incorrectly
> >
> > > The symlinks point to valid paths. I diffed the page source with the
> > Review
> > > Board demo site and nothing looked bad. Here's an excerpt:
> > >
> > >
> > >
> > >
> > >
> > > > href="/reviews/static/admin/css/forms...css" />
> > > > rel="stylesheet" type="text/css" />
> > >
> > >
> > > On Thursday, January 8, 2015 at 7:33:21 PM UTC-6, Christian Hammond
> > wrote:
> > >
> > > > Thanks Justin,
> > > >
> > > > Can you also look at the source for the page and see what URLs it's
> > trying
> > > > to use for, say, the .css files?
> > > >
> > > > Also, I trust that each of those symlinks are pointing to valid paths?
> > > >
> > > > Christian
> > > >
> > > > --
> > > > Christian Hammond - chri...@beanbaginc.com
> > > > Review Board - https://www.reviewboard.org
> > > > Beanbag, Inc. - https://www.beanbaginc.com
> > > >
> > > > -Original Message-
> > > > From: Justin Palmer >
> > > > Reply: revie...@googlegroups.com > > >>
> > > > Date: January 8, 2015 at 5:19:41 PM
> > > > To: revie...@googlegroups.com > > >>
> > > > Cc: justinp...@gmail.com >>,
> > > > chri...@beanbaginc.com >>
> > > >
> > > > Subject: Re: Review Board displays incorrectly
> > > >
> > > > > I attached apache-wsgi.conf. I changed "IfModule mod_php5.c" to
> > > > "IfModule
> > > > > php5_module" to get security test to pass.
> > > > >
> > > > > # ls -l htdocs/static/
> > > > > total 20
> > > > > lrwxrwxrwx 1 root root 93 Jan 8 19:35 admin ->
> > > > >
> > > >
> > /usr/lib/python2.6/site-packages/ReviewBoard-2.0.12-py2.6.egg/reviewboard/htdocs/static/admin
> >   
> >
> > > >
> > > > > lrwxrwxrwx 1 root root 87 Jan 8 19:35 djblets ->
> > > > >
> > > >
> > /usr/lib/python2.6/site-packages/Djblets-0.8.14-py2.6.egg/djblets/htdocs/static/djblets
> >   
> >
> > > >
> > > > > drwxr-xr-x 2 apache apache 4096 Jan 8 19:35 ext
> > > > > lrwxrwxrwx 1 root root 91 Jan 8 19:35 lib ->
> > > > >
> > > >
> > /usr/lib/python2.6/site-packages/ReviewBoard-2.0.12-py2.6.egg/reviewboard/htdocs/static/lib
> >   
> >
> > > >
> > > > > lrwxrwxrwx 1 root root 90 Jan 8 19:35 rb ->
> > > > >
> > > >
> > /usr/lib/python2.6/site-packages/R

Re: Review Board displays incorrectly

2015-01-08 Thread Justin Palmer
$ head htdocs/static/djblets/css/admin.min.bd9c954361a7.css
fieldset.hidden {
  display: none;
}
fieldset .description {
  margin: 10px;
}
fieldset .description p {
  margin: 0;
  padding: 0;
}



On Thursday, January 8, 2015 at 7:48:44 PM UTC-6, Christian Hammond wrote:

> Can you verify that static/djblets/css/admin.min.bd9c954361a7.css exists 
> within /htdocs/ ? 
>
> Christian 
>
>
> --   
> Christian Hammond - chri...@beanbaginc.com
> Review Board - https://www.reviewboard.org   
> Beanbag, Inc. - https://www.beanbaginc.com 
>
> -Original Message- 
> From: Justin Palmer > 
> Reply: revie...@googlegroups.com   >> 
> Date: January 8, 2015 at 5:46:50 PM 
> To: revie...@googlegroups.com   >> 
> Cc: justinp...@gmail.com  >>, 
> chri...@beanbaginc.com  >> 
>
> Subject:  Re: Review Board displays incorrectly 
>
> > The symlinks point to valid paths. I diffed the page source with the 
> Review 
> > Board demo site and nothing looked bad. Here's an excerpt: 
> >   
> >   
> >   
> >   
> >   
> > > href="/reviews/static/admin/css/forms...css" /> 
> > > rel="stylesheet" type="text/css" /> 
> >   
> >   
> > On Thursday, January 8, 2015 at 7:33:21 PM UTC-6, Christian Hammond 
> wrote: 
> >   
> > > Thanks Justin, 
> > > 
> > > Can you also look at the source for the page and see what URLs it's 
> trying 
> > > to use for, say, the .css files? 
> > > 
> > > Also, I trust that each of those symlinks are pointing to valid paths? 
> > > 
> > > Christian 
> > > 
> > > -- 
> > > Christian Hammond - chri...@beanbaginc.com   
> > > Review Board - https://www.reviewboard.org 
> > > Beanbag, Inc. - https://www.beanbaginc.com 
> > > 
> > > -Original Message- 
> > > From: Justin Palmer > 
> > > Reply: revie...@googlegroups.com > > >> 
> > > Date: January 8, 2015 at 5:19:41 PM 
> > > To: revie...@googlegroups.com > > >> 
> > > Cc: justinp...@gmail.com >>,   
> > > chri...@beanbaginc.com >>   
> > > 
> > > Subject: Re: Review Board displays incorrectly 
> > > 
> > > > I attached apache-wsgi.conf. I changed "IfModule mod_php5.c" to 
> > > "IfModule 
> > > > php5_module" to get security test to pass. 
> > > > 
> > > > # ls -l htdocs/static/ 
> > > > total 20 
> > > > lrwxrwxrwx 1 root root 93 Jan 8 19:35 admin -> 
> > > > 
> > > 
> /usr/lib/python2.6/site-packages/ReviewBoard-2.0.12-py2.6.egg/reviewboard/htdocs/static/admin
>  
>   
> > > 
> > > > lrwxrwxrwx 1 root root 87 Jan 8 19:35 djblets -> 
> > > > 
> > > 
> /usr/lib/python2.6/site-packages/Djblets-0.8.14-py2.6.egg/djblets/htdocs/static/djblets
>  
>   
> > > 
> > > > drwxr-xr-x 2 apache apache 4096 Jan 8 19:35 ext 
> > > > lrwxrwxrwx 1 root root 91 Jan 8 19:35 lib -> 
> > > > 
> > > 
> /usr/lib/python2.6/site-packages/ReviewBoard-2.0.12-py2.6.egg/reviewboard/htdocs/static/lib
>  
>   
> > > 
> > > > lrwxrwxrwx 1 root root 90 Jan 8 19:35 rb -> 
> > > > 
> > > 
> /usr/lib/python2.6/site-packages/ReviewBoard-2.0.12-py2.6.egg/reviewboard/htdocs/static/rb
>  
>   
> > > 
> > > > 
> > > > 
> > > > On Thursday, January 8, 2015 at 7:01:19 PM UTC-6, Christian Hammond 
> > > wrote: 
> > > > 
> > > > > Hi Justin, 
> > > > > 
> > > > > Can you provide a copy of your apache-wsgi.conf file, and a ls -l 
> of 
> > > > > /htdocs/static/ ? I'll take a look and see if anything looks 
> > > > > wrong. 
> > > > > 
> > > > > Christian 
> > > > > 
> > > > > -- 
> > > > > Christian Hammond - chri...@beanbaginc.com 
> > > > > Review Board - https://www.reviewboard.org 
> > > > > Beanbag, Inc. - https://www.beanbaginc.com 
> > > > > 
> > > > > -Original Message- 
> > > > > From: Justin Palmer > 
> > > > > Reply: revie...@googlegroups.com > > >> 
> > > > > Date: January 8, 2015 at 4:59:15 PM 
> > > > > To: revie...@googlegroups.com > > >> 
> > > > > Subject: Review Board displays incorrectly 
> > > >

Re: Review Board displays incorrectly

2015-01-08 Thread Christian Hammond
Can you verify that static/djblets/css/admin.min.bd9c954361a7.css exists within 
/htdocs/ ?

Christian


--  
Christian Hammond - christ...@beanbaginc.com  
Review Board - https://www.reviewboard.org  
Beanbag, Inc. - https://www.beanbaginc.com

-Original Message-
From: Justin Palmer 
Reply: reviewboard@googlegroups.com >
Date: January 8, 2015 at 5:46:50 PM
To: reviewboard@googlegroups.com >
Cc: justinpalme...@gmail.com >, 
christ...@beanbaginc.com >
Subject:  Re: Review Board displays incorrectly

> The symlinks point to valid paths. I diffed the page source with the Review
> Board demo site and nothing looked bad. Here's an excerpt:
>  
>  
>  
>  
>  
> > href="/reviews/static/admin/css/forms...css" />
> > rel="stylesheet" type="text/css" />
>  
>  
> On Thursday, January 8, 2015 at 7:33:21 PM UTC-6, Christian Hammond wrote:
>  
> > Thanks Justin,
> >
> > Can you also look at the source for the page and see what URLs it's trying
> > to use for, say, the .css files?
> >
> > Also, I trust that each of those symlinks are pointing to valid paths?
> >
> > Christian
> >
> > --
> > Christian Hammond - chri...@beanbaginc.com  
> > Review Board - https://www.reviewboard.org
> > Beanbag, Inc. - https://www.beanbaginc.com
> >
> > -Original Message-
> > From: Justin Palmer >
> > Reply: revie...@googlegroups.com > > >>
> > Date: January 8, 2015 at 5:19:41 PM
> > To: revie...@googlegroups.com > > >>
> > Cc: justinp...@gmail.com >>,  
> > chri...@beanbaginc.com >>  
> >
> > Subject: Re: Review Board displays incorrectly
> >
> > > I attached apache-wsgi.conf. I changed "IfModule mod_php5.c" to
> > "IfModule
> > > php5_module" to get security test to pass.
> > >
> > > # ls -l htdocs/static/
> > > total 20
> > > lrwxrwxrwx 1 root root 93 Jan 8 19:35 admin ->
> > >
> > /usr/lib/python2.6/site-packages/ReviewBoard-2.0.12-py2.6.egg/reviewboard/htdocs/static/admin
> >   
> >
> > > lrwxrwxrwx 1 root root 87 Jan 8 19:35 djblets ->
> > >
> > /usr/lib/python2.6/site-packages/Djblets-0.8.14-py2.6.egg/djblets/htdocs/static/djblets
> >   
> >
> > > drwxr-xr-x 2 apache apache 4096 Jan 8 19:35 ext
> > > lrwxrwxrwx 1 root root 91 Jan 8 19:35 lib ->
> > >
> > /usr/lib/python2.6/site-packages/ReviewBoard-2.0.12-py2.6.egg/reviewboard/htdocs/static/lib
> >   
> >
> > > lrwxrwxrwx 1 root root 90 Jan 8 19:35 rb ->
> > >
> > /usr/lib/python2.6/site-packages/ReviewBoard-2.0.12-py2.6.egg/reviewboard/htdocs/static/rb
> >   
> >
> > >
> > >
> > > On Thursday, January 8, 2015 at 7:01:19 PM UTC-6, Christian Hammond
> > wrote:
> > >
> > > > Hi Justin,
> > > >
> > > > Can you provide a copy of your apache-wsgi.conf file, and a ls -l of
> > > > /htdocs/static/ ? I'll take a look and see if anything looks
> > > > wrong.
> > > >
> > > > Christian
> > > >
> > > > --
> > > > Christian Hammond - chri...@beanbaginc.com
> > > > Review Board - https://www.reviewboard.org
> > > > Beanbag, Inc. - https://www.beanbaginc.com
> > > >
> > > > -Original Message-
> > > > From: Justin Palmer >
> > > > Reply: revie...@googlegroups.com > > >>
> > > > Date: January 8, 2015 at 4:59:15 PM
> > > > To: revie...@googlegroups.com > > >>
> > > > Subject: Review Board displays incorrectly
> > > >
> > > > > I've been wrestling with Review Board for a few days. I installed
> > 2.0.11
> > > > > and now 2.0.12 on CentOS (RHEL) 6.0 and on 7.0. In all cases, I used
> > > > Python
> > > > > setuptools, Apache, memcached, and PostgreSQL. After rb-site
> > install, I
> > > > > changed ownership of the designated directories and included
> > > > > apache-wsgi.conf. I attached a screenshot of what I see. Does anyone
> > > > know
> > > > > why the website does not appear correctly?
> > > > >
> > > > > --
> > > > > Get the Review Board Power Pack at
> > http://www.reviewboard.org/powerpack/
> > > > > ---
> > > > > Sign up for Review Board hosting at RBCommons:
> > https://rbcommons.com/
> > > > > ---
> >

Re: Review Board displays incorrectly

2015-01-08 Thread Justin Palmer
The symlinks point to valid paths. I diffed the page source with the Review 
Board demo site and nothing looked bad. Here's an excerpt:


 
  
  Logging Settings  | Administration| Review Board




On Thursday, January 8, 2015 at 7:33:21 PM UTC-6, Christian Hammond wrote:

> Thanks Justin, 
>
> Can you also look at the source for the page and see what URLs it's trying 
> to use for, say, the .css files? 
>
> Also, I trust that each of those symlinks are pointing to valid paths? 
>
> Christian 
>
> --   
> Christian Hammond - chri...@beanbaginc.com
> Review Board - https://www.reviewboard.org   
> Beanbag, Inc. - https://www.beanbaginc.com 
>
> -Original Message- 
> From: Justin Palmer > 
> Reply: revie...@googlegroups.com   >> 
> Date: January 8, 2015 at 5:19:41 PM 
> To: revie...@googlegroups.com   >> 
> Cc: justinp...@gmail.com  >>, 
> chri...@beanbaginc.com  >> 
>
> Subject:  Re: Review Board displays incorrectly 
>
> > I attached apache-wsgi.conf. I changed "IfModule mod_php5.c" to 
> "IfModule 
> > php5_module" to get security test to pass. 
> >   
> > # ls -l htdocs/static/ 
> > total 20 
> > lrwxrwxrwx 1 root root 93 Jan 8 19:35 admin -> 
> > 
> /usr/lib/python2.6/site-packages/ReviewBoard-2.0.12-py2.6.egg/reviewboard/htdocs/static/admin
>  
>   
> > lrwxrwxrwx 1 root root 87 Jan 8 19:35 djblets -> 
> > 
> /usr/lib/python2.6/site-packages/Djblets-0.8.14-py2.6.egg/djblets/htdocs/static/djblets
>  
>   
> > drwxr-xr-x 2 apache apache 4096 Jan 8 19:35 ext 
> > lrwxrwxrwx 1 root root 91 Jan 8 19:35 lib -> 
> > 
> /usr/lib/python2.6/site-packages/ReviewBoard-2.0.12-py2.6.egg/reviewboard/htdocs/static/lib
>  
>   
> > lrwxrwxrwx 1 root root 90 Jan 8 19:35 rb -> 
> > 
> /usr/lib/python2.6/site-packages/ReviewBoard-2.0.12-py2.6.egg/reviewboard/htdocs/static/rb
>  
>   
> >   
> >   
> > On Thursday, January 8, 2015 at 7:01:19 PM UTC-6, Christian Hammond 
> wrote: 
> >   
> > > Hi Justin, 
> > > 
> > > Can you provide a copy of your apache-wsgi.conf file, and a ls -l of 
> > > /htdocs/static/ ? I'll take a look and see if anything looks 
> > > wrong. 
> > > 
> > > Christian 
> > > 
> > > -- 
> > > Christian Hammond - chri...@beanbaginc.com   
> > > Review Board - https://www.reviewboard.org 
> > > Beanbag, Inc. - https://www.beanbaginc.com 
> > > 
> > > -Original Message- 
> > > From: Justin Palmer > 
> > > Reply: revie...@googlegroups.com > > >> 
> > > Date: January 8, 2015 at 4:59:15 PM 
> > > To: revie...@googlegroups.com > > >> 
> > > Subject: Review Board displays incorrectly 
> > > 
> > > > I've been wrestling with Review Board for a few days. I installed 
> 2.0.11 
> > > > and now 2.0.12 on CentOS (RHEL) 6.0 and on 7.0. In all cases, I used 
> > > Python 
> > > > setuptools, Apache, memcached, and PostgreSQL. After rb-site 
> install, I 
> > > > changed ownership of the designated directories and included 
> > > > apache-wsgi.conf. I attached a screenshot of what I see. Does anyone 
> > > know 
> > > > why the website does not appear correctly? 
> > > > 
> > > > -- 
> > > > Get the Review Board Power Pack at 
> http://www.reviewboard.org/powerpack/ 
> > > > --- 
> > > > Sign up for Review Board hosting at RBCommons: 
> https://rbcommons.com/ 
> > > > --- 
> > > > Happy user? Let us know at http://www.reviewboard.org/users/ 
> > > > --- 
> > > > You received this message because you are subscribed to the Google 
> > > Groups "reviewboard" 
> > > > group. 
> > > > To unsubscribe from this group and stop receiving emails from it, 
> send 
> > > an email to reviewboard...@googlegroups.com . 
> > > > For more options, visit https://groups.google.com/d/optout. 
> > > > 
> > > 
> > > 
> >   
> > -- 
> > Get the Review Board Power Pack at http://www.reviewboard.org/powerpack/ 
> > --- 
> > Sign up for Review Board hosting at RBCommons: https://rbcommons.com/ 
> > --- 
> > Happy user? Let us know at http://www.reviewboard.org/users/ 
> > --- 
> > You received this message because you are subscribed to the Google 
> Groups "reviewboard"   
> > group. 
> > To unsubscribe from this group and stop receiving emails from it, send 
> an email to reviewboard...@googlegroups.com .   
> > For more options, visit https://groups.google.com/d/optout. 
> >   
>
>

-- 
Get the Review Board Power Pack at http://www.reviewboard.org/powerpack/
---
Sign up for Review Board hosting at RBCommons: https://rbcommons.com/
---
Happy user? Let us know at http://www.reviewboard.org/users/
--- 
You received this message because you are subscribed to the Google Groups 
"reviewboard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to reviewboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Review Board displays incorrectly

2015-01-08 Thread Justin Palmer
I started with:

$ yum install httpd mod_wsgi postgresql-server ReviewBoard
$ service postgresql initdb
$ service postgresql start
$ createdb reviewboard
$ createuser -P
$ psql... grant all...
$ rb-site install...
$ chown -R...
$ echo "Include apache-wsgi.conf" >> httpd.conf
$ service httpd start


When this didn't work and I realized it isn't kept up-to-date, I went the 
easy_install route.

$ yum erase ReviewBoard psycopg2
$ yum install setuptools httpd-devel python-devel
$ easy_install -U setuptools
$ easy_install psycopg2
$ easy_install ReviewBoard

I dropped, recreated database, granted privileges, installed a new site, 
started Apache. Same result.


On Thursday, January 8, 2015 at 7:00:40 PM UTC-6, David Trowbridge wrote:

> Can you go into a little more detail about how you installed the Review 
> Board package itself?
>
> -David
> On Thu Jan 08 2015 at 4:59:15 PM Justin Palmer  > wrote:
>
>> I've been wrestling with Review Board for a few days. I installed 2.0.11 
>> and now 2.0.12 on CentOS (RHEL) 6.0 and on 7.0. In all cases, I used Python 
>> setuptools, Apache, memcached, and PostgreSQL. After rb-site install, I 
>> changed ownership of the designated directories and included 
>> apache-wsgi.conf. I attached a screenshot of what I see. Does anyone know 
>> why the website does not appear correctly?
>>
>> -- 
>> Get the Review Board Power Pack at http://www.reviewboard.org/powerpack/
>> ---
>> Sign up for Review Board hosting at RBCommons: https://rbcommons.com/
>> ---
>> Happy user? Let us know at http://www.reviewboard.org/users/
>> --- 
>> You received this message because you are subscribed to the Google Groups 
>> "reviewboard" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to reviewboard...@googlegroups.com .
>> For more options, visit https://groups.google.com/d/optout.
>>
>

-- 
Get the Review Board Power Pack at http://www.reviewboard.org/powerpack/
---
Sign up for Review Board hosting at RBCommons: https://rbcommons.com/
---
Happy user? Let us know at http://www.reviewboard.org/users/
--- 
You received this message because you are subscribed to the Google Groups 
"reviewboard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to reviewboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Review Board displays incorrectly

2015-01-08 Thread Christian Hammond
Thanks Justin,

Can you also look at the source for the page and see what URLs it's trying to 
use for, say, the .css files?

Also, I trust that each of those symlinks are pointing to valid paths?

Christian

--  
Christian Hammond - christ...@beanbaginc.com  
Review Board - https://www.reviewboard.org  
Beanbag, Inc. - https://www.beanbaginc.com

-Original Message-
From: Justin Palmer 
Reply: reviewboard@googlegroups.com >
Date: January 8, 2015 at 5:19:41 PM
To: reviewboard@googlegroups.com >
Cc: justinpalme...@gmail.com >, 
christ...@beanbaginc.com >
Subject:  Re: Review Board displays incorrectly

> I attached apache-wsgi.conf. I changed "IfModule mod_php5.c" to "IfModule
> php5_module" to get security test to pass.
>  
> # ls -l htdocs/static/
> total 20
> lrwxrwxrwx 1 root root 93 Jan 8 19:35 admin ->
> /usr/lib/python2.6/site-packages/ReviewBoard-2.0.12-py2.6.egg/reviewboard/htdocs/static/admin
>   
> lrwxrwxrwx 1 root root 87 Jan 8 19:35 djblets ->
> /usr/lib/python2.6/site-packages/Djblets-0.8.14-py2.6.egg/djblets/htdocs/static/djblets
>   
> drwxr-xr-x 2 apache apache 4096 Jan 8 19:35 ext
> lrwxrwxrwx 1 root root 91 Jan 8 19:35 lib ->
> /usr/lib/python2.6/site-packages/ReviewBoard-2.0.12-py2.6.egg/reviewboard/htdocs/static/lib
>   
> lrwxrwxrwx 1 root root 90 Jan 8 19:35 rb ->
> /usr/lib/python2.6/site-packages/ReviewBoard-2.0.12-py2.6.egg/reviewboard/htdocs/static/rb
>   
>  
>  
> On Thursday, January 8, 2015 at 7:01:19 PM UTC-6, Christian Hammond wrote:
>  
> > Hi Justin,
> >
> > Can you provide a copy of your apache-wsgi.conf file, and a ls -l of
> > /htdocs/static/ ? I'll take a look and see if anything looks
> > wrong.
> >
> > Christian
> >
> > --
> > Christian Hammond - chri...@beanbaginc.com  
> > Review Board - https://www.reviewboard.org
> > Beanbag, Inc. - https://www.beanbaginc.com
> >
> > -Original Message-
> > From: Justin Palmer >
> > Reply: revie...@googlegroups.com > > >>
> > Date: January 8, 2015 at 4:59:15 PM
> > To: revie...@googlegroups.com > > >>
> > Subject: Review Board displays incorrectly
> >
> > > I've been wrestling with Review Board for a few days. I installed 2.0.11
> > > and now 2.0.12 on CentOS (RHEL) 6.0 and on 7.0. In all cases, I used
> > Python
> > > setuptools, Apache, memcached, and PostgreSQL. After rb-site install, I
> > > changed ownership of the designated directories and included
> > > apache-wsgi.conf. I attached a screenshot of what I see. Does anyone
> > know
> > > why the website does not appear correctly?
> > >
> > > --
> > > Get the Review Board Power Pack at http://www.reviewboard.org/powerpack/
> > > ---
> > > Sign up for Review Board hosting at RBCommons: https://rbcommons.com/
> > > ---
> > > Happy user? Let us know at http://www.reviewboard.org/users/
> > > ---
> > > You received this message because you are subscribed to the Google
> > Groups "reviewboard"
> > > group.
> > > To unsubscribe from this group and stop receiving emails from it, send
> > an email to reviewboard...@googlegroups.com .
> > > For more options, visit https://groups.google.com/d/optout.
> > >
> >
> >
>  
> --
> Get the Review Board Power Pack at http://www.reviewboard.org/powerpack/
> ---
> Sign up for Review Board hosting at RBCommons: https://rbcommons.com/
> ---
> Happy user? Let us know at http://www.reviewboard.org/users/
> ---
> You received this message because you are subscribed to the Google Groups 
> "reviewboard"  
> group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to reviewboard+unsubscr...@googlegroups.com.  
> For more options, visit https://groups.google.com/d/optout.
>  

-- 
Get the Review Board Power Pack at http://www.reviewboard.org/powerpack/
---
Sign up for Review Board hosting at RBCommons: https://rbcommons.com/
---
Happy user? Let us know at http://www.reviewboard.org/users/
--- 
You received this message because you are subscribed to the Google Groups 
"reviewboard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to reviewboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Review Board displays incorrectly

2015-01-08 Thread Justin Palmer
I attached apache-wsgi.conf. I changed "IfModule mod_php5.c" to "IfModule 
php5_module" to get security test to pass.

# ls -l htdocs/static/
total 20
lrwxrwxrwx 1 root root   93 Jan  8 19:35 admin -> 
/usr/lib/python2.6/site-packages/ReviewBoard-2.0.12-py2.6.egg/reviewboard/htdocs/static/admin
lrwxrwxrwx 1 root root   87 Jan  8 19:35 djblets -> 
/usr/lib/python2.6/site-packages/Djblets-0.8.14-py2.6.egg/djblets/htdocs/static/djblets
drwxr-xr-x 2 apache apache 4096 Jan  8 19:35 ext
lrwxrwxrwx 1 root root   91 Jan  8 19:35 lib -> 
/usr/lib/python2.6/site-packages/ReviewBoard-2.0.12-py2.6.egg/reviewboard/htdocs/static/lib
lrwxrwxrwx 1 root root   90 Jan  8 19:35 rb -> 
/usr/lib/python2.6/site-packages/ReviewBoard-2.0.12-py2.6.egg/reviewboard/htdocs/static/rb


On Thursday, January 8, 2015 at 7:01:19 PM UTC-6, Christian Hammond wrote:

> Hi Justin, 
>
> Can you provide a copy of your apache-wsgi.conf file, and a ls -l of 
> /htdocs/static/ ? I'll take a look and see if anything looks 
> wrong. 
>
> Christian 
>
> --   
> Christian Hammond - chri...@beanbaginc.com
> Review Board - https://www.reviewboard.org   
> Beanbag, Inc. - https://www.beanbaginc.com 
>
> -Original Message- 
> From: Justin Palmer > 
> Reply: revie...@googlegroups.com   >> 
> Date: January 8, 2015 at 4:59:15 PM 
> To: revie...@googlegroups.com   >> 
> Subject:  Review Board displays incorrectly 
>
> > I've been wrestling with Review Board for a few days. I installed 2.0.11 
> > and now 2.0.12 on CentOS (RHEL) 6.0 and on 7.0. In all cases, I used 
> Python 
> > setuptools, Apache, memcached, and PostgreSQL. After rb-site install, I 
> > changed ownership of the designated directories and included 
> > apache-wsgi.conf. I attached a screenshot of what I see. Does anyone 
> know 
> > why the website does not appear correctly? 
> >   
> > -- 
> > Get the Review Board Power Pack at http://www.reviewboard.org/powerpack/ 
> > --- 
> > Sign up for Review Board hosting at RBCommons: https://rbcommons.com/ 
> > --- 
> > Happy user? Let us know at http://www.reviewboard.org/users/ 
> > --- 
> > You received this message because you are subscribed to the Google 
> Groups "reviewboard"   
> > group. 
> > To unsubscribe from this group and stop receiving emails from it, send 
> an email to reviewboard...@googlegroups.com .   
> > For more options, visit https://groups.google.com/d/optout. 
> >   
>
>

-- 
Get the Review Board Power Pack at http://www.reviewboard.org/powerpack/
---
Sign up for Review Board hosting at RBCommons: https://rbcommons.com/
---
Happy user? Let us know at http://www.reviewboard.org/users/
--- 
You received this message because you are subscribed to the Google Groups 
"reviewboard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to reviewboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

ServerName usryeftssvnd01.asg.com
DocumentRoot "/var/www/reviewboard/htdocs"

# Error handlers
ErrorDocument 500 /errordocs/500.html

WSGIPassAuthorization On
WSGIScriptAlias "/reviews" 
"/var/www/reviewboard/htdocs/reviewboard.wsgi/reviews"


AllowOverride All
Options -Indexes +FollowSymLinks
Allow from all


# Prevent the server from processing or allowing the rendering of
# certain file types.

SetHandler None
Options None

AddType text/plain .html .htm .shtml .php .php3 .php4 .php5 
.phps .asp
AddType text/plain .pl .py .fcgi .cgi .phtml .phtm .pht .jsp 
.sh .rb


php_flag engine off



# Alias static media requests to filesystem
Alias /reviews/media "/var/www/reviewboard/htdocs/media"
Alias /reviews/static "/var/www/reviewboard/htdocs/static"
Alias /reviews/errordocs "/var/www/reviewboard/htdocs/errordocs"
Alias /reviews/favicon.ico 
"/var/www/reviewboard/htdocs/static/rb/images/favicon.png"



Re: Review Board displays incorrectly

2015-01-08 Thread Christian Hammond
Hi Justin,

Can you provide a copy of your apache-wsgi.conf file, and a ls -l of 
/htdocs/static/ ? I'll take a look and see if anything looks wrong.

Christian

--  
Christian Hammond - christ...@beanbaginc.com  
Review Board - https://www.reviewboard.org  
Beanbag, Inc. - https://www.beanbaginc.com

-Original Message-
From: Justin Palmer 
Reply: reviewboard@googlegroups.com >
Date: January 8, 2015 at 4:59:15 PM
To: reviewboard@googlegroups.com >
Subject:  Review Board displays incorrectly

> I've been wrestling with Review Board for a few days. I installed 2.0.11
> and now 2.0.12 on CentOS (RHEL) 6.0 and on 7.0. In all cases, I used Python
> setuptools, Apache, memcached, and PostgreSQL. After rb-site install, I
> changed ownership of the designated directories and included
> apache-wsgi.conf. I attached a screenshot of what I see. Does anyone know
> why the website does not appear correctly?
>  
> --
> Get the Review Board Power Pack at http://www.reviewboard.org/powerpack/
> ---
> Sign up for Review Board hosting at RBCommons: https://rbcommons.com/
> ---
> Happy user? Let us know at http://www.reviewboard.org/users/
> ---
> You received this message because you are subscribed to the Google Groups 
> "reviewboard"  
> group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to reviewboard+unsubscr...@googlegroups.com.  
> For more options, visit https://groups.google.com/d/optout.
>  

-- 
Get the Review Board Power Pack at http://www.reviewboard.org/powerpack/
---
Sign up for Review Board hosting at RBCommons: https://rbcommons.com/
---
Happy user? Let us know at http://www.reviewboard.org/users/
--- 
You received this message because you are subscribed to the Google Groups 
"reviewboard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to reviewboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Review Board displays incorrectly

2015-01-08 Thread David Trowbridge
Can you go into a little more detail about how you installed the Review
Board package itself?

-David
On Thu Jan 08 2015 at 4:59:15 PM Justin Palmer 
wrote:

> I've been wrestling with Review Board for a few days. I installed 2.0.11
> and now 2.0.12 on CentOS (RHEL) 6.0 and on 7.0. In all cases, I used Python
> setuptools, Apache, memcached, and PostgreSQL. After rb-site install, I
> changed ownership of the designated directories and included
> apache-wsgi.conf. I attached a screenshot of what I see. Does anyone know
> why the website does not appear correctly?
>
> --
> Get the Review Board Power Pack at http://www.reviewboard.org/powerpack/
> ---
> Sign up for Review Board hosting at RBCommons: https://rbcommons.com/
> ---
> Happy user? Let us know at http://www.reviewboard.org/users/
> ---
> You received this message because you are subscribed to the Google Groups
> "reviewboard" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to reviewboard+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
Get the Review Board Power Pack at http://www.reviewboard.org/powerpack/
---
Sign up for Review Board hosting at RBCommons: https://rbcommons.com/
---
Happy user? Let us know at http://www.reviewboard.org/users/
--- 
You received this message because you are subscribed to the Google Groups 
"reviewboard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to reviewboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Review Board displays incorrectly

2015-01-08 Thread Justin Palmer
I've been wrestling with Review Board for a few days. I installed 2.0.11 
and now 2.0.12 on CentOS (RHEL) 6.0 and on 7.0. In all cases, I used Python 
setuptools, Apache, memcached, and PostgreSQL. After rb-site install, I 
changed ownership of the designated directories and included 
apache-wsgi.conf. I attached a screenshot of what I see. Does anyone know 
why the website does not appear correctly?

-- 
Get the Review Board Power Pack at http://www.reviewboard.org/powerpack/
---
Sign up for Review Board hosting at RBCommons: https://rbcommons.com/
---
Happy user? Let us know at http://www.reviewboard.org/users/
--- 
You received this message because you are subscribed to the Google Groups 
"reviewboard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to reviewboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.