Changes between Version 64 and Version 65 of NewbieMistakes
- Timestamp:
- Jun 28, 2018, 8:48:05 AM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
NewbieMistakes
v64 v65 13 13 ==== Probable cause ==== 14 14 15 You might be missing the / at the end of the form {{{action}}}. If that's the case, the {{{CommonMiddleware}}} (check your {{{MIDDLEWARE_CLASSES}}} redirects to the exact name of the view - and that always includes a trailing slash. Because it does so by using the standard HTTP redirection through Location header, it can't pass on the POST data - and that's why it gets lost.15 You might be missing the / at the end of the form {{{action}}}. If that's the case, the {{{CommonMiddleware}}} (check your {{{MIDDLEWARE_CLASSES}}}) redirects to the exact name of the view - and that always includes a trailing slash. Because it does so by using the standard HTTP redirection through Location header, it can't pass on the POST data - and that's why it gets lost. 16 16 17 17 ==== Solution ====