[Fixed]-Count visitors on your site with django

1👍

✅

Seems like you forgot to add a comma:

INSTALLED_APPS = (
    'myapp' # this must be followed by a comma
    'hitcount'
)

Since you haven’t added a comma, python concatenates two strings ‘myapp’ and ‘hitcount’ into ‘myapphitcount’, so django can’t find such application.

Leave a comment