The error you are seeking help with is happening on the site where you saw
the yellow error page. Please contact them directly.
So that is what I am doing here.
I also found this:
[https://code.djangoproject.com/ticket/19000#no2]
Anders Olesen
--
Ticket URL: <https://code.djangoproject.com/ticket/32087>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
* type: Bug => Cleanup/optimization
* easy: 0 => 1
* stage: Unreviewed => Accepted
Comment:
Thanks, using `https` should fix this issue:
{{{
diff --git a/django/views/templates/technical_500.html
b/django/views/templates/technical_500.html
index 57d07eb933..f0cadf03bd 100644
--- a/django/views/templates/technical_500.html
+++ b/django/views/templates/technical_500.html
@@ -278,7 +278,7 @@
{% endfor %}
</ul>
</div>
- <form action="http://dpaste.com/" name="pasteform" id="pasteform"
method="post">
+ <form action="https://dpaste.com/" name="pasteform" id="pasteform"
method="post">
{% if not is_email %}
<div id="pastebinTraceback" class="pastebin">
<input type="hidden" name="language" value="PythonConsole">
}}}
Would you like to prepare a patch?
--
Ticket URL: <https://code.djangoproject.com/ticket/32087#comment:1>
Comment (by nik258heda):
Replying to [comment:1 felixxm]:
> Thanks, using `https` should fix this issue:
> {{{
> diff --git a/django/views/templates/technical_500.html
b/django/views/templates/technical_500.html
> index 57d07eb933..f0cadf03bd 100644
> --- a/django/views/templates/technical_500.html
> +++ b/django/views/templates/technical_500.html
> @@ -278,7 +278,7 @@
> {% endfor %}
> </ul>
> </div>
> - <form action="http://dpaste.com/" name="pasteform" id="pasteform"
method="post">
> + <form action="https://dpaste.com/" name="pasteform" id="pasteform"
method="post">
> {% if not is_email %}
> <div id="pastebinTraceback" class="pastebin">
> <input type="hidden" name="language" value="PythonConsole">
> }}}
>
> Would you like to prepare a patch?
I am a first time contributor, this ticket has easy pickings tag on it,
Can I work on this?? And would need some help.
--
Ticket URL: <https://code.djangoproject.com/ticket/32087#comment:2>
Comment (by felixxm):
Replying to [comment:2 Nikunj Heda]:
> Hello,I am a first time contributor, this ticket has easy pickings tag
on it, Can I work on this?? And would need some help.
Sure, there is no need to ask.
--
Ticket URL: <https://code.djangoproject.com/ticket/32087#comment:3>
Comment (by Nikunj Heda):
Replying to [comment:3 felixxm]:
> Replying to [comment:2 Nikunj Heda]:
> > Hello,I am a first time contributor, this ticket has easy pickings tag
on it, Can I work on this?? And would need some help.
>
> Sure, there is no need to ask.
Thanks, I can prepare the patch and then I have to approve. Right??
--
Ticket URL: <https://code.djangoproject.com/ticket/32087#comment:4>
Comment (by Nikunj Heda):
Replying to [comment:3 felixxm]:
> Replying to [comment:2 Nikunj Heda]:
> > Hello,I am a first time contributor, this ticket has easy pickings tag
on it, Can I work on this?? And would need some help.
>
> Sure, there is no need to ask.
I have made this pull request
https://github.com/django/django/pull/13518[https://github.com/django/django/pull/13518]
, Can you please verify.
--
Ticket URL: <https://code.djangoproject.com/ticket/32087#comment:5>
Comment (by Nikunj Heda):
Replying to [comment:8 felixxm]:
> Replying to [comment:7 Nikunj Heda]:
> > Is this good?? If you approve I will push.
>
> Looks good at first glance. Please send updates via PR, you don't need
to ask for approval in the ticket. Updates can be discussed in PR.
Ok Got it
--
Ticket URL: <https://code.djangoproject.com/ticket/32087#comment:9>
* needs_tests: 1 => 0
* stage: Accepted => Ready for checkin
--
Ticket URL: <https://code.djangoproject.com/ticket/32087#comment:10>
* status: assigned => closed
* resolution: => fixed
Comment:
In [changeset:"079deba53038054361eb32afdd06ce9df1040bc7" 079deba5]:
{{{
#!CommitTicketReference repository=""
revision="079deba53038054361eb32afdd06ce9df1040bc7"
Fixed #32087 -- Made technical 500 debug page use HTTPS for sharing
traceback.
}}}
--
Ticket URL: <https://code.djangoproject.com/ticket/32087#comment:11>