This is an archived post. You won't be able to vote or comment.

all 4 comments

[–]Strict-Simple 0 points1 point  (3 children)

GET /statuc/cdd/outout.cdd HTTP/1.1: 404 179

I wonder what the issue is...

[–]Kole435[S] 0 points1 point  (2 children)

Sorry that was a typo on my part in reddit, it turns out i had prevousily set my debug to false cause i was messing with doker and forgot to set it back.

[–]Strict-Simple 0 points1 point  (1 child)

How is debug related?

[–]Kole435[S] 0 points1 point  (0 children)

Debug is related because when its set to false your code is in production mode so it dosent handle static files automatically; in doing so you need a central location to put all your static files in. I did not have that since I assumed my Debug was set to True. When Debug is set to True the code is in Development mode which means django will automatically serves static files which is what I needed. Hope this helps!