We have been doing this in all of our web applications for over a decade now. Essentially, whenever there is an error, we don't just display the error message as-is. All the technical or trace info it contains seems to scare users. So, we simply encrypt it and display a base64-encoded version of it. It also gets saved into a log file. Users are more comfortable with this way: they simply copy/paste the text to us and…
500 Internal error at YouTube
31–40 of 44 posts
Re: 500 Internal error at YouTube
#32We have been doing this in all of our web applications for over a decade now. Essentially, whenever there is an error, we don't just display the error message as-is. All the technical or trace info it contains seems to scare users. So, we simply encrypt it and display a base64-encoded version of it. It also gets saved into a log file. Users are more comfortable with this way: they simply copy/paste the text to us and…
What happens if there's an error in the crypto handling system? Edit: Not a troll, I'm seriously interested in "minimum required functional systems" in the case.
In any case, even if, as you say, if the crypto handling system failed, and it returned nothing, there was no critical information that was lost. Only information on an error message, which you will hear from the user anyway.
Re: 500 Internal error at YouTube
#33Re: 500 Internal error at YouTube
#34Re: 500 Internal error at YouTube
#35Well, you can get a 500 error from facebook via this URL. http://facebook.com/logout
Re: 500 Internal error at YouTube
#36Earlier quoted context omitted.
What happens if there's an error in the crypto handling system? Edit: Not a troll, I'm seriously interested in "minimum required functional systems" in the case.
There is no other dependency in the encoder/decoder functions so there is no point of failure there. Those functions were developed a long time ago and have not changed. They work with any stream of data and automatically chop off the input after the first few hundred characters. This contains more than enough info for the developers to see exactly what caused the error. In any case, even if, as you say, if the crypt…
Cool idea btw.
Re: 500 Internal error at YouTube
#37Well, you can get a 500 error from facebook via this URL. http://facebook.com/logout
Re: 500 Internal error at YouTube
#38I got it on this one : https://www.youtube.com/watch?v=6U16XShROI8
Re: 500 Internal error at YouTube
#39Earlier quoted context omitted.
http://stackoverflow.com/questions/21681084/decoding-youtube...
Dang, did you type that all in manually from the image? Ouch!