On Feb 20, 2016 1:58 PM, <setivo...@gmail.com> 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