I'm getting the following error.
Failed to load resource: the server responded with a status of 413 (Request Entity Too Large)
function pageSS() {
html2canvas(document.body, {
onrendered: function (canvas) {
var img = canvas.toDataURL();
$.ajax({
type: 'POST',
url: 'https://myweb/upload_ss.php',
data: img,
processData: false,
contentType: false
}).done(function (data) {
console.log(data);
});
}
});
return false;
}
What should I do?