Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8890773
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T22:34:44+00:00 2026-06-14T22:34:44+00:00

If i try to open a created url i get an 500 error. My

  • 0

If i try to open a created url i get an 500 error.

My procedure was:

First python manage.py startapp black

I added in project/settings.py under INSTALLED_APPS 'black',

I added in project/urls.py url(r'^test/', include('black.urls')),

Content of black/urls.py is:

from django.conf.urls import patterns, url
from black import views

urlpatterns = patterns('',
url(r'^$', views.index, name='index')
)

And content of black/views.py:

from django.http import HttpResponse

def index(request):
        return HttpResponse("SHOW ME: BLACK")

After all i synced the database.

I can’t see any error in apache-error-log and also not in my posted django files. What could cause this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T22:34:45+00:00Added an answer on June 14, 2026 at 10:34 pm

    I suggest you to take a look a the several handy ways to log errors with django.
    For production, you will want to configure your logging behavior.
    You can find an example here in the same docs.

    What I personally do in production is enabling email logging, it sends me an email each time there is a fatal error.

    Let’s see what it would look like for logging both by mail and in a file:

    settings.py

    LOGGING = {
        'version': 1,
        'disable_existing_loggers': False,
        'handlers': {
            'mail_admins': {
                'level': 'ERROR',
                'class': 'django.utils.log.AdminEmailHandler'
            },
            'logfile': {
                'class': 'logging.handlers.WatchedFileHandler',
                'filename': '/var/log/django/your_application.log'
            },
        },
        'loggers': {
            'django.request': {
                'handlers': ['mail_admins'],
                'level': 'ERROR',
                'propagate': True,
            },
            'django': {
                'handlers': ['logfile'],
                'level': 'ERROR',
                'propagate': False,
            },
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

When I try to open a project's CodeAnalysis page I get the error An
Whenever I try to open .pyc or .pyo files, I always get an error
XCode 4.31 crash when i try to open my project. I could open any
if a start python in a command prompt terminal and try to open some
I created a simple python project that serves up a couple of pages. I'm
I try create a map for open ~/.vimrc, but open the ~/.vimrc only when
I try open and play .wav files with NAudio lib. private OpenFileDialog openFileDialog =
I try to open a finder window which works fine but every time I
when I try to open a file for reading in my console application i
When I try to open a file in write mode with the following code:

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.