Re: Why get "Server Error 500" instead of 404 template?

2017-12-11 Thread Chris Seberino
I didn't have logging enabled in my settings.py.

Problem solved.






 

>
>
>
> ---
> % more nginx.conf
>
> server {
> server_name ~^(www\.)?domainname\.(org|com)$;
> listen  80;
> return  301 https://domainname.org$request_uri;
> }
>
> server {
> server_name ~^(www\.)?domainname\.com$;
> listen  443 ssl http2;
> ssl_certificate /etc/letsencrypt/live/
> domainname.org/fullchain.pem;
> ssl_certificate_key /etc/letsencrypt/live/
> domainname.org/privkey.pem;
> return  301 https://domainname.org$request_uri;
> }
>
> server {
> server_name ~^(www\.)?domainname.org$;
> listen  443 ssl http2;
> ssl_certificate /etc/letsencrypt/live/
> domainname.org/fullchain.pem;
> ssl_certificate_key /etc/letsencrypt/live/
> domainname.org/privkey.pem;
> root/home/cs/Ws/domainname.org/nginx;
>
> location / {
> location /static {
> }
>
> include/etc/nginx/uwsgi_params;
> uwsgi_pass localhost:8000;
> }
> }
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/b51ffc57-ca28-412f-bcc7-1c4e4fba4522%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Why get "Server Error 500" instead of 404 template?

2017-12-11 Thread Chris Seberino


>
> For more information, you need to show us your nginx configuration and 
> your wsgi server configuration.
>
>
>
Thanks a million.  Here is what you asked for...


---
 % more wsgi.py 

import django.core.wsgi
import os

os.environ.setdefault("DJANGO_SETTINGS_MODULE", "settings")
application = django.core.wsgi.get_wsgi_application()


---
% more nginx.conf

server {
server_name ~^(www\.)?domainname\.(org|com)$;
listen  80;
return  301 https://domainname.org$request_uri;
}

server {
server_name ~^(www\.)?domainname\.com$;
listen  443 ssl http2;
ssl_certificate
 /etc/letsencrypt/live/domainname.org/fullchain.pem;
ssl_certificate_key 
/etc/letsencrypt/live/domainname.org/privkey.pem;
return  301 https://domainname.org$request_uri;
}

server {
server_name ~^(www\.)?domainname.org$;
listen  443 ssl http2;
ssl_certificate
 /etc/letsencrypt/live/domainname.org/fullchain.pem;
ssl_certificate_key 
/etc/letsencrypt/live/domainname.org/privkey.pem;
root/home/cs/Ws/domainname.org/nginx;

location / {
location /static {
}

include/etc/nginx/uwsgi_params;
uwsgi_pass localhost:8000;
}
}

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/45f769d1-4ee0-4662-abe2-fa55ad8bf485%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Why get "Server Error 500" instead of 404 template?

2017-12-11 Thread Antonis Christofides
Hello,

Usually when you get a mere "Server error 500" without it showing you the Debug
page though you have DEBUG=True, this means that the error occurs very early,
before Django has had the opportunity to run. In that case, the error should
have been logged in the gunicorn/uwsgi/whatever log, i.e. in whatever program it
is that runs Django.

For more information, you need to show us your nginx configuration and your wsgi
server configuration.

Regards,

Antonis

Antonis Christofides
http://djangodeployment.com


On 2017-12-10 18:42, Chris Seberino wrote:
> I cannot track down why 404 page isn't being used.  I can't get any help from
> syslog or Nginx log files.
> I tried adding DEBUG=True to settings.py and still no clues.
> I only get "Server Error 500".
>
> Here is settings.py
>
> TEMPLATES        = [{"BACKEND" :
>                         "django.template.backends.django.DjangoTemplates",
>                      "DIRS"    : [VIEWS.format(e) for e in APPS],
>                      "OPTIONS" :
>                         {"context_processors" :
>                          ["django.template.context_processors.debug",
>                           "django.template.context_processors.request"]}}]
> MIDDLEWARE       = ["django.middleware.security.SecurityMiddleware",
>                     "django.contrib.sessions.middleware.SessionMiddleware",
>                     "django.middleware.common.CommonMiddleware",
>                     "django.middleware.csrf.CsrfViewMiddleware",
>                     "django.contrib.auth.middleware.AuthenticationMiddleware",
>                     "django.contrib.messages.middleware.MessageMiddleware",
>                     "django.middleware.clickjacking.XFrameOptionsMiddleware"]
> WSGI_APPLICATION = "nginx.wsgi.application"
> INSTALLED_APPS   = APPS + ["django.contrib.admin",
>                            "django.contrib.auth",
>                            "django.contrib.contenttypes",
>                            "django.contrib.messages",
>                            "django.contrib.sessions",
>                            "django.contrib.staticfiles"]
> -- 
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com
> .
> To post to this group, send email to django-users@googlegroups.com
> .
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/977652c4-f86e-491c-a5af-ccbba38dc733%40googlegroups.com
> .
> For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/b01b12c2-91c4-086c-c290-bc6ad46727b4%40djangodeployment.com.
For more options, visit https://groups.google.com/d/optout.


Why get "Server Error 500" instead of 404 template?

2017-12-10 Thread Chris Seberino
I cannot track down why 404 page isn't being used.  I can't get any help 
from syslog or Nginx log files.
I tried adding DEBUG=True to settings.py and still no clues.
I only get "Server Error 500".

Here is settings.py

TEMPLATES= [{"BACKEND" :
"django.template.backends.django.DjangoTemplates",
 "DIRS": [VIEWS.format(e) for e in APPS],
 "OPTIONS" :
{"context_processors" :
 ["django.template.context_processors.debug",
  "django.template.context_processors.request"]}}]
MIDDLEWARE   = ["django.middleware.security.SecurityMiddleware",
"django.contrib.sessions.middleware.SessionMiddleware",
"django.middleware.common.CommonMiddleware",
"django.middleware.csrf.CsrfViewMiddleware",

"django.contrib.auth.middleware.AuthenticationMiddleware",
"django.contrib.messages.middleware.MessageMiddleware",

"django.middleware.clickjacking.XFrameOptionsMiddleware"]
WSGI_APPLICATION = "nginx.wsgi.application"
INSTALLED_APPS   = APPS + ["django.contrib.admin",
   "django.contrib.auth",
   "django.contrib.contenttypes",
   "django.contrib.messages",
   "django.contrib.sessions",
   "django.contrib.staticfiles"]

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/977652c4-f86e-491c-a5af-ccbba38dc733%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Getting internal server error 500 instead of 404, may be related with django-compressor?

2013-05-27 Thread Xavi
I'm using Django with Apache web server. If I put DEBUG=True Django serves 
404 debug errors without problem. But when I put DEBUG=False Apache is 
returning a 500 internal server error when it catch a 404 error. This 
causes Django to not serve my 404 template (/templates/404.html) and 
visitor see the apache internel error instead.

This is what I get in apache error log:

[Mon May 27 13:43:48 2013] [error] [client 10.48.245.115] mod_wsgi 
(pid=10629): Exception occurred processing WSGI script 
'/home/user/WEB/app.wsgi'.
[Mon May 27 13:43:48 2013] [error] [client 10.48.245.115] Traceback (most 
recent call last):
[Mon May 27 13:43:48 2013] [error] [client 10.48.245.115] File 
"/usr/local/lib/python2.7/dist-packages/django/core/handlers/wsgi.py", line 
241, in __call__
[Mon May 27 13:43:48 2013] [error] [client 10.48.245.115] response = 
self.get_response(request)
[Mon May 27 13:43:48 2013] [error] [client 10.48.245.115] File 
"/usr/local/lib/python2.7/dist-packages/django/core/handlers/base.py", line 
153, in get_response
[Mon May 27 13:43:48 2013] [error] [client 10.48.245.115] response = 
self.handle_uncaught_exception(request, resolver, sys.exc_info())
[Mon May 27 13:43:48 2013] [error] [client 10.48.245.115] File 
"/usr/local/lib/python2.7/dist-packages/django/core/handlers/base.py", line 
228, in handle_uncaught_exception
[Mon May 27 13:43:48 2013] [error] [client 10.48.245.115] return 
callback(request, **param_dict)
[Mon May 27 13:43:48 2013] [error] [client 10.48.245.115] File 
"/usr/local/lib/python2.7/dist-packages/django/utils/decorators.py", line 
91, in _wrapped_view
[Mon May 27 13:43:48 2013] [error] [client 10.48.245.115] response = 
view_func(request, *args, **kwargs)
[Mon May 27 13:43:48 2013] [error] [client 10.48.245.115] File 
"/usr/local/lib/python2.7/dist-packages/django/views/defaults.py", line 33, 
in server_error
[Mon May 27 13:43:48 2013] [error] [client 10.48.245.115] return 
http.HttpResponseServerError(t.render(Context({})))
[Mon May 27 13:43:48 2013] [error] [client 10.48.245.115] File 
"/usr/local/lib/python2.7/dist-packages/django/template/base.py", line 140, 
in render
[Mon May 27 13:43:48 2013] [error] [client 10.48.245.115] return 
self._render(context)
[Mon May 27 13:43:48 2013] [error] [client 10.48.245.115] File 
"/usr/local/lib/python2.7/dist-packages/django/template/base.py", line 134, 
in _render
[Mon May 27 13:43:48 2013] [error] [client 10.48.245.115] return 
self.nodelist.render(context)
[Mon May 27 13:43:48 2013] [error] [client 10.48.245.115] File 
"/usr/local/lib/python2.7/dist-packages/django/template/base.py", line 823, 
in render
[Mon May 27 13:43:48 2013] [error] [client 10.48.245.115] bit = 
self.render_node(node, context)
[Mon May 27 13:43:48 2013] [error] [client 10.48.245.115] File 
"/usr/local/lib/python2.7/dist-packages/django/template/base.py", line 837, 
in render_node
[Mon May 27 13:43:48 2013] [error] [client 10.48.245.115] return 
node.render(context)
[Mon May 27 13:43:48 2013] [error] [client 10.48.245.115] File 
"/usr/local/lib/python2.7/dist-packages/django/template/loader_tags.py", 
line 123, in render
[Mon May 27 13:43:48 2013] [error] [client 10.48.245.115] return 
compiled_parent._render(context)
[Mon May 27 13:43:48 2013] [error] [client 10.48.245.115] File 
"/usr/local/lib/python2.7/dist-packages/django/template/base.py", line 134, 
in _render
[Mon May 27 13:43:48 2013] [error] [client 10.48.245.115] return 
self.nodelist.render(context)
[Mon May 27 13:43:48 2013] [error] [client 10.48.245.115] File 
"/usr/local/lib/python2.7/dist-packages/django/template/base.py", line 823, 
in render
[Mon May 27 13:43:48 2013] [error] [client 10.48.245.115] bit = 
self.render_node(node, context)
[Mon May 27 13:43:48 2013] [error] [client 10.48.245.115] File 
"/usr/local/lib/python2.7/dist-packages/django/template/base.py", line 837, 
in render_node
[Mon May 27 13:43:48 2013] [error] [client 10.48.245.115] return 
node.render(context)
[Mon May 27 13:43:48 2013] [error] [client 10.48.245.115] File 
"/usr/local/lib/python2.7/dist-packages/django/template/loader_tags.py", 
line 62, in render
[Mon May 27 13:43:48 2013] [error] [client 10.48.245.115] result = 
block.nodelist.render(context)
[Mon May 27 13:43:48 2013] [error] [client 10.48.245.115] File 
"/usr/local/lib/python2.7/dist-packages/django/template/base.py", line 823, 
in render
[Mon May 27 13:43:48 2013] [error] [client 10.48.245.115] bit = 
self.render_node(node, context)
[Mon May 27 13:43:48 2013] [error] [client 10.48.245.115] File 
"/usr/local/lib/python2.7/dist-packages/django/template/base.py", line 837, 
in render_node
[Mon May 27 13:43:48 2013] [error] [client 10.48.245.115] return 
node.render(context)
[Mon May 27 13:43:48 2013] [error] [client 10.48.245.115] File 
"/usr/local/lib/python2.7/dist-packages/compressor/templatetags/compress.py", 
line 147, in render
[Mon May 27 13:43:48 2013] [error] [client 10.48.245.115] return 
self.render_compressed(context, self.kind, self.mode, 

Re: Error 500 instead of 404

2011-11-20 Thread Ricardo F. Teixeira
Solved (!) by creating those template files.
Thanks Tomek!
On Nov 20, 9:28 am, Tomek Paczkowski  wrote:
> If you dont have 404.html file, than Django will raise exception that
> 404.html is not found. Next, if you dont have 500.html your exception is
> generating new exception on lack of 500.html. Make sure you have both
> files. Eg:
>
> $ touch templates/{404,500}.html

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Error 500 instead of 404

2011-11-20 Thread Tomek Paczkowski
If you dont have 404.html file, than Django will raise exception that 
404.html is not found. Next, if you dont have 500.html your exception is 
generating new exception on lack of 500.html. Make sure you have both 
files. Eg:

$ touch templates/{404,500}.html

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/WcUacZ3x9nYJ.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Error 500 instead of 404

2011-11-20 Thread Nick Apostolakis

On 20/11/2011 07:56 πμ, Ricardo F. Teixeira wrote:

Hello everybody!

I'm having a strange error.
I already searched for this error and there's quite a lot of
discussion about it. But I didn't find a proper answer that fits me.
So... when I set DEBUG to True and access an invalid URL Django
returns me a 404 error page, but if I set DEBUG to False it gives me
an 500...

Firstly I thought it was something wrong with my project so I started
a new one, with only the following basics options.
I can assure you that I only edit those 3 files (views.py, urls.py and
settings.py).

In settings.py I only change from DEGUG=True to DEBUG=False.

ricardo@maggie:~/ola $ ls
__init__.py  __init__.pyc manage.pysettings.py  settings.pyc
urls.py  urls.pyc views.py views.pyc

ricardo@maggie:~/ola $ cat urls.py
from django.conf.urls.defaults import patterns, include, url

# Uncomment the next two lines to enable the admin:
# from django.contrib import admin
# admin.autodiscover()

urlpatterns = patterns('',
 # Examples:
 url(r'^$', 'ola.views.home', name='home'),
 # url(r'^ola/', include('ola.foo.urls')),

 # Uncomment the admin/doc line below to enable admin
documentation:
 # url(r'^admin/doc/', include('django.contrib.admindocs.urls')),

 # Uncomment the next line to enable the admin:
 # url(r'^admin/', include(admin.site.urls)),
)
ricardo@maggie:~/ola $ cat views.py
from django.http import HttpResponseNotFound

def home(request):
return HttpResponseNotFound()

ricardo@maggie:~/ola $ python manage.py runserver
Validating models...

0 errors found
Django version 1.3.1, using settings 'ola.settings'
Development server is running at http://127.0.0.1:8000/
Quit the server with CONTROL-C.
[19/Nov/2011 23:53:21] "GET / HTTP/1.1" 404 0
Traceback (most recent call last):
   File "/Library/Python/2.7/site-packages/django/core/servers/
basehttp.py", line 283, in run
 self.result = application(self.environ, self.start_response)
   File "/Library/Python/2.7/site-packages/django/core/handlers/
wsgi.py", line 272, in __call__
 response = self.get_response(request)
   File "/Library/Python/2.7/site-packages/django/core/handlers/
base.py", line 153, in get_response
 response = self.handle_uncaught_exception(request, resolver,
sys.exc_info())
   File "/Library/Python/2.7/site-packages/django/core/handlers/
base.py", line 218, in handle_uncaught_exception
 return callback(request, **param_dict)
   File "/Library/Python/2.7/site-packages/django/utils/decorators.py",
line 93, in _wrapped_view
 response = view_func(request, *args, **kwargs)
   File "/Library/Python/2.7/site-packages/django/views/defaults.py",
line 30, in server_error
 t = loader.get_template(template_name) # You need to create a
500.html template.
   File "/Library/Python/2.7/site-packages/django/template/loader.py",
line 157, in get_template
 template, origin = find_template(template_name)
   File "/Library/Python/2.7/site-packages/django/template/loader.py",
line 138, in find_template
 raise TemplateDoesNotExist(name)
TemplateDoesNotExist: 500.html

[19/Nov/2011 23:53:48] "GET /GIVE_ME_400 HTTP/1.1" 500 1314
Traceback (most recent call last):
   File "/Library/Python/2.7/site-packages/django/core/servers/
basehttp.py", line 283, in run
 self.result = application(self.environ, self.start_response)
   File "/Library/Python/2.7/site-packages/django/core/handlers/
wsgi.py", line 272, in __call__
 response = self.get_response(request)
   File "/Library/Python/2.7/site-packages/django/core/handlers/
base.py", line 153, in get_response
 response = self.handle_uncaught_exception(request, resolver,
sys.exc_info())
   File "/Library/Python/2.7/site-packages/django/core/handlers/
base.py", line 218, in handle_uncaught_exception
 return callback(request, **param_dict)
   File "/Library/Python/2.7/site-packages/django/utils/decorators.py",
line 93, in _wrapped_view
 response = view_func(request, *args, **kwargs)
   File "/Library/Python/2.7/site-packages/django/views/defaults.py",
line 30, in server_error
 t = loader.get_template(template_name) # You need to create a
500.html template.
   File "/Library/Python/2.7/site-packages/django/template/loader.py",
line 157, in get_template
 template, origin = find_template(template_name)
   File "/Library/Python/2.7/site-packages/django/template/loader.py",
line 138, in find_template
 raise TemplateDoesNotExist(name)
TemplateDoesNotExist: 500.html

Thank you for your time.

Best regards,

Ricardo F. Teixeira

   

If the template exists, then
it could easily be a directory or file permission error.
I have seen the same in my installation a number of times :)
Check out the paths and the permissions

--
 --
   Nick Apostolakis
  e-mail: nicka...@oncrete.gr
 Web Site: http://nick.oncrete.gr
 

Error 500 instead of 404

2011-11-19 Thread Ricardo F. Teixeira
Hello everybody!

I'm having a strange error.
I already searched for this error and there's quite a lot of
discussion about it. But I didn't find a proper answer that fits me.
So... when I set DEBUG to True and access an invalid URL Django
returns me a 404 error page, but if I set DEBUG to False it gives me
an 500...

Firstly I thought it was something wrong with my project so I started
a new one, with only the following basics options.
I can assure you that I only edit those 3 files (views.py, urls.py and
settings.py).

In settings.py I only change from DEGUG=True to DEBUG=False.

ricardo@maggie:~/ola $ ls
__init__.py  __init__.pyc manage.pysettings.py  settings.pyc
urls.py  urls.pyc views.py views.pyc

ricardo@maggie:~/ola $ cat urls.py
from django.conf.urls.defaults import patterns, include, url

# Uncomment the next two lines to enable the admin:
# from django.contrib import admin
# admin.autodiscover()

urlpatterns = patterns('',
# Examples:
url(r'^$', 'ola.views.home', name='home'),
# url(r'^ola/', include('ola.foo.urls')),

# Uncomment the admin/doc line below to enable admin
documentation:
# url(r'^admin/doc/', include('django.contrib.admindocs.urls')),

# Uncomment the next line to enable the admin:
# url(r'^admin/', include(admin.site.urls)),
)
ricardo@maggie:~/ola $ cat views.py
from django.http import HttpResponseNotFound

def home(request):
return HttpResponseNotFound()

ricardo@maggie:~/ola $ python manage.py runserver
Validating models...

0 errors found
Django version 1.3.1, using settings 'ola.settings'
Development server is running at http://127.0.0.1:8000/
Quit the server with CONTROL-C.
[19/Nov/2011 23:53:21] "GET / HTTP/1.1" 404 0
Traceback (most recent call last):
  File "/Library/Python/2.7/site-packages/django/core/servers/
basehttp.py", line 283, in run
self.result = application(self.environ, self.start_response)
  File "/Library/Python/2.7/site-packages/django/core/handlers/
wsgi.py", line 272, in __call__
response = self.get_response(request)
  File "/Library/Python/2.7/site-packages/django/core/handlers/
base.py", line 153, in get_response
response = self.handle_uncaught_exception(request, resolver,
sys.exc_info())
  File "/Library/Python/2.7/site-packages/django/core/handlers/
base.py", line 218, in handle_uncaught_exception
return callback(request, **param_dict)
  File "/Library/Python/2.7/site-packages/django/utils/decorators.py",
line 93, in _wrapped_view
response = view_func(request, *args, **kwargs)
  File "/Library/Python/2.7/site-packages/django/views/defaults.py",
line 30, in server_error
t = loader.get_template(template_name) # You need to create a
500.html template.
  File "/Library/Python/2.7/site-packages/django/template/loader.py",
line 157, in get_template
template, origin = find_template(template_name)
  File "/Library/Python/2.7/site-packages/django/template/loader.py",
line 138, in find_template
raise TemplateDoesNotExist(name)
TemplateDoesNotExist: 500.html

[19/Nov/2011 23:53:48] "GET /GIVE_ME_400 HTTP/1.1" 500 1314
Traceback (most recent call last):
  File "/Library/Python/2.7/site-packages/django/core/servers/
basehttp.py", line 283, in run
self.result = application(self.environ, self.start_response)
  File "/Library/Python/2.7/site-packages/django/core/handlers/
wsgi.py", line 272, in __call__
response = self.get_response(request)
  File "/Library/Python/2.7/site-packages/django/core/handlers/
base.py", line 153, in get_response
response = self.handle_uncaught_exception(request, resolver,
sys.exc_info())
  File "/Library/Python/2.7/site-packages/django/core/handlers/
base.py", line 218, in handle_uncaught_exception
return callback(request, **param_dict)
  File "/Library/Python/2.7/site-packages/django/utils/decorators.py",
line 93, in _wrapped_view
response = view_func(request, *args, **kwargs)
  File "/Library/Python/2.7/site-packages/django/views/defaults.py",
line 30, in server_error
t = loader.get_template(template_name) # You need to create a
500.html template.
  File "/Library/Python/2.7/site-packages/django/template/loader.py",
line 157, in get_template
template, origin = find_template(template_name)
  File "/Library/Python/2.7/site-packages/django/template/loader.py",
line 138, in find_template
raise TemplateDoesNotExist(name)
TemplateDoesNotExist: 500.html

Thank you for your time.

Best regards,

Ricardo F. Teixeira

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.