Loading docs/fastcgi.txt +2 −2 Original line number Diff line number Diff line Loading @@ -3,7 +3,7 @@ How to use Django with FastCGI ============================== Although the current preferred setup for running Django is Apache_ with `mod_python`_, many people use shared hosting, on which FastCGI_ is the only `mod_python`_, many people use shared hosting, on which FastCGI is the only viable option. In some setups, FastCGI also allows better security -- and, possibly, better performance -- than mod_python. Loading docs/request_response.txt +2 −1 Original line number Diff line number Diff line Loading @@ -49,7 +49,8 @@ All attributes except ``session`` should be considered read-only. It's possible that a request can come in via POST with an empty ``POST`` dictionary -- if, say, a form is requested via the POST HTTP method but does not include form data. Therefore, you shouldn't use ``if request.POST`` to check for use of the POST method; instead, check `method`_. to check for use of the POST method; instead, use ``if reuqest.method == "POST"`` (see above). Note: ``POST`` does *not* include file-upload information. See ``FILES``. Loading Loading
docs/fastcgi.txt +2 −2 Original line number Diff line number Diff line Loading @@ -3,7 +3,7 @@ How to use Django with FastCGI ============================== Although the current preferred setup for running Django is Apache_ with `mod_python`_, many people use shared hosting, on which FastCGI_ is the only `mod_python`_, many people use shared hosting, on which FastCGI is the only viable option. In some setups, FastCGI also allows better security -- and, possibly, better performance -- than mod_python. Loading
docs/request_response.txt +2 −1 Original line number Diff line number Diff line Loading @@ -49,7 +49,8 @@ All attributes except ``session`` should be considered read-only. It's possible that a request can come in via POST with an empty ``POST`` dictionary -- if, say, a form is requested via the POST HTTP method but does not include form data. Therefore, you shouldn't use ``if request.POST`` to check for use of the POST method; instead, check `method`_. to check for use of the POST method; instead, use ``if reuqest.method == "POST"`` (see above). Note: ``POST`` does *not* include file-upload information. See ``FILES``. Loading