Arjun, django-pipeline should not be trying to serve up static files if DEBUG is False. Is PRODUCTION defined in your settings_local.py file? Have you made any other changes to the deployment?
-David On Mon, Aug 11, 2014 at 12:04 PM, Arjun A.M. <[email protected]> wrote: > Hi Daid > > If I set it back to false its the same log as I provided first > > Thanks > Arjun > > > On Monday, 11 August 2014 12:02:43 UTC-7, David Trowbridge wrote: > >> OK, that's the problem (or at least, is getting in the way of the real >> problem). DEBUG is meant *only* for developer installs, and not production >> deployments. Set that back to False. >> >> -David >> >> >> On Mon, Aug 11, 2014 at 10:22 AM, Arjun A.M. <[email protected]> wrote: >> >>> >>> >>> >>> Here is the log after I set Debug as true >>> >>> /var/log/apache2# tail -f * >>> ==> access.log <== >>> >>> ==> access.log.1 <== >>> 127.0.0.1 - - [02/Aug/2014:14:14:30 -0700] "GET / HTTP/1.1" 200 485 "-" >>> "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:11.0) Gecko/20100101 Firefox/11.0" >>> 127.0.0.1 - - [02/Aug/2014:14:14:30 -0700] "GET /favicon.ico HTTP/1.1" >>> 404 499 "-" "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:11.0) Gecko/20100101 >>> Firefox/11.0" >>> 127.0.0.1 - - [02/Aug/2014:14:14:30 -0700] "GET /favicon.ico HTTP/1.1" >>> 404 499 "-" "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:11.0) Gecko/20100101 >>> Firefox/11.0" >>> 127.0.0.1 - - [02/Aug/2014:14:14:40 -0700] "GET / HTTP/1.1" 304 211 "-" >>> "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:11.0) Gecko/20100101 Firefox/11.0" >>> 127.0.0.1 - - [02/Aug/2014:14:17:43 -0700] "GET / HTTP/1.1" 304 211 "-" >>> "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:11.0) Gecko/20100101 Firefox/11.0" >>> 127.0.0.1 - - [02/Aug/2014:14:26:30 -0700] "GET / HTTP/1.1" 200 485 "-" >>> "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:11.0) Gecko/20100101 Firefox/11.0" >>> 127.0.0.1 - - [02/Aug/2014:14:26:30 -0700] "GET /favicon.ico HTTP/1.1" >>> 404 499 "-" "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:11.0) Gecko/20100101 >>> Firefox/11.0" >>> 127.0.0.1 - - [02/Aug/2014:14:26:31 -0700] "GET /favicon.ico HTTP/1.1" >>> 404 499 "-" "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:11.0) Gecko/20100101 >>> Firefox/11.0" >>> 127.0.0.1 - - [04/Aug/2014:09:40:05 -0700] "GET / HTTP/1.1" 304 211 "-" >>> "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:11.0) Gecko/20100101 Firefox/11.0" >>> >>> ==> error.log <== >>> [Mon Aug 11 17:17:50 2014] [error] return node.render(context) >>> [Mon Aug 11 17:17:50 2014] [error] File "/usr/local/lib/python2.7/ >>> dist-packages/Django-1.6.5-py2.7.egg/django/templatetags/static.py", >>> line 106, in render >>> [Mon Aug 11 17:17:50 2014] [error] url = self.url(context) >>> [Mon Aug 11 17:17:50 2014] [error] File "/usr/local/lib/python2.7/ >>> dist-packages/Django-1.6.5-py2.7.egg/django/contrib/ >>> staticfiles/templatetags/staticfiles.py", line 12, in url >>> [Mon Aug 11 17:17:50 2014] [error] return >>> staticfiles_storage.url(path) >>> [Mon Aug 11 17:17:50 2014] [error] File "/usr/local/lib/python2.7/ >>> dist-packages/Django-1.6.5-py2.7.egg/django/contrib/staticfiles/storage.py", >>> line 139, in url >>> [Mon Aug 11 17:17:50 2014] [error] hashed_name = >>> self.hashed_name(clean_name).replace('\\\\', '/') >>> [Mon Aug 11 17:17:50 2014] [error] File "/usr/local/lib/python2.7/ >>> dist-packages/Django-1.6.5-py2.7.egg/django/contrib/staticfiles/storage.py", >>> line 96, in hashed_name >>> [Mon Aug 11 17:17:50 2014] [error] (clean_name, self)) >>> [Mon Aug 11 17:17:50 2014] [error] ValueError: The file >>> 'rb/images/favicon_notify.ico' could not be found with >>> <pipeline.storage.PipelineCachedStorage >>> object at 0xa6b2328c>. >>> >>> ==> error.log.1 <== >>> >>> [Sat Aug 09 02:19:26 2014] [error] File "/usr/local/lib/python2.7/ >>> dist-packages/Django-1.6.5-py2.7.egg/django/contrib/ >>> staticfiles/templatetags/staticfiles.py", line 12, in url >>> [Sat Aug 09 02:19:26 2014] [error] return >>> staticfiles_storage.url(path) >>> [Sat Aug 09 02:19:26 2014] [error] File "/usr/local/lib/python2.7/ >>> dist-packages/Django-1.6.5-py2.7.egg/django/contrib/staticfiles/storage.py", >>> line 139, in url >>> [Sat Aug 09 02:19:26 2014] [error] hashed_name = >>> self.hashed_name(clean_name).replace('\\\\', '/') >>> [Sat Aug 09 02:19:26 2014] [error] File "/usr/local/lib/python2.7/ >>> dist-packages/Django-1.6.5-py2.7.egg/django/contrib/staticfiles/storage.py", >>> line 96, in hashed_name >>> [Sat Aug 09 02:19:26 2014] [error] (clean_name, self)) >>> [Sat Aug 09 02:19:26 2014] [error] ValueError: The file >>> 'rb/images/favicon_notify.ico' could not be found with >>> <pipeline.storage.PipelineCachedStorage >>> object at 0xa6b2328c>. >>> [Sun Aug 10 07:49:29 2014] [notice] SIGUSR1 received. Doing graceful >>> restart >>> apache2: Could not reliably determine the server's fully qualified >>> domain name, using 127.0.1.1 for ServerName >>> >>> Error opening file for reading: Permission denied >>> >>> ==> other_vhosts_access.log <== >>> reviews.example.com:80 127.0.0.1 - - [11/Aug/2014:17:17:40 +0000] "GET >>> / HTTP/1.1" 302 389 "-" "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:11.0) >>> Gecko/20100101 Firefox/11.0" >>> reviews.example.com:80 127.0.0.1 - - [11/Aug/2014:17:17:48 +0000] "GET >>> /r/ HTTP/1.1" 500 558 "-" "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:11.0) >>> Gecko/20100101 Firefox/11.0" >>> >>> ==> other_vhosts_access.log.1 <== >>> reviews.example.com:80 127.0.0.1 - - [09/Aug/2014:02:09:31 +0000] "GET >>> / HTTP/1.1" 302 389 "-" "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:11.0) >>> Gecko/20100101 Firefox/11.0" >>> reviews.example.com:80 127.0.0.1 - - [09/Aug/2014:02:09:31 +0000] "GET >>> /r/ HTTP/1.1" 500 558 "-" "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:11.0) >>> Gecko/20100101 Firefox/11.0" >>> reviews.example.com:80 127.0.0.1 - - [09/Aug/2014:02:09:39 +0000] "GET >>> /reviews/ HTTP/1.1" 500 558 "-" "Mozilla/5.0 (X11; Ubuntu; Linux i686; >>> rv:11.0) Gecko/20100101 Firefox/11.0" >>> reviews.example.com:80 127.0.0.1 - - [09/Aug/2014:02:11:06 +0000] "GET >>> /root HTTP/1.1" 500 558 "-" "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:11.0) >>> Gecko/20100101 Firefox/11.0" >>> reviews.example.com:80 127.0.0.1 - - [09/Aug/2014:02:11:18 +0000] "GET >>> / HTTP/1.1" 302 389 "-" "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:11.0) >>> Gecko/20100101 Firefox/11.0" >>> reviews.example.com:80 127.0.0.1 - - [09/Aug/2014:02:11:18 +0000] "GET >>> /r/ HTTP/1.1" 500 558 "-" "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:11.0) >>> Gecko/20100101 Firefox/11.0" >>> reviews.example.com:80 127.0.0.1 - - [09/Aug/2014:02:15:26 +0000] "GET >>> /r/ HTTP/1.1" 500 558 "-" "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:11.0) >>> Gecko/20100101 Firefox/11.0" >>> reviews.example.com:80 127.0.0.1 - - [09/Aug/2014:02:15:29 +0000] "GET >>> /r/ HTTP/1.1" 500 558 "-" "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:11.0) >>> Gecko/20100101 Firefox/11.0" >>> reviews.example.com:80 127.0.0.1 - - [09/Aug/2014:02:18:49 +0000] "GET >>> /r/ HTTP/1.1" 500 558 "-" "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:11.0) >>> Gecko/20100101 Firefox/11.0" >>> >>> reviews.example.com:80 127.0.0.1 - - [09/Aug/2014:02:19:25 +0000] "GET >>> /r/ HTTP/1.1" 500 558 "-" "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:11.0) >>> Gecko/20100101 Firefox/11.0" >>> >>> ==> ssl_access.log <== >>> >>> >>> >>> >>> >>> >>> >>> >>> >>> >>> >>> >>> >>> >>> >>> >>> ==> error.log <== >>> [Mon Aug 11 17:21:31 2014] [error] ERROR:root:Exception thrown for user >>> AnonymousUser at http://reviews.example.com/r/ >>> [Mon Aug 11 17:21:31 2014] [error] >>> [Mon Aug 11 17:21:31 2014] [error] The file >>> 'rb/images/favicon_notify.ico' could not be found with >>> <pipeline.storage.PipelineCachedStorage >>> object at 0xa6b2328c>. >>> [Mon Aug 11 17:21:31 2014] [error] Traceback (most recent call last): >>> [Mon Aug 11 17:21:31 2014] [error] File "/usr/local/lib/python2.7/ >>> dist-packages/Django-1.6.5-py2.7.egg/django/core/handlers/base.py", >>> line 112, in get_response >>> [Mon Aug 11 17:21:31 2014] [error] response = >>> wrapped_callback(request, *callback_args, **callback_kwargs) >>> [Mon Aug 11 17:21:31 2014] [error] File "/etc/djblets/reviewboard/ >>> reviewboard/accounts/decorators.py", line 23, in _check >>> [Mon Aug 11 17:21:31 2014] [error] return view_func(*args, **kwargs) >>> [Mon Aug 11 17:21:31 2014] [error] File "/etc/djblets/reviewboard/ >>> reviewboard/site/decorators.py", line 35, in _check >>> [Mon Aug 11 17:21:31 2014] [error] return view_func(request, >>> local_site=local_site, *args, **kwargs) >>> [Mon Aug 11 17:21:31 2014] [error] File "/etc/djblets/reviewboard/ >>> reviewboard/datagrids/views.py", line 38, in all_review_requests >>> [Mon Aug 11 17:21:31 2014] [error] return >>> datagrid.render_to_response(template_name) >>> [Mon Aug 11 17:21:31 2014] [error] File >>> "/etc/djblets/djblets/datagrid/grids.py", >>> line 1042, in render_to_response >>> [Mon Aug 11 17:21:31 2014] [error] return >>> render_to_response(template_name, Context(context)) >>> [Mon Aug 11 17:21:31 2014] [error] File "/usr/local/lib/python2.7/ >>> dist-packages/Django-1.6.5-py2.7.egg/django/shortcuts/__init__.py", >>> line 29, in render_to_response >>> [Mon Aug 11 17:21:31 2014] [error] return >>> HttpResponse(loader.render_to_string(*args, **kwargs), >>> **httpresponse_kwargs) >>> [Mon Aug 11 17:21:31 2014] [error] File "/usr/local/lib/python2.7/ >>> dist-packages/Django-1.6.5-py2.7.egg/django/template/loader.py", line >>> 164, in render_to_string >>> [Mon Aug 11 17:21:31 2014] [error] return >>> t.render(Context(dictionary)) >>> [Mon Aug 11 17:21:31 2014] [error] File "/usr/local/lib/python2.7/ >>> dist-packages/Django-1.6.5-py2.7.egg/django/template/base.py", line >>> 140, in render >>> [Mon Aug 11 17:21:31 2014] [error] return self._render(context) >>> [Mon Aug 11 17:21:31 2014] [error] File "/usr/local/lib/python2.7/ >>> dist-packages/Django-1.6.5-py2.7.egg/django/template/base.py", line >>> 134, in _render >>> [Mon Aug 11 17:21:31 2014] [error] return >>> self.nodelist.render(context) >>> [Mon Aug 11 17:21:31 2014] [error] File "/usr/local/lib/python2.7/ >>> dist-packages/Django-1.6.5-py2.7.egg/django/template/base.py", line >>> 840, in render >>> [Mon Aug 11 17:21:31 2014] [error] bit = self.render_node(node, >>> context) >>> [Mon Aug 11 17:21:31 2014] [error] File "/usr/local/lib/python2.7/ >>> dist-packages/Django-1.6.5-py2.7.egg/django/template/base.py", line >>> 854, in render_node >>> [Mon Aug 11 17:21:31 2014] [error] return node.render(context) >>> [Mon Aug 11 17:21:31 2014] [error] File "/usr/local/lib/python2.7/ >>> dist-packages/Django-1.6.5-py2.7.egg/django/template/loader_tags.py", >>> line 123, in render >>> [Mon Aug 11 17:21:31 2014] [error] return compiled_parent._render( >>> context) >>> [Mon Aug 11 17:21:31 2014] [error] File "/usr/local/lib/python2.7/ >>> dist-packages/Django-1.6.5-py2.7.egg/django/template/base.py", line >>> 134, in _render >>> [Mon Aug 11 17:21:31 2014] [error] return >>> self.nodelist.render(context) >>> [Mon Aug 11 17:21:31 2014] [error] File "/usr/local/lib/python2.7/ >>> dist-packages/Django-1.6.5-py2.7.egg/django/template/base.py", line >>> 840, in render >>> [Mon Aug 11 17:21:31 2014] [error] bit = self.render_node(node, >>> context) >>> [Mon Aug 11 17:21:31 2014] [error] File "/usr/local/lib/python2.7/ >>> dist-packages/Django-1.6.5-py2.7.egg/django/template/base.py", line >>> 854, in render_node >>> [Mon Aug 11 17:21:31 2014] [error] return node.render(context) >>> [Mon Aug 11 17:21:31 2014] [error] File "/usr/local/lib/python2.7/ >>> dist-packages/Django-1.6.5-py2.7.egg/django/template/loader_tags.py", >>> line 123, in render >>> [Mon Aug 11 17:21:31 2014] [error] return compiled_parent._render( >>> context) >>> [Mon Aug 11 17:21:31 2014] [error] File "/usr/local/lib/python2.7/ >>> dist-packages/Django-1.6.5-py2.7.egg/django/template/base.py", line >>> 134, in _render >>> [Mon Aug 11 17:21:31 2014] [error] return >>> self.nodelist.render(context) >>> [Mon Aug 11 17:21:31 2014] [error] File "/usr/local/lib/python2.7/ >>> dist-packages/Django-1.6.5-py2.7.egg/django/template/base.py", line >>> 840, in render >>> [Mon Aug 11 17:21:31 2014] [error] bit = self.render_node(node, >>> context) >>> [Mon Aug 11 17:21:31 2014] [error] File "/usr/local/lib/python2.7/ >>> dist-packages/Django-1.6.5-py2.7.egg/django/template/base.py", line >>> 854, in render_node >>> [Mon Aug 11 17:21:31 2014] [error] return node.render(context) >>> [Mon Aug 11 17:21:31 2014] [error] File "/usr/local/lib/python2.7/ >>> dist-packages/Django-1.6.5-py2.7.egg/django/templatetags/static.py", >>> line 106, in render >>> [Mon Aug 11 17:21:31 2014] [error] url = self.url(context) >>> [Mon Aug 11 17:21:31 2014] [error] File "/usr/local/lib/python2.7/ >>> dist-packages/Django-1.6.5-py2.7.egg/django/contrib/ >>> staticfiles/templatetags/staticfiles.py", line 12, in url >>> [Mon Aug 11 17:21:31 2014] [error] return >>> staticfiles_storage.url(path) >>> [Mon Aug 11 17:21:31 2014] [error] File "/usr/local/lib/python2.7/ >>> dist-packages/Django-1.6.5-py2.7.egg/django/contrib/staticfiles/storage.py", >>> line 139, in url >>> [Mon Aug 11 17:21:31 2014] [error] hashed_name = >>> self.hashed_name(clean_name).replace('\\\\', '/') >>> [Mon Aug 11 17:21:31 2014] [error] File "/usr/local/lib/python2.7/ >>> dist-packages/Django-1.6.5-py2.7.egg/django/contrib/staticfiles/storage.py", >>> line 96, in hashed_name >>> [Mon Aug 11 17:21:31 2014] [error] (clean_name, self)) >>> [Mon Aug 11 17:21:31 2014] [error] ValueError: The file >>> 'rb/images/favicon_notify.ico' could not be found with >>> <pipeline.storage.PipelineCachedStorage >>> object at 0xa6b2328c>. >>> >>> ==> other_vhosts_access.log <== >>> reviews.example.com:80 127.0.0.1 - - [11/Aug/2014:17:21:30 +0000] "GET >>> /r/ HTTP/1.1" 500 558 "-" "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:11.0) >>> Gecko/20100101 Firefox/11.0" >>> >>> >>> >>> >>> >>> >>> >>> >>> >>> >>> >>> >>> >>> >>> >>> >>> >>> >>> >>> >>> >>> >>> >>> On Friday, 8 August 2014 19:28:37 UTC-7, Arjun A.M. wrote: >>>> >>>> >>>> >>>> I get a 500 error when I try to open the reviewboard website after >>>> installation. Could someone please help me with this.Thanks in advance for >>>> the help >>>> >>>> The apache log looks like this >>>> >>>> Error opening file for reading: Permission denied >>>> Error opening file for reading: Permission denied >>>> [Fri Aug 08 19:19:09 2014] [notice] caught SIGTERM, shutting down >>>> [Fri Aug 08 19:19:10 2014] [warn] RSA server certificate CommonName >>>> (CN) `ubuntu' does NOT match server name!? >>>> [Fri Aug 08 19:19:10 2014] [warn] RSA server certificate CommonName >>>> (CN) `ubuntu' does NOT match server name!? >>>> [Fri Aug 08 19:19:10 2014] [notice] Apache/2.2.22 (Ubuntu) >>>> mod_ssl/2.2.22 OpenSSL/1.0.1 mod_wsgi/3.3 Python/2.7.3 configured -- >>>> resuming normal operations >>>> [Sat Aug 09 02:19:26 2014] [error] ERROR:root:Exception thrown for user >>>> AnonymousUser at http://reviews.example.com/r/ >>>> [Sat Aug 09 02:19:26 2014] [error] >>>> [Sat Aug 09 02:19:26 2014] [error] The file >>>> 'rb/images/favicon_notify.ico' could not be found with <pipeline.storage. >>>> PipelineCachedStorage object at 0xa6b2328c>. >>>> [Sat Aug 09 02:19:26 2014] [error] Traceback (most recent call last): >>>> [Sat Aug 09 02:19:26 2014] [error] File "/usr/local/lib/python2.7/ >>>> dist-packages/Django-1.6.5-py2.7.egg/django/core/handlers/base.py", >>>> line 112, in get_response >>>> [Sat Aug 09 02:19:26 2014] [error] response = >>>> wrapped_callback(request, *callback_args, **callback_kwargs) >>>> [Sat Aug 09 02:19:26 2014] [error] File "/etc/djblets/reviewboard/ >>>> reviewboard/accounts/decorators.py", line 23, in _check >>>> [Sat Aug 09 02:19:26 2014] [error] return view_func(*args, **kwargs) >>>> [Sat Aug 09 02:19:26 2014] [error] File "/etc/djblets/reviewboard/ >>>> reviewboard/site/decorators.py", line 35, in _check >>>> [Sat Aug 09 02:19:26 2014] [error] return view_func(request, >>>> local_site=local_site, *args, **kwargs) >>>> [Sat Aug 09 02:19:26 2014] [error] File "/etc/djblets/reviewboard/ >>>> reviewboard/datagrids/views.py", line 38, in all_review_requests >>>> [Sat Aug 09 02:19:26 2014] [error] return >>>> datagrid.render_to_response(template_name) >>>> [Sat Aug 09 02:19:26 2014] [error] File "/etc/djblets/djblets/ >>>> datagrid/grids.py", line 1042, in render_to_response >>>> [Sat Aug 09 02:19:26 2014] [error] return >>>> render_to_response(template_name, Context(context)) >>>> [Sat Aug 09 02:19:26 2014] [error] File "/usr/local/lib/python2.7/ >>>> dist-packages/Django-1.6.5-py2.7.egg/django/shortcuts/__init__.py", >>>> line 29, in render_to_response >>>> [Sat Aug 09 02:19:26 2014] [error] return >>>> HttpResponse(loader.render_to_string(*args, **kwargs), >>>> **httpresponse_kwargs) >>>> [Sat Aug 09 02:19:26 2014] [error] File "/usr/local/lib/python2.7/ >>>> dist-packages/Django-1.6.5-py2.7.egg/django/template/loader.py", line >>>> 164, in render_to_string >>>> [Sat Aug 09 02:19:26 2014] [error] return >>>> t.render(Context(dictionary)) >>>> [Sat Aug 09 02:19:26 2014] [error] File "/usr/local/lib/python2.7/ >>>> dist-packages/Django-1.6.5-py2.7.egg/django/template/base.py", line >>>> 140, in render >>>> [Sat Aug 09 02:19:26 2014] [error] return self._render(context) >>>> [Sat Aug 09 02:19:26 2014] [error] File "/usr/local/lib/python2.7/ >>>> dist-packages/Django-1.6.5-py2.7.egg/django/template/base.py", line >>>> 134, in _render >>>> [Sat Aug 09 02:19:26 2014] [error] return >>>> self.nodelist.render(context) >>>> [Sat Aug 09 02:19:26 2014] [error] File "/usr/local/lib/python2.7/ >>>> dist-packages/Django-1.6.5-py2.7.egg/django/template/base.py", line >>>> 840, in render >>>> [Sat Aug 09 02:19:26 2014] [error] bit = self.render_node(node, >>>> context) >>>> [Sat Aug 09 02:19:26 2014] [error] File "/usr/local/lib/python2.7/ >>>> dist-packages/Django-1.6.5-py2.7.egg/django/template/base.py", line >>>> 854, in render_node >>>> [Sat Aug 09 02:19:26 2014] [error] return node.render(context) >>>> [Sat Aug 09 02:19:26 2014] [error] File "/usr/local/lib/python2.7/ >>>> dist-packages/Django-1.6.5-py2.7.egg/django/template/loader_tags.py", >>>> line 123, in render >>>> [Sat Aug 09 02:19:26 2014] [error] return compiled_parent._render( >>>> context) >>>> [Sat Aug 09 02:19:26 2014] [error] File "/usr/local/lib/python2.7/ >>>> dist-packages/Django-1.6.5-py2.7.egg/django/template/base.py", line >>>> 134, in _render >>>> [Sat Aug 09 02:19:26 2014] [error] return >>>> self.nodelist.render(context) >>>> [Sat Aug 09 02:19:26 2014] [error] File "/usr/local/lib/python2.7/ >>>> dist-packages/Django-1.6.5-py2.7.egg/django/template/base.py", line >>>> 840, in render >>>> [Sat Aug 09 02:19:26 2014] [error] bit = self.render_node(node, >>>> context) >>>> [Sat Aug 09 02:19:26 2014] [error] File "/usr/local/lib/python2.7/ >>>> dist-packages/Django-1.6.5-py2.7.egg/django/template/base.py", line >>>> 854, in render_node >>>> [Sat Aug 09 02:19:26 2014] [error] return node.render(context) >>>> [Sat Aug 09 02:19:26 2014] [error] File "/usr/local/lib/python2.7/ >>>> dist-packages/Django-1.6.5-py2.7.egg/django/template/loader_tags.py", >>>> line 123, in render >>>> [Sat Aug 09 02:19:26 2014] [error] return compiled_parent._render( >>>> context) >>>> [Sat Aug 09 02:19:26 2014] [error] File "/usr/local/lib/python2.7/ >>>> dist-packages/Django-1.6.5-py2.7.egg/django/template/base.py", line >>>> 134, in _render >>>> [Sat Aug 09 02:19:26 2014] [error] return >>>> self.nodelist.render(context) >>>> [Sat Aug 09 02:19:26 2014] [error] File "/usr/local/lib/python2.7/ >>>> dist-packages/Django-1.6.5-py2.7.egg/django/template/base.py", line >>>> 840, in render >>>> [Sat Aug 09 02:19:26 2014] [error] bit = self.render_node(node, >>>> context) >>>> [Sat Aug 09 02:19:26 2014] [error] File "/usr/local/lib/python2.7/ >>>> dist-packages/Django-1.6.5-py2.7.egg/django/template/base.py", line >>>> 854, in render_node >>>> [Sat Aug 09 02:19:26 2014] [error] return node.render(context) >>>> [Sat Aug 09 02:19:26 2014] [error] File "/usr/local/lib/python2.7/ >>>> dist-packages/Django-1.6.5-py2.7.egg/django/templatetags/static.py", >>>> line 106, in render >>>> [Sat Aug 09 02:19:26 2014] [error] url = self.url(context) >>>> [Sat Aug 09 02:19:26 2014] [error] File "/usr/local/lib/python2.7/ >>>> dist-packages/Django-1.6.5-py2.7.egg/django/contrib/staticfiles >>>> /templatetags/staticfiles.py", line 12, in url >>>> [Sat Aug 09 02:19:26 2014] [error] return >>>> staticfiles_storage.url(path) >>>> [Sat Aug 09 02:19:26 2014] [error] File "/usr/local/lib/python2.7/ >>>> dist-packages/Django-1.6.5-py2.7.egg/django/contrib/staticfiles/storage.py", >>>> line 139, in url >>>> [Sat Aug 09 02:19:26 2014] [error] hashed_name = >>>> self.hashed_name(clean_name).replace('\\\\', '/') >>>> [Sat Aug 09 02:19:26 2014] [error] File "/usr/local/lib/python2.7/ >>>> dist-packages/Django-1.6.5-py2.7.egg/django/contrib/staticfiles/storage.py", >>>> line 96, in hashed_name >>>> [Sat Aug 09 02:19:26 2014] [error] (clean_name, self)) >>>> [Sat Aug 09 02:19:26 2014] [error] ValueError: The file >>>> 'rb/images/favicon_notify.ico' could not be found with <pipeline.storage. >>>> PipelineCachedStorage object at 0xa6b2328c>. >>>> >>>> ==> other_vhosts_access.log <== >>>> reviews.example.com:80 127.0.0.1 - - [09/Aug/2014:02:19:25 +0000] "GET >>>> /r/ HTTP/1.1" 500 558 "-" "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:11.0) >>>> Gecko/20100101 Firefox/11.0" >>>> >>>> -- >>> 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 [email protected]. >>> >>> 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 [email protected]. > 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 [email protected]. For more options, visit https://groups.google.com/d/optout.
