On Feb 20, 2016 1:58 PM, <[email protected]> wrote: > > I do not known - Why. > > Example page from website: http://eugenelysenkowebsite.pythonanywhere.com/en/contact_me/about_me/ > > Example from settings > ------------------------------- > import re > from .base import * > DEBUG = False > ALLOWED_HOSTS = ['eugenelysenkowebsite.pythonanywhere.com'] > .......................................................................................................... > > > > Errors > ----------------- > GET http://eugenelysenkowebsite.pythonanywhere.com/static/app_contact_me/img/about_me_1.e05b5c1fef3b.jpg 404 (Not Found) > eugenelysenkowebsite.pythonanywhere.com/:108 GET http://eugenelysenkowebsite.pythonanywhere.com/static/app_contact_me/img/about_me_2.dede4a0500ae.jpg 404 (Not Found) >
Have you finished the proper setup for serving static files? PythonAnywhere may have a different process for handling static files, you should check their documentation. You should also check the Django docs on serving static files. https://help.pythonanywhere.com/pages/DjangoStaticFiles/ https://docs.djangoproject.com/en/1.9/howto/static-files/ How are the URL's to the static files being generated? -James -- 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 [email protected]. To post to this group, send email to [email protected]. 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/CA%2Be%2BciW6ca7NXcOrATuPM0X9CLCPHmtqnLSy-WWgH3eaR7QP3Q%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.

