Re: Django + WSGI: no HTTP_COOKIE in environ

2018-07-21 Thread need_some_help
Thank you Melvyn for your time and response. Regardless of what I call the first parameter, shouldn't HTTP_COOKIE be in it? But yes, I am having some confusion about wsgi and django and maybe I am mixing tutorials/information I have found at different sources. I have had to reach out to other

Re: Django + WSGI: no HTTP_COOKIE in environ

2018-07-21 Thread need_some_help
Thank you Melvyn for your time and response. Regardless of what I call the first parameter, shouldn't HTTP_COOKIE be in it? I have had to reach out to other sources, perhaps the information I provided at the following link can help us figure out what I'm doing completely wrong:

Re: Django + WSGI: no HTTP_COOKIE in environ

2018-07-19 Thread need_some_help
Sorry for the delayed response. Yes, I understand that a cookie must be set/sent to the browser after the first request, and that generally you must send the cookie headers alone as I've had trouble on other platforms trying to send them along with other things. That being said, I need to

Connection refused by Unix socket file

2018-07-15 Thread need_some_help
Having some trouble linking up Django + uWSGI + NGINX If I run the Django development server, the page works perfectly. If I run with: uwsgi --http 0.0.0.0:8134 --wsgi-file /test/test_project/wsgi.py and access it at localhost:8134 the site works except the images are not being loaded. But if

Django + WSGI: no HTTP_COOKIE in environ

2018-07-10 Thread need_some_help
I've followed numerous examples, but the only one that does not return errors are the implementations of the two functions below. There doesn't seem to be an HTTP_COOKIE key in the environ. The request value only gets set with POST and GET. Think something is wrong with my setup, because none