I want to apologize in advance if this topic has been discussed already. I called myself doing a search but did not see anything relevant.
Previously on 1.36.xx, started getting "Loading, please wait.." message on the Log page. Did all the standard stuff, /var is has plenty of free disk, firewall on the system is disabled, cleared out /var/logs/zm, restarted multiple times, updated zm through several iterations of 1.36 and 1.37 - currently on 1.37.28. Options/log is all at defaults. When I do some digging, I see the following
GET https://ubuntu1.<domain>/index.php/zm/index.php?view=request&request=log&task=query&search=&offset=0&limit=500 net::ERR_CONNECTION_REFUSED -- pointing to -- csrf-magic.js:41
That particular line is part of the following function (line 41 is the one with the double asterisks)
send: function(data) {
** if (!this.csrf_isPost) return this.csrf_send(data);
prepend = csrfMagicName + '=' + csrfMagicToken + '&';
// XXX: Removed to eliminate 'Refused to set unsafe header "Content-length" ' errors in modern browsers
// if (this.csrf_purportedLength === undefined) {
// this.csrf_setRequestHeader("Content-length", this.csrf_purportedLength + prepend.length);
// delete this.csrf_purportedLength;
// }
delete this.csrf_isPost;
return this.csrf_send(prepend + data);
},
csrf_send: function(data) {
return this.csrf.send(data);
},
Thoughts?
Thanks!!
Log page never loads on 1.37.28 (and earlier)
Re: Log page never loads on 1.37.28 (and earlier)
I'm concerned about the
GET https://ubuntu1.<domain>/index.php/zm/index.php
It is very confused about the url to send to. However I don't get why it would report connected refused. Should be a 404..
GET https://ubuntu1.<domain>/index.php/zm/index.php
It is very confused about the url to send to. However I don't get why it would report connected refused. Should be a 404..