Hey,
@michael: yep, problem occurs only when using SSL and post.
Setted up a little test page to reproduce the problem -
https://personalitycores.com/test/
Setted up using the following:
Django and uwsgi handler as explained above
Debug: False
CSRF middleware deactivated
If you see the 500 cherokee page, it's working as supposed.
"No Data Received" means it does not work with your browser.
View:
def test(request):
if request.method == 'POST':
test = request.POST['test']
assert False
return render_to_response("bugtest.html")
Html:
<form action="/test/" method="post">
<p>Value 1: <input type="text" name="test"></p>
<input type="submit" name="" value="Submit">
</form>
Works on Firefox, Safari, Opera
Breaks on: Chrome 16
Is there a workaround using uwsgi?
Regards,
David
_______________________________________________
Cherokee mailing list
[email protected]
http://lists.octality.com/listinfo/cherokee