View All "error"?

Support and queries relating to all previous versions of ZoneMinder
Locked
pchan
Posts: 50
Joined: Thu Jan 15, 2004 9:38 pm

View All "error"?

Post by pchan »

When using View All, I get a event page showing the following output when the number of events is >= 5132. If my Event Filter results = 4849 events, View All will correctly display all the events.

(I don't know the exact Event threshold, but it works when the # Events = 4849, and fails with the below msg when # Events = 5132)

function newWindow(Url,Name,Width,Height) { var Win = window.open(Url,Name,"resizable,scrollbars,width="+Width+",height="+Height); } function eventWindow(Url,Name,Width,Height) { var Win = window.open(Url,Name,"resizable,width="+Width+",height="+Height ); } function filterWindow(Url,Name) { var Win = window.open(Url,Name,"resizable,scrollbars,width=620,height=250"); } function timelineWindow(Url,Name) { var Win = window.open(Url,Name,"resizable,scrollbars,width=760,height=500"); } function closeWindow() { window.close(); // This is a hack. The only way to close an existing window is to try and open it! var filterWindow = window.open( "/zm/index.php?view=none", 'zmFilter', 'width=1,height=1' ); filterWindow.close(); } window.focus();
Locked