Some more information about this error.
I've been trying to upload my data for more than a week now and I
still haven't been able to complete the upload. The upload runs for
about 1.5 minutes and, according to Firebug, the server closes the
connection with a '500 Internal Server Error' code and an empty
response body. The request's "Content-Length" header shows about
6.52MB. Monitoring the upload speed also shows an average of 77kB/s
for 1.5 minutes which is about 6.5MB of transferred data.
I've use one of Test Pilot's internal functions to retrieve the data
manually by running the following code in Firebug:
/***
!!!WARNING!!! Do not run this code unless
you know what you are doing. It may cause your
browser to freeze for several minutes and/or crash.
***/
var data = getDbContents();
console.log(data.length);
dataText = data.map(function (datum) datum.toSource()).join('\n');
var ta = document.createElement('textarea');
ta.value = dataText;
document.body.appendChild(ta);
The result is about 40,600 lines of data and the text saves to about
4.52MB in ASCII.
(Note that the HTTP request encodes the data before sending it, which
adds a couple of MB)
My only guess is that the server times out due to the size of the
upload.
Hope this helps.
-- Brian Peiris.
On Sep 14, 2:40 pm, Jono DiCarlo <
j...@mozilla.com> wrote:
> Hi everybody,
> Sorry you're having this error! Let me see what I can do to diagnose
> it.
>
> First of all, can you connect tohttps://
testpilot.mozillalabs.com