Closed lobo2714 closed 8 years ago
Hi, first off, thanks for the detailed report. I wish more users gave such comprehensive reports.
I see many issues in your logs - I am surprised you can see 1.
Questions:
a) Is this a standard ZM install ? Or did you compile from source b) Is it possible for me to to get access for a day with a temp account ? That will make things much easier to debug. If so , please shoot me an email to pliablepixels @gmail
Hello, Thank you for your response!
Answers: A. I followed ZM's documentation step by step. I believe this is the standard installation. I did not compile any source code. Here is the link http://zoneminder.readthedocs.io/en/latest/installationguide/ubuntu.html#easy-way-ubuntu-16-04 Furthermore, this is a brand new ubuntu installation. I wanted to avoid any issues during my ZM installation B. we can work that out. You want access to the ZM's portal correct?
There is another observation: C. I am able to access the ZM server through the portal login using my local IP address; however, when I try to do it using my WAN or global IP address-I can see the portal but it does not accept my login credential. It times out. I wasn't sure if the PC needs some additional certification or SSL to be able to pass through the portal login. I am not sure if this could be the problem.
i tested the APIs locally (http://localhost_IP/zm/api) and it works. However, when I do it with my global IP(http://WAN_IP/zm/api) address, it kicks with a not authenticated response..Error: The requested address '/zm/api/' was not found on this server.
I also tried http://local_IP/zm/api/host/getVersion.json, this works because I get the following response: "version": "1.29.0",
however; when I try http://Global/WAN_IP/zm/api/host/getVersion.json, I get a not authentication response response. See below:
"success": false,
"data": {
"name": "Not Authenticated",
"message": "Not Authenticated",
"url": "\/zm\/api\/host\/getVersion.json",
"exception": {
"class": "UnauthorizedException",
"code": 401,
"message": "Not Authenticated",
"trace": [
"#0 \/usr\/share\/php\/Cake\/Event\/CakeEventManager.php(243): AppController->beforeFilter(Object(CakeEvent))",
"#1 \/usr\/share\/php\/Cake\/Controller\/Controller.php(677): CakeEventManager->dispatch(Object(CakeEvent))",
"#2 \/usr\/share\/php\/Cake\/Routing\/Dispatcher.php(189): Controller->startupProcess()",
"#3 \/usr\/share\/php\/Cake\/Routing\/Dispatcher.php(167): Dispatcher->_invoke(Object(HostController), Object(CakeRequest))",
"#4 \/usr\/share\/zoneminder\/www\/api\/app\/webroot\/index.php(107): Dispatcher->dispatch(Object(CakeRequest), Object(CakeResponse))",
"#5 {main}"
]
},
"queryLog": {
"default": {
"log": [
{
"query": "SELECT Config
.Id
, Config
.Name
, Config
.Value
, Config
.Type
, Config
.DefaultValue
, Config
.Hint
, Config
.Pattern
, Config
.Format
, Config
.Prompt
, Config
.Help
, Config
.Category
, Config
.Readonly
, Config
.Requires
FROM zm
.Config
AS Config
WHERE Config
.Name
= 'ZM_OPT_USE_API' LIMIT 1",
"params": [],
"affected": 1,
"numRows": 1,
"took": 1
},
{
"query": "SELECT Config
.Id
, Config
.Name
, Config
.Value
, Config
.Type
, Config
.DefaultValue
, Config
.Hint
, Config
.Pattern
, Config
.Format
, Config
.Prompt
, Config
.Help
, Config
.Category
, Config
.Readonly
, Config
.Requires
FROM zm
.Config
AS Config
WHERE Config
.Name
= 'ZM_OPT_USE_AUTH' LIMIT 1",
"params": [],
"affected": 1,
"numRows": 1,
"took": 1
},
{
"query": "SELECT Config
.Id
, Config
.Name
, Config
.Value
, Config
.Type
, Config
.DefaultValue
, Config
.Hint
, Config
.Pattern
, Config
.Format
, Config
.Prompt
, Config
.Help
, Config
.Category
, Config
.Readonly
, Config
.Requires
FROM zm
.Config
AS Config
WHERE Config
.Name
= 'ZM_OPT_USE_API' LIMIT 1",
"params": [],
"affected": 1,
"numRows": 1,
"took": 1
},
{
"query": "SELECT Config
.Id
, Config
.Name
, Config
.Value
, Config
.Type
, Config
.DefaultValue
, Config
.Hint
, Config
.Pattern
, Config
.Format
, Config
.Prompt
, Config
.Help
, Config
.Category
, Config
.Readonly
, Config
.Requires
FROM zm
.Config
AS Config
WHERE Config
.Name
= 'ZM_OPT_USE_AUTH' LIMIT 1",
"params": [],
"affected": 1,
"numRows": 1,
"took": 0
}
],
"count": 4,
"time": 3
}
}
}
}
It seems that something is not translating properly within ZM. I know my router is set up correctly since I am able to see the ZM portal when I type the global/WAN IP address on my browser, but some authentication configuration may not be set up correctly? Thanks, Robert
Okay, so that is one problem then. I'm not sue why your global WAN address is not working, but it may have to do with your SSL certs - please see if this helps
Also, try zmNinja inside your LAN and configure it with the LAN address - see if that works
I tried the following: A. I changed the login using my local IP address, I am able to successfully see all my cameras and events. B. I followed the link as per your suggestions: instructions below regarding this topic "Everything works when I use LAN IP, but I get "not authenticated" when I use WAN IP"
instructions link =https://github.com/pliablepixels/zmNinja/wiki/FAQ#everything-works-when-i-use-lan-ip-but-i-get-not-authenticated-when-i-use-wan-ip
Here is the copy and paste of the thread for the instructions I followed: "This is likely happening if you use self signed SSL certs. If you are using self signed certificated, you should make sure the "common name" matches the hostname (or public IP) of the server you are installing ZM in. If not, zmNinja's SSL handshake will fail.
If you have used 'make-ssl-cert' or a similar tool that automatically generates the cert for you, its very likely you have certificate that uses the 'unix hostname' of your server. That will not work.
Assuming you are usin apache and have SSL enabled, here is how to regenerate the certs (ubuntu specific, may need to tweak it for your distro)
This will create a self-signed certificate/key pair and store it in /etc/apache2/ssl (you may have to create that directory, or store it elsewhere)
sudo openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout /etc/apache2/ssl/zoneminder.key -out /etc/apache2/ssl/zoneminder.crt Next up, edit your apache ssl config (example /etc/apache2/sites-available/default-ssl.conf) And add/modify the following lines:
SSLCertificateFile /etc/apache2/ssl/zoneminder.crt SSLCertificateKeyFile /etc/apache2/ssl/zoneminder.key restart apache
sudo service apache2 restart "
When I did this, I am able to see the tiles for all cameras using my global_IP, but the actual feed is not coming through.. the app tells me that there was an authentication problem error. I have a stupid question to ask. Since I created a SSL key in my server, shouldn't my device(phone) have those keys as well in order to talk to the ZM server securely? forgive me if this is a dumb question.
C. # Another observation: after step # 2, I was able to login through my PC/browser into the ZM portal using my global IP address. the SSL cert seemed to have helped that part; however, the ZM Ninja app is still not working. I think we are close.. one more tweak :)
Thanks for all the help!
Robert
This might be due to some other reason. Can you post a screenshot of the zmNinja settings page?
Thanks for the screenshot.
I tried disabling the SSL and it works..
I tried enabling the SSL again and it does not work.
It works finally without SSL :) I am not sure if without SSL is the initial intent.. One thing to point out is that when I did not have SSL key on the ZM server, I was not able to login through the portal using my Global IP using regular browser.
On Fri, Jul 8, 2016 at 4:01 PM, Pliable Pixels notifications@github.com wrote:
Thanks for the screenshot.
- I'm surprised how use SSL is not on - can you enable it please & save
- If it doesn't work, when you are viewing feeds, please check your apache error logs at the same time - look for errors
— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/pliablepixels/zmNinja/issues/280#issuecomment-231492561, or mute the thread https://github.com/notifications/unsubscribe/ATZy3PbV-W5muH2NX42RSXgggxuRx70Kks5qTtbVgaJpZM4JHhW6 .
Okay - I get the feeling your zmninja configuration is quite messed up -- what's working should not be, whats not working, should be :-) But as long as you have it working...
Platform & OS Version ubuntu 16.04 zoneminder server IOS-el capitan- my PC for browsing
The version of the app you are reporting: 1.1.93
Device details: Iphone6s
What is the nature of your issue I am only able to view 1 out 2 cameras in montage view using zmNinja application. I have a total of 2 cameras configure and I am able to see them in regular browser with PC.
Details When accessing my zmNinja app, I am only able to see one camera. I have a total of 2 cameras set up in my ZM server and I am able to view the montage view using my browser/PC.
I check the APIs using my local IP address and there is no issues.
I exported the logs for your recommendations on the next steps.
Thank you in advance, Robert
Logs are found below: Jul 7, 2016 02:11 PM INFO Force calling resize Jul 7, 2016 02:11 PM DEBUG All images loaded, doing image layout Jul 7, 2016 02:11 PM DEBUG Setting monitor ID: 2 to size: 50 and display:show Jul 7, 2016 02:11 PM INFO Arranging as per packery grid Jul 7, 2016 02:11 PM DEBUG All images loaded Jul 7, 2016 02:11 PM DEBUG sendCmd response:{"data":{"result":"Error","message":"socketsendto( /var/run/zm/zms-048004s.sock ) failed: No such file or directory"},"status":200,"config":{"method":"POST","transformResponse":[null],"url":"http:///index.php","headers":{"Content-Type":"application/x-www-form-urlencoded","Accept":"application/json, text/plain, /_"},"data":{"view":"request","request":"stream","connkey":"48004","command":"14","auth":"de1d29369cdcad7c2a07691aadcdcf2e"},"timeout":15000},"statusText":"OK"}
Jul 7, 2016 02:10 PM DEBUG sendCmd response:{"data":{"result":"Error","message":"socketsendto( /var/run/zm/zms-864518s.sock ) failed: No such file or directory"},"status":200,"config":{"method":"POST","transformResponse":[null],"url":"http:///index.php","headers":{"Content-Type":"application/x-www-form-urlencoded","Accept":"application/json, text/plain, /_"},"data":{"view":"request","request":"stream","connkey":"864518","command":"14","auth":"de1d29369cdcad7c2a07691aadcdcf2e"},"timeout":15000},"statusText":"OK"}
Jul 7, 2016 02:10 PM DEBUG sendCmd response:{"data":{"result":"Error","message":"socketsendto( /var/run/zm/zms-054791s.sock ) failed: No such file or directory"},"status":200,"config":{"method":"POST","transformResponse":[null],"url":"http:///index.php","headers":{"Content-Type":"application/x-www-form-urlencoded","Accept":"application/json, text/plain, /_"},"data":{"view":"request","request":"stream","connkey":"54791","command":"14","auth":"de1d29369cdcad7c2a07691aadcdcf2e"},"timeout":15000},"statusText":"OK"}
Jul 7, 2016 02:10 PM DEBUG skipping image refresh, packery is still loading
Jul 7, 2016 02:10 PM DEBUG subControl success:{"result":"Error","message":"socket_sendto( /var/run/zm/zms-158548s.sock ) failed: No such file or directory"}
Jul 7, 2016 02:10 PM DEBUG skipping image refresh, packery is still loading
Jul 7, 2016 02:10 PM INFO Monitors that are active and not DOM hidden: 1 while grid has 1
Jul 7, 2016 02:10 PM INFO found a packery layout
Jul 7, 2016 02:10 PM INFO Stream authentication construction: &auth=de1d29369cdcad7c2a07691aadcdcf2e
Jul 7, 2016 02:10 PM INFO DataModel: Extracted a stream authentication key of: de1d29369cdcad7c2a07691aadcdcf2e
Jul 7, 2016 02:10 PM DEBUG DataModel: Getting auth from http:///index.php?view=watch&mid=2&connkey=680193 with mid=2
Jul 7, 2016 02:10 PM INFO Inside Montage Ctrl:We found 1 monitors
Jul 7, 2016 02:10 PM DEBUG skipping image refresh, packery is still loading
Jul 7, 2016 02:10 PM DEBUG Setting image mode to snapshot, will change to image when packery is all done
Jul 7, 2016 02:10 PM INFO Got API version: 1.29.0
Jul 7, 2016 02:10 PM INFO ZM_EVENT_IMAGE_DIGITS is 5
Jul 7, 2016 02:10 PM INFO Stream authentication construction: &auth=de1d29369cdcad7c2a07691aadcdcf2e
Jul 7, 2016 02:10 PM INFO DataModel: Extracted a stream authentication key of: de1d29369cdcad7c2a07691aadcdcf2e
Jul 7, 2016 02:10 PM INFO Returning pre-loaded list of 1 monitors
Jul 7, 2016 02:10 PM DEBUG montage
Jul 7, 2016 02:10 PM INFO No Event Server configured, skipping refresh
Jul 7, 2016 02:10 PM DEBUG getAPIversion called
Jul 7, 2016 02:10 PM DEBUG Config URL for digits is:http:///api/configs/viewByName/ZM_EVENT_IMAGE_DIGITS.json
Jul 7, 2016 02:10 PM DEBUG PortalLogin: auth success
Jul 7, 2016 02:10 PM DEBUG DataModel: Getting auth from http:///index.php?view=watch&mid=2&connkey=undefined with mid=2
Jul 7, 2016 02:10 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 02:10 PM DEBUG MonitorModalCtrl: Re-login detected, resetting everything & re-generating connkey
Jul 7, 2016 02:10 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 02:10 PM DEBUG MonitorModalCtrl: Re-login detected, resetting everything & re-generating connkey
Jul 7, 2016 02:10 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 02:10 PM DEBUG MonitorModalCtrl: Re-login detected, resetting everything & re-generating connkey
Jul 7, 2016 02:10 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 02:10 PM DEBUG MonitorModalCtrl: Re-login detected, resetting everything & re-generating connkey
Jul 7, 2016 02:10 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 02:10 PM DEBUG MonitorModalCtrl: Re-login detected, resetting everything & re-generating connkey
Jul 7, 2016 02:10 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 02:10 PM DEBUG MonitorModalCtrl: Re-login detected, resetting everything & re-generating connkey
Jul 7, 2016 02:10 PM INFO Auth-Success inside EventModalCtrl: Calling window.stop()
Jul 7, 2016 02:10 PM DEBUG EventModalCtrl: Re-login detected, resetting everything & re-generating connkey
Jul 7, 2016 02:10 PM INFO Auth-Success inside EventModalCtrl: Calling window.stop()
Jul 7, 2016 02:10 PM DEBUG EventModalCtrl: Re-login detected, resetting everything & re-generating connkey
Jul 7, 2016 02:10 PM INFO Auth-Success inside EventModalCtrl: Calling window.stop()
Jul 7, 2016 02:10 PM DEBUG EventModalCtrl: Re-login detected, resetting everything & re-generating connkey
Jul 7, 2016 02:10 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 02:10 PM DEBUG MonitorModalCtrl: Re-login detected, resetting everything & re-generating connkey
Jul 7, 2016 02:10 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 02:10 PM DEBUG MonitorModalCtrl: Re-login detected, resetting everything & re-generating connkey
Jul 7, 2016 02:10 PM DEBUG auth-success emit:Successful
Jul 7, 2016 02:10 PM INFO zmAutologin successfully logged into Zoneminder
Jul 7, 2016 02:10 PM INFO ZM has recaptcha disabled - good
Jul 7, 2016 02:10 PM INFO Making sure all monitors have a fair chance...
Jul 7, 2016 02:10 PM DEBUG Got 2new history events...
Jul 7, 2016 02:10 PM INFO Checking if reCaptcha is enabled in ZM...
Jul 7, 2016 02:10 PM INFO zmAutologin called
Jul 7, 2016 02:10 PM DEBUG Resetting zmCookie...
Jul 7, 2016 02:10 PM INFO Cancelling zmAutologin timer
Jul 7, 2016 02:10 PM DEBUG PIN code entered is correct, or there is no PIN set
Jul 7, 2016 02:10 PM DEBUG unlock called with check PIN=true
Jul 7, 2016 02:10 PM INFO not checking for touchID
Jul 7, 2016 02:10 PM INFO User credentials are provided
Jul 7, 2016 02:10 PM DEBUG Inside Portal login Enter handler
Jul 7, 2016 02:10 PM INFO Event timeline API is http:///api/events/index/StartTime >=:2016-07-07 00:00/EndTime <=:2016-07-07 13:42.json
Jul 7, 2016 02:10 PM DEBUG history ERROR:null
Jul 7, 2016 02:10 PM INFO MontageHistory-footerCollapse: Calling window.stop()
Jul 7, 2016 02:10 PM INFO Event timeline API is http:///api/events/index/StartTime >=:2016-07-07 00:00/EndTime <=:2016-07-07 13:18.json
Jul 7, 2016 02:10 PM DEBUG history ERROR:null
Jul 7, 2016 02:10 PM INFO MontageHistory-footerCollapse: Calling window.stop()
Jul 7, 2016 02:10 PM INFO Event timeline API is http:///api/events/index/StartTime >=:2016-07-07 00:00/EndTime <=:2016-07-07 12:50.json
Jul 7, 2016 02:10 PM DEBUG Deferring control 17 by 2500
Jul 7, 2016 02:10 PM INFO footerCollapse: Calling kill with 158548 because url is http:///cgi-bin/nph-zms?source=event&mode=jpeg&event=1&frame=1&replay=gapless&rate=100&connkey=158548&scale=50&rand=3767
Jul 7, 2016 02:10 PM INFO MontageHistory-footerCollapse: Not calling window stop as we just resumed
Jul 7, 2016 02:10 PM INFO Entering Portal Main
Jul 7, 2016 02:10 PM DEBUG going to portal login
Jul 7, 2016 02:10 PM DEBUG Last State recorded:{"viewId":"ion472","index":0,"historyId":"ion4","backViewId":null,"forwardViewId":null,"stateId":"montage","stateName":"montage","stateParams":{"minimal":false,"isRefresh":false},"url":"/montage","canSwipeBack":true,"title":"Montage"}
Jul 7, 2016 02:10 PM DEBUG LogCtrl: resume called, starting log timer
Jul 7, 2016 02:10 PM DEBUG ModalCtrl: Modal resume called
Jul 7, 2016 02:10 PM DEBUG ModalCtrl: Modal resume called
Jul 7, 2016 02:10 PM DEBUG ModalCtrl: Modal resume called
Jul 7, 2016 02:10 PM DEBUG ModalCtrl: Modal resume called
Jul 7, 2016 02:10 PM DEBUG ModalCtrl: Modal resume called
Jul 7, 2016 02:10 PM DEBUG ModalCtrl: Modal resume called
Jul 7, 2016 02:10 PM DEBUG EventModalCtrl: Modal resume called
Jul 7, 2016 02:10 PM DEBUG EventModalCtrl: Modal resume called
Jul 7, 2016 02:10 PM DEBUG EventModalCtrl: Modal resume called
Jul 7, 2016 02:10 PM DEBUG ModalCtrl: Modal resume called
Jul 7, 2016 02:10 PM DEBUG ModalCtrl: Modal resume called
Jul 7, 2016 02:10 PM INFO >>> Resume delayed for 300 ms, to wait for network stack...
Jul 7, 2016 02:10 PM INFO App is resuming from background
Jul 7, 2016 02:07 PM INFO Cancelling zmAutologin timer
Jul 7, 2016 02:07 PM INFO ROOT APP: Stopping network pull...
Jul 7, 2016 02:07 PM INFO ROOT APP:App is going into background
Jul 7, 2016 02:06 PM INFO Force calling resize
Jul 7, 2016 02:06 PM DEBUG All images loaded, doing image layout
Jul 7, 2016 02:06 PM DEBUG Setting monitor ID: 2 to size: 50 and display:show
Jul 7, 2016 02:06 PM INFO Arranging as per packery grid
Jul 7, 2016 02:06 PM DEBUG All images loaded
Jul 7, 2016 02:06 PM INFO Monitors that are active and not DOM hidden: 1 while grid has 1
Jul 7, 2016 02:06 PM INFO found a packery layout
Jul 7, 2016 02:06 PM INFO Stream authentication construction: &auth=de1d29369cdcad7c2a07691aadcdcf2e
Jul 7, 2016 02:06 PM INFO DataModel: Extracted a stream authentication key of: de1d29369cdcad7c2a07691aadcdcf2e
Jul 7, 2016 02:06 PM DEBUG DataModel: Getting auth from http:///index.php?view=watch&mid=2&connkey=362443 with mid=2
Jul 7, 2016 02:06 PM INFO Inside Montage Ctrl:We found 1 monitors
Jul 7, 2016 02:06 PM DEBUG skipping image refresh, packery is still loading
Jul 7, 2016 02:06 PM DEBUG Setting image mode to snapshot, will change to image when packery is all done
Jul 7, 2016 02:06 PM INFO Returning pre-loaded list of 1 monitors
Jul 7, 2016 02:06 PM DEBUG SaveDevOptions: Saving to disk
Jul 7, 2016 02:06 PM DEBUG SaveDevOptions: called
Jul 7, 2016 02:05 PM INFO Returning pre-loaded list of 1 monitors
Jul 7, 2016 02:04 PM INFO Force calling resize
Jul 7, 2016 02:04 PM INFO Arranging as per packery grid
Jul 7, 2016 02:04 PM INFO Monitors that are active and not DOM hidden: 1 while grid has 1
Jul 7, 2016 02:04 PM INFO found a packery layout
Jul 7, 2016 02:04 PM INFO Stream authentication construction: &auth=de1d29369cdcad7c2a07691aadcdcf2e
Jul 7, 2016 02:04 PM INFO DataModel: Extracted a stream authentication key of: de1d29369cdcad7c2a07691aadcdcf2e
Jul 7, 2016 02:04 PM INFO Inside Montage Ctrl:We found 1 monitors
Jul 7, 2016 02:04 PM INFO Got API version: 1.29.0
Jul 7, 2016 02:04 PM INFO Stream authentication construction: &auth=de1d29369cdcad7c2a07691aadcdcf2e
Jul 7, 2016 02:04 PM INFO DataModel: Extracted a stream authentication key of: de1d29369cdcad7c2a07691aadcdcf2e
Jul 7, 2016 02:04 PM INFO ZM_EVENT_IMAGE_DIGITS is 5
Jul 7, 2016 02:04 PM INFO Returning pre-loaded list of 1 monitors
Jul 7, 2016 02:04 PM INFO No Event Server configured, skipping refresh
Jul 7, 2016 02:04 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 02:04 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 02:04 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 02:04 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 02:04 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 02:04 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 02:04 PM INFO Auth-Success inside EventModalCtrl: Calling window.stop()
Jul 7, 2016 02:04 PM INFO Auth-Success inside EventModalCtrl: Calling window.stop()
Jul 7, 2016 02:04 PM INFO Auth-Success inside EventModalCtrl: Calling window.stop()
Jul 7, 2016 02:04 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 02:04 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 02:04 PM INFO zmAutologin successfully logged into Zoneminder
Jul 7, 2016 02:04 PM INFO Making sure all monitors have a fair chance...
Jul 7, 2016 02:04 PM INFO Checking if reCaptcha is enabled in ZM...
Jul 7, 2016 02:04 PM INFO zmAutologin called
Jul 7, 2016 02:04 PM INFO Cancelling zmAutologin timer
Jul 7, 2016 02:04 PM INFO not checking for touchID
Jul 7, 2016 02:04 PM INFO User credentials are provided
Jul 7, 2016 02:04 PM INFO Event timeline API is http:///api/events/index/StartTime >=:2016-07-07 00:00/EndTime <=:2016-07-07 13:42.json
Jul 7, 2016 02:04 PM INFO MontageHistory-footerCollapse: Calling window.stop()
Jul 7, 2016 02:04 PM INFO Event timeline API is http:///api/events/index/StartTime >=:2016-07-07 00:00/EndTime <=:2016-07-07 13:18.json
Jul 7, 2016 02:04 PM INFO MontageHistory-footerCollapse: Calling window.stop()
Jul 7, 2016 02:04 PM INFO Event timeline API is http:///api/events/index/StartTime >=:2016-07-07 00:00/EndTime <=:2016-07-07 12:50.json
Jul 7, 2016 02:04 PM INFO footerCollapse: Calling kill with 685196 because url is http:///cgi-bin/nph-zms?source=event&mode=jpeg&event=1&frame=1&replay=gapless&rate=100&connkey=685196&scale=50&rand=93117
Jul 7, 2016 02:04 PM INFO MontageHistory-footerCollapse: Not calling window stop as we just resumed
Jul 7, 2016 02:04 PM INFO Entering Portal Main
Jul 7, 2016 02:04 PM INFO >>> Resume delayed for 300 ms, to wait for network stack...
Jul 7, 2016 02:04 PM INFO App is resuming from background
Jul 7, 2016 02:04 PM INFO EventModalCtrl: paused, killing timer
Jul 7, 2016 02:04 PM INFO EventModalCtrl: paused, killing timer
Jul 7, 2016 02:04 PM INFO EventModalCtrl: paused, killing timer
Jul 7, 2016 02:04 PM INFO Cancelling zmAutologin timer
Jul 7, 2016 02:04 PM INFO ROOT APP: Stopping network pull...
Jul 7, 2016 02:04 PM INFO ROOT APP:App is going into background
Jul 7, 2016 02:03 PM INFO Force calling resize
Jul 7, 2016 02:03 PM INFO Arranging as per packery grid
Jul 7, 2016 02:03 PM INFO * BUG PROGRESS WAS NOT CALLED
Jul 7, 2016 02:03 PM INFO Monitors that are active and not DOM hidden: 1 while grid has 1
Jul 7, 2016 02:03 PM INFO found a packery layout
Jul 7, 2016 02:03 PM INFO Stream authentication construction: &auth=de1d29369cdcad7c2a07691aadcdcf2e
Jul 7, 2016 02:03 PM INFO DataModel: Extracted a stream authentication key of: de1d29369cdcad7c2a07691aadcdcf2e
Jul 7, 2016 02:03 PM INFO Inside Montage Ctrl:We found 1 monitors
Jul 7, 2016 02:03 PM INFO Returning pre-loaded list of 1 monitors
Jul 7, 2016 02:03 PM INFO Got API version: 1.29.0
Jul 7, 2016 02:03 PM INFO ZM_EVENT_IMAGEDIGITS is 5
Jul 7, 2016 02:03 PM INFO Stream authentication construction: &auth=de1d29369cdcad7c2a07691aadcdcf2e
Jul 7, 2016 02:03 PM INFO DataModel: Extracted a stream authentication key of: de1d29369cdcad7c2a07691aadcdcf2e
Jul 7, 2016 02:03 PM INFO No Event Server configured, skipping refresh
Jul 7, 2016 02:03 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 02:03 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 02:03 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 02:03 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 02:03 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 02:03 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 02:03 PM INFO Auth-Success inside EventModalCtrl: Calling window.stop()
Jul 7, 2016 02:03 PM INFO Auth-Success inside EventModalCtrl: Calling window.stop()
Jul 7, 2016 02:03 PM INFO Auth-Success inside EventModalCtrl: Calling window.stop()
Jul 7, 2016 02:03 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 02:03 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 02:03 PM INFO zmAutologin successfully logged into Zoneminder
Jul 7, 2016 02:03 PM INFO Making sure all monitors have a fair chance...
Jul 7, 2016 02:03 PM INFO Checking if reCaptcha is enabled in ZM...
Jul 7, 2016 02:03 PM INFO zmAutologin called
Jul 7, 2016 02:03 PM INFO Cancelling zmAutologin timer
Jul 7, 2016 02:03 PM INFO not checking for touchID
Jul 7, 2016 02:03 PM INFO User credentials are provided
Jul 7, 2016 02:03 PM INFO Failed reachability on http:///index.php with error {"data":null,"status":0,"config":{"method":"GET","transformRequest":[null],"transformResponse":[null],"url":"http:///index.php","headers":{"Accept":"application/json, text/plain, /"},"timeout":15000},"statusText":""}
Jul 7, 2016 02:03 PM INFO Event timeline API is http:///api/events/index/StartTime >=:2016-07-07 00:00/EndTime <=:2016-07-07 13:42.json
Jul 7, 2016 02:03 PM INFO MontageHistory-footerCollapse: Calling window.stop()
Jul 7, 2016 02:03 PM INFO Event timeline API is http:///api/events/index/StartTime >=:2016-07-07 00:00/EndTime <=:2016-07-07 13:18.json
Jul 7, 2016 02:03 PM INFO Reachability test..http:///index.php
Jul 7, 2016 02:03 PM INFO detected loop when fallsback to
Jul 7, 2016 02:03 PM INFO reached end of chain loop
Jul 7, 2016 02:03 PM INFO Fallback of is
Jul 7, 2016 02:03 PM INFO Adding to chain stack: >http://
Jul 7, 2016 02:03 PM INFO zmAutologin Error null and status 0
Jul 7, 2016 02:03 PM INFO MontageHistory-footerCollapse: Calling window.stop()
Jul 7, 2016 02:03 PM INFO Event timeline API is http:///api/events/index/StartTime >=:2016-07-07 00:00/EndTime <=:2016-07-07 12:50.json
Jul 7, 2016 02:03 PM INFO MontageHistory-footerCollapse: Not calling window stop as we just resumed
Jul 7, 2016 02:03 PM INFO Entering Portal Main
Jul 7, 2016 02:03 PM INFO Checking if reCaptcha is enabled in ZM...
Jul 7, 2016 02:03 PM INFO zmAutologin called
Jul 7, 2016 02:03 PM INFO Your network is online, re-authenticating
Jul 7, 2016 02:03 PM INFO Your network went offline
Jul 7, 2016 02:03 PM INFO >>> Resume delayed for 300 ms, to wait for network stack...
Jul 7, 2016 02:03 PM INFO App is resuming from background
Jul 7, 2016 02:03 PM INFO Failed reachability on http:///index.php with error {"data":null,"status":0,"config":{"method":"GET","transformRequest":[null],"transformResponse":[null],"url":"http:///index.php","headers":{"Accept":"application/json, text/plain, /"},"timeout":15000},"statusText":""}
Jul 7, 2016 02:03 PM INFO EventModalCtrl: paused, killing timer
Jul 7, 2016 02:03 PM INFO EventModalCtrl: paused, killing timer
Jul 7, 2016 02:03 PM INFO EventModalCtrl: paused, killing timer
Jul 7, 2016 02:03 PM INFO Cancelling zmAutologin timer
Jul 7, 2016 02:03 PM INFO Reachability test..http:///index.php
Jul 7, 2016 02:03 PM INFO detected loop when fallsback to
Jul 7, 2016 02:03 PM INFO reached end of chain loop
Jul 7, 2016 02:03 PM INFO Fallback of is
Jul 7, 2016 02:03 PM INFO Adding to chain stack: >http://
Jul 7, 2016 02:03 PM INFO zmAutologin Error null and status 0
Jul 7, 2016 02:03 PM INFO ROOT APP: Stopping network pull...
Jul 7, 2016 02:03 PM INFO ROOT APP:App is going into background
Jul 7, 2016 02:03 PM INFO Checking if reCaptcha is enabled in ZM...
Jul 7, 2016 02:03 PM INFO zmAutologin called
Jul 7, 2016 02:03 PM INFO Cancelling zmAutologin timer
Jul 7, 2016 02:03 PM INFO not checking for touchID
Jul 7, 2016 02:03 PM INFO User credentials are provided
Jul 7, 2016 02:03 PM INFO Event timeline API is http:///api/events/index/StartTime >=:2016-07-07 00:00/EndTime <=:2016-07-07 13:42.json
Jul 7, 2016 02:03 PM INFO MontageHistory-footerCollapse: Calling window.stop()
Jul 7, 2016 02:03 PM INFO Event timeline API is http:///api/events/index/StartTime >=:2016-07-07 00:00/EndTime <=:2016-07-07 13:18.json
Jul 7, 2016 02:03 PM INFO MontageHistory-footerCollapse: Calling window.stop()
Jul 7, 2016 02:03 PM INFO Event timeline API is http:///api/events/index/StartTime >=:2016-07-07 00:00/EndTime <=:2016-07-07 12:50.json
Jul 7, 2016 02:03 PM INFO footerCollapse: Calling kill with 363383 because url is http:///cgi-bin/nph-zms?source=event&mode=jpeg&event=1&frame=1&replay=gapless&rate=100&connkey=363383&scale=50&rand=70800
Jul 7, 2016 02:03 PM INFO MontageHistory-footerCollapse: Not calling window stop as we just resumed
Jul 7, 2016 02:03 PM INFO Entering Portal Main
Jul 7, 2016 02:03 PM INFO >>> Resume delayed for 300 ms, to wait for network stack...
Jul 7, 2016 02:03 PM INFO App is resuming from background
Jul 7, 2016 02:02 PM INFO EventModalCtrl: paused, killing timer
Jul 7, 2016 02:02 PM INFO EventModalCtrl: paused, killing timer
Jul 7, 2016 02:02 PM INFO EventModalCtrl: paused, killing timer
Jul 7, 2016 02:02 PM INFO Cancelling zmAutologin timer
Jul 7, 2016 02:02 PM INFO ROOT APP: Stopping network pull...
Jul 7, 2016 02:02 PM INFO ROOT APP:App is going into background
Jul 7, 2016 02:01 PM INFO Stream authentication construction:
Jul 7, 2016 02:01 PM INFO DataModel: Error resolving auth key {"data":null,"status":0,"config":{"method":"GET","transformRequest":[null],"transformResponse":[null],"url":"http:///index.php?view=watch&mid=2&connkey=184104","headers":{"Accept":"application/json, text/plain, /_"},"timeout":15000},"statusText":""}
Jul 7, 2016 02:01 PM INFO Got API version: 0.0.0
Jul 7, 2016 02:01 PM INFO Taking a guess, setting ZM_EVENT_IMAGE_DIGITS to 5
Jul 7, 2016 02:01 PM ERROR Error retrieving ZM_EVENT_IMAGE_DIGITSnull
Jul 7, 2016 02:01 PM INFO Force calling resize
Jul 7, 2016 02:01 PM INFO Arranging as per packery grid
Jul 7, 2016 02:01 PM INFO Monitors that are active and not DOM hidden: 1 while grid has 1
Jul 7, 2016 02:01 PM INFO found a packery layout
Jul 7, 2016 02:01 PM INFO Stream authentication construction: &auth=c201da6840ad3cb0c9a737b7a7ec3f00
Jul 7, 2016 02:01 PM INFO DataModel: Extracted a stream authentication key of: c201da6840ad3cb0c9a737b7a7ec3f00
Jul 7, 2016 02:01 PM INFO Inside Montage Ctrl:We found 1 monitors
Jul 7, 2016 02:01 PM INFO Returning pre-loaded list of 1 monitors
Jul 7, 2016 02:01 PM INFO Force calling resize
Jul 7, 2016 02:01 PM INFO Arranging as per packery grid
Jul 7, 2016 02:01 PM INFO * BUG PROGRESS WAS NOT CALLED
Jul 7, 2016 02:01 PM INFO Monitors that are active and not DOM hidden: 1 while grid has 1
Jul 7, 2016 02:01 PM INFO found a packery layout
Jul 7, 2016 02:01 PM INFO Inside Montage Ctrl:We found 1 monitors
Jul 7, 2016 02:01 PM INFO Stream authentication construction: &auth=c201da6840ad3cb0c9a737b7a7ec3f00
Jul 7, 2016 02:01 PM INFO DataModel: Extracted a stream authentication key of: c201da6840ad3cb0c9a737b7a7ec3f00
Jul 7, 2016 02:01 PM INFO Returning pre-loaded list of 1 monitors
Jul 7, 2016 02:01 PM INFO No Event Server configured, skipping refresh
Jul 7, 2016 02:01 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 02:01 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 02:01 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 02:01 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 02:01 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 02:01 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 02:01 PM INFO Auth-Success inside EventModalCtrl: Calling window.stop()
Jul 7, 2016 02:01 PM INFO Auth-Success inside EventModalCtrl: Calling window.stop()
Jul 7, 2016 02:01 PM INFO Auth-Success inside EventModalCtrl: Calling window.stop()
Jul 7, 2016 02:01 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 02:01 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 02:01 PM INFO zmAutologin successfully logged into Zoneminder
Jul 7, 2016 02:01 PM INFO Checking if reCaptcha is enabled in ZM...
Jul 7, 2016 02:01 PM INFO zmAutologin called
Jul 7, 2016 02:01 PM INFO Based on reachability, first serverName will be
Jul 7, 2016 02:01 PM INFO Success: reachability on http:///index.php
Jul 7, 2016 02:01 PM INFO Reachability test..http:///index.php
Jul 7, 2016 02:01 PM INFO detected loop when fallsback to
Jul 7, 2016 02:01 PM INFO reached end of chain loop
Jul 7, 2016 02:01 PM INFO Fallback of is
Jul 7, 2016 02:01 PM INFO Adding to chain stack: >http://
Jul 7, 2016 02:01 PM INFO zmAutologin Error null and status 0
Jul 7, 2016 02:01 PM INFO Making sure all monitors have a fair chance...
Jul 7, 2016 02:01 PM INFO Checking if reCaptcha is enabled in ZM...
Jul 7, 2016 02:01 PM INFO zmAutologin called
Jul 7, 2016 02:01 PM INFO Cancelling zmAutologin timer
Jul 7, 2016 02:01 PM INFO not checking for touchID
Jul 7, 2016 02:01 PM INFO User credentials are provided
Jul 7, 2016 02:01 PM INFO Event timeline API is http:///api/events/index/StartTime >=:2016-07-07 00:00/EndTime <=:2016-07-07 13:42.json
Jul 7, 2016 02:01 PM INFO MontageHistory-footerCollapse: Calling window.stop()
Jul 7, 2016 02:01 PM INFO Event timeline API is http:///api/events/index/StartTime >=:2016-07-07 00:00/EndTime <=:2016-07-07 13:18.json
Jul 7, 2016 02:01 PM INFO MontageHistory-footerCollapse: Calling window.stop()
Jul 7, 2016 02:01 PM INFO Event timeline API is http:///api/events/index/StartTime >=:2016-07-07 00:00/EndTime <=:2016-07-07 12:50.json
Jul 7, 2016 02:01 PM INFO footerCollapse: Calling kill with 879231 because url is http:///cgi-bin/nph-zms?source=event&mode=jpeg&event=1&frame=1&replay=gapless&rate=100&connkey=879231&scale=50&rand=73341
Jul 7, 2016 02:01 PM INFO MontageHistory-footerCollapse: Not calling window stop as we just resumed
Jul 7, 2016 02:01 PM INFO Entering Portal Main
Jul 7, 2016 02:01 PM INFO >>> Resume delayed for 300 ms, to wait for network stack...
Jul 7, 2016 02:01 PM INFO App is resuming from background
Jul 7, 2016 01:57 PM INFO EventModalCtrl: paused, killing timer
Jul 7, 2016 01:57 PM INFO EventModalCtrl: paused, killing timer
Jul 7, 2016 01:57 PM INFO EventModalCtrl: paused, killing timer
Jul 7, 2016 01:57 PM INFO Cancelling zmAutologin timer
Jul 7, 2016 01:57 PM INFO zmAutologin Error null and status 0
Jul 7, 2016 01:57 PM INFO ROOT APP: Stopping network pull...
Jul 7, 2016 01:57 PM INFO ROOT APP:App is going into background
Jul 7, 2016 01:57 PM INFO Checking if reCaptcha is enabled in ZM...
Jul 7, 2016 01:57 PM INFO zmAutologin called
Jul 7, 2016 01:57 PM INFO Based on reachability, first serverName will be
Jul 7, 2016 01:57 PM INFO Success: reachability on http:///index.php
Jul 7, 2016 01:57 PM INFO zmAutologin Error null and status 0
Jul 7, 2016 01:57 PM INFO Reachability test..http:///index.php
Jul 7, 2016 01:57 PM INFO detected loop when fallsback to
Jul 7, 2016 01:57 PM INFO reached end of chain loop
Jul 7, 2016 01:57 PM INFO Fallback of is
Jul 7, 2016 01:57 PM INFO Adding to chain stack: >http://
Jul 7, 2016 01:57 PM INFO zmAutologin Error null and status 0
Jul 7, 2016 01:56 PM INFO Checking if reCaptcha is enabled in ZM...
Jul 7, 2016 01:56 PM INFO zmAutologin called
Jul 7, 2016 01:56 PM INFO Based on reachability, first serverName will be
Jul 7, 2016 01:56 PM INFO Success: reachability on http:///index.php
Jul 7, 2016 01:56 PM INFO Checking if reCaptcha is enabled in ZM...
Jul 7, 2016 01:56 PM INFO zmAutologin called
Jul 7, 2016 01:56 PM INFO Your network is online, re-authenticating
Jul 7, 2016 01:56 PM INFO Your network went offline
Jul 7, 2016 01:56 PM INFO Stream authentication construction: &auth=eb338a037b7db419b152adcca384d636
Jul 7, 2016 01:56 PM INFO DataModel: Extracted a stream authentication key of: eb338a037b7db419b152adcca384d636
Jul 7, 2016 01:56 PM INFO Reachability test..http:///index.php
Jul 7, 2016 01:56 PM INFO detected loop when fallsback to
Jul 7, 2016 01:56 PM INFO reached end of chain loop
Jul 7, 2016 01:56 PM INFO Fallback of is
Jul 7, 2016 01:56 PM INFO Adding to chain stack: >http://
Jul 7, 2016 01:56 PM INFO zmAutologin Error null and status 0
Jul 7, 2016 01:56 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 01:56 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 01:56 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 01:56 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 01:56 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 01:56 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 01:56 PM INFO Auth-Success inside EventModalCtrl: Calling window.stop()
Jul 7, 2016 01:56 PM INFO Auth-Success inside EventModalCtrl: Calling window.stop()
Jul 7, 2016 01:56 PM INFO Auth-Success inside EventModalCtrl: Calling window.stop()
Jul 7, 2016 01:56 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 01:56 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 01:56 PM INFO zmAutologin successfully logged into Zoneminder
Jul 7, 2016 01:56 PM INFO ZM has recaptcha disabled - good
Jul 7, 2016 01:56 PM INFO ZM has recaptcha disabled - good
Jul 7, 2016 01:56 PM INFO Checking if reCaptcha is enabled in ZM...
Jul 7, 2016 01:56 PM INFO zmAutologin called
Jul 7, 2016 01:56 PM INFO Your network is online, re-authenticating
Jul 7, 2016 01:56 PM INFO Your network went offline
Jul 7, 2016 01:56 PM INFO Checking if reCaptcha is enabled in ZM...
Jul 7, 2016 01:56 PM INFO zmAutologin called
Jul 7, 2016 01:56 PM INFO Your network is online, re-authenticating
Jul 7, 2016 01:56 PM INFO Your network went offline
Jul 7, 2016 01:56 PM INFO Stream authentication construction:
Jul 7, 2016 01:56 PM INFO DataModel: Error resolving auth key {"data":null,"status":0,"config":{"method":"GET","transformRequest":[null],"transformResponse":[null],"url":"http:///index.php?view=watch&mid=2&connkey=488868","headers":{"Accept":"application/json, text/plain, /"},"timeout":15000},"statusText":""}
Jul 7, 2016 01:56 PM INFO Got API version: 0.0.0
Jul 7, 2016 01:56 PM INFO Taking a guess, setting ZM_EVENT_IMAGE_DIGITS to 5
Jul 7, 2016 01:56 PM ERROR Error retrieving ZM_EVENT_IMAGEDIGITSnull
Jul 7, 2016 01:56 PM INFO Force calling resize
Jul 7, 2016 01:56 PM INFO Arranging as per packery grid
Jul 7, 2016 01:56 PM INFO Monitors that are active and not DOM hidden: 1 while grid has 1
Jul 7, 2016 01:56 PM INFO found a packery layout
Jul 7, 2016 01:56 PM INFO Stream authentication construction: &auth=c6a5e2ca935de2d91ac4464058280644
Jul 7, 2016 01:56 PM INFO DataModel: Extracted a stream authentication key of: c6a5e2ca935de2d91ac4464058280644
Jul 7, 2016 01:56 PM INFO Inside Montage Ctrl:We found 1 monitors
Jul 7, 2016 01:56 PM INFO Returning pre-loaded list of 1 monitors
Jul 7, 2016 01:56 PM INFO Force calling resize
Jul 7, 2016 01:56 PM INFO Arranging as per packery grid
Jul 7, 2016 01:56 PM INFO *\ BUG PROGRESS WAS NOT CALLED
Jul 7, 2016 01:56 PM INFO Monitors that are active and not DOM hidden: 1 while grid has 1
Jul 7, 2016 01:56 PM INFO found a packery layout
Jul 7, 2016 01:56 PM INFO Inside Montage Ctrl:We found 1 monitors
Jul 7, 2016 01:56 PM INFO Stream authentication construction: &auth=c6a5e2ca935de2d91ac4464058280644
Jul 7, 2016 01:56 PM INFO DataModel: Extracted a stream authentication key of: c6a5e2ca935de2d91ac4464058280644
Jul 7, 2016 01:56 PM INFO Returning pre-loaded list of 1 monitors
Jul 7, 2016 01:56 PM INFO No Event Server configured, skipping refresh
Jul 7, 2016 01:56 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 01:56 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 01:56 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 01:56 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 01:56 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 01:56 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 01:56 PM INFO Auth-Success inside EventModalCtrl: Calling window.stop()
Jul 7, 2016 01:56 PM INFO Auth-Success inside EventModalCtrl: Calling window.stop()
Jul 7, 2016 01:56 PM INFO Auth-Success inside EventModalCtrl: Calling window.stop()
Jul 7, 2016 01:56 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 01:56 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 01:56 PM INFO zmAutologin successfully logged into Zoneminder
Jul 7, 2016 01:56 PM INFO Checking if reCaptcha is enabled in ZM...
Jul 7, 2016 01:56 PM INFO zmAutologin called
Jul 7, 2016 01:56 PM INFO Based on reachability, first serverName will be
Jul 7, 2016 01:56 PM INFO Success: reachability on http:///index.php
Jul 7, 2016 01:56 PM INFO Reachability test..http:///index.php
Jul 7, 2016 01:56 PM INFO detected loop when fallsback to
Jul 7, 2016 01:56 PM INFO reached end of chain loop
Jul 7, 2016 01:56 PM INFO Fallback of is
Jul 7, 2016 01:56 PM INFO Adding to chain stack: >http://
Jul 7, 2016 01:56 PM INFO zmAutologin Error null and status 0
Jul 7, 2016 01:55 PM INFO Making sure all monitors have a fair chance...
Jul 7, 2016 01:55 PM INFO Checking if reCaptcha is enabled in ZM...
Jul 7, 2016 01:55 PM INFO zmAutologin called
Jul 7, 2016 01:55 PM INFO Cancelling zmAutologin timer
Jul 7, 2016 01:55 PM INFO not checking for touchID
Jul 7, 2016 01:55 PM INFO User credentials are provided
Jul 7, 2016 01:55 PM INFO Event timeline API is http:///api/events/index/StartTime >=:2016-07-07 00:00/EndTime <=:2016-07-07 13:42.json
Jul 7, 2016 01:55 PM INFO MontageHistory-footerCollapse: Calling window.stop()
Jul 7, 2016 01:55 PM INFO Event timeline API is http:///api/events/index/StartTime >=:2016-07-07 00:00/EndTime <=:2016-07-07 13:18.json
Jul 7, 2016 01:55 PM INFO MontageHistory-footerCollapse: Calling window.stop()
Jul 7, 2016 01:55 PM INFO Event timeline API is http:///api/events/index/StartTime >=:2016-07-07 00:00/EndTime <=:2016-07-07 12:50.json
Jul 7, 2016 01:55 PM INFO MontageHistory-footerCollapse: Not calling window stop as we just resumed
Jul 7, 2016 01:55 PM INFO Entering Portal Main
Jul 7, 2016 01:55 PM INFO >>> Resume delayed for 300 ms, to wait for network stack...
Jul 7, 2016 01:55 PM INFO App is resuming from background
Jul 7, 2016 01:55 PM INFO EventModalCtrl: paused, killing timer
Jul 7, 2016 01:55 PM INFO EventModalCtrl: paused, killing timer
Jul 7, 2016 01:55 PM INFO EventModalCtrl: paused, killing timer
Jul 7, 2016 01:55 PM INFO Cancelling zmAutologin timer
Jul 7, 2016 01:55 PM INFO ROOT APP: Stopping network pull...
Jul 7, 2016 01:55 PM INFO ROOT APP:App is going into background
Jul 7, 2016 01:54 PM INFO Stream authentication construction:
Jul 7, 2016 01:54 PM INFO DataModel: Error resolving auth key {"data":null,"status":0,"config":{"method":"GET","transformRequest":[null],"transformResponse":[null],"url":"http:///index.php?view=watch&mid=2&connkey=306918","headers":{"Accept":"application/json, text/plain, /_"},"timeout":15000},"statusText":""}
Jul 7, 2016 01:54 PM INFO Got API version: 0.0.0
Jul 7, 2016 01:54 PM INFO Taking a guess, setting ZM_EVENT_IMAGE_DIGITS to 5
Jul 7, 2016 01:54 PM ERROR Error retrieving ZM_EVENT_IMAGEDIGITSnull
Jul 7, 2016 01:53 PM INFO Force calling resize
Jul 7, 2016 01:53 PM INFO Arranging as per packery grid
Jul 7, 2016 01:53 PM INFO * BUG PROGRESS WAS NOT CALLED
Jul 7, 2016 01:53 PM INFO Monitors that are active and not DOM hidden: 1 while grid has 1
Jul 7, 2016 01:53 PM INFO found a packery layout
Jul 7, 2016 01:53 PM INFO Stream authentication construction: &auth=c6a5e2ca935de2d91ac4464058280644
Jul 7, 2016 01:53 PM INFO DataModel: Extracted a stream authentication key of: c6a5e2ca935de2d91ac4464058280644
Jul 7, 2016 01:53 PM INFO Inside Montage Ctrl:We found 1 monitors
Jul 7, 2016 01:53 PM INFO Returning pre-loaded list of 1 monitors
Jul 7, 2016 01:53 PM INFO Force calling resize
Jul 7, 2016 01:53 PM INFO Arranging as per packery grid
Jul 7, 2016 01:53 PM INFO * BUG PROGRESS WAS NOT CALLED
Jul 7, 2016 01:53 PM INFO Monitors that are active and not DOM hidden: 1 while grid has 1
Jul 7, 2016 01:53 PM INFO found a packery layout
Jul 7, 2016 01:53 PM INFO Inside Montage Ctrl:We found 1 monitors
Jul 7, 2016 01:53 PM INFO Stream authentication construction: &auth=c6a5e2ca935de2d91ac4464058280644
Jul 7, 2016 01:53 PM INFO DataModel: Extracted a stream authentication key of: c6a5e2ca935de2d91ac4464058280644
Jul 7, 2016 01:53 PM INFO Returning pre-loaded list of 1 monitors
Jul 7, 2016 01:53 PM INFO No Event Server configured, skipping refresh
Jul 7, 2016 01:53 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 01:53 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 01:53 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 01:53 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 01:53 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 01:53 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 01:53 PM INFO Auth-Success inside EventModalCtrl: Calling window.stop()
Jul 7, 2016 01:53 PM INFO Auth-Success inside EventModalCtrl: Calling window.stop()
Jul 7, 2016 01:53 PM INFO Auth-Success inside EventModalCtrl: Calling window.stop()
Jul 7, 2016 01:53 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 01:53 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 01:53 PM INFO zmAutologin successfully logged into Zoneminder
Jul 7, 2016 01:53 PM INFO Checking if reCaptcha is enabled in ZM...
Jul 7, 2016 01:53 PM INFO zmAutologin called
Jul 7, 2016 01:53 PM INFO Based on reachability, first serverName will be
Jul 7, 2016 01:53 PM INFO Success: reachability on http:///index.php
Jul 7, 2016 01:53 PM INFO Reachability test..http:///index.php
Jul 7, 2016 01:53 PM INFO detected loop when fallsback to
Jul 7, 2016 01:53 PM INFO reached end of chain loop
Jul 7, 2016 01:53 PM INFO Fallback of is
Jul 7, 2016 01:53 PM INFO Adding to chain stack: >http://
Jul 7, 2016 01:53 PM INFO zmAutologin Error null and status 0
Jul 7, 2016 01:53 PM INFO Checking if reCaptcha is enabled in ZM...
Jul 7, 2016 01:53 PM INFO zmAutologin called
Jul 7, 2016 01:53 PM INFO Cancelling zmAutologin timer
Jul 7, 2016 01:53 PM INFO not checking for touchID
Jul 7, 2016 01:53 PM INFO User credentials are provided
Jul 7, 2016 01:53 PM INFO Event timeline API is http:///api/events/index/StartTime >=:2016-07-07 00:00/EndTime <=:2016-07-07 13:42.json
Jul 7, 2016 01:53 PM INFO MontageHistory-footerCollapse: Calling window.stop()
Jul 7, 2016 01:53 PM INFO Event timeline API is http:///api/events/index/StartTime >=:2016-07-07 00:00/EndTime <=:2016-07-07 13:18.json
Jul 7, 2016 01:53 PM INFO MontageHistory-footerCollapse: Calling window.stop()
Jul 7, 2016 01:53 PM INFO Event timeline API is http:///api/events/index/StartTime >=:2016-07-07 00:00/EndTime <=:2016-07-07 12:50.json
Jul 7, 2016 01:53 PM INFO footerCollapse: Calling kill with 578444 because url is http:///cgi-bin/nph-zms?source=event&mode=jpeg&event=1&frame=1&replay=gapless&rate=100&connkey=578444&scale=50&rand=46645
Jul 7, 2016 01:53 PM INFO MontageHistory-footerCollapse: Not calling window stop as we just resumed
Jul 7, 2016 01:53 PM INFO Entering Portal Main
Jul 7, 2016 01:53 PM INFO >>> Resume delayed for 300 ms, to wait for network stack...
Jul 7, 2016 01:53 PM INFO App is resuming from background
Jul 7, 2016 01:52 PM INFO EventModalCtrl: paused, killing timer
Jul 7, 2016 01:52 PM INFO EventModalCtrl: paused, killing timer
Jul 7, 2016 01:52 PM INFO EventModalCtrl: paused, killing timer
Jul 7, 2016 01:52 PM INFO Cancelling zmAutologin timer
Jul 7, 2016 01:52 PM INFO ROOT APP: Stopping network pull...
Jul 7, 2016 01:52 PM INFO ROOT APP:App is going into background
Jul 7, 2016 01:51 PM INFO Force calling resize
Jul 7, 2016 01:51 PM INFO Arranging as per packery grid
Jul 7, 2016 01:51 PM INFO Monitors that are active and not DOM hidden: 1 while grid has 1
Jul 7, 2016 01:51 PM INFO found a packery layout
Jul 7, 2016 01:51 PM INFO Stream authentication construction: &auth=c6a5e2ca935de2d91ac4464058280644
Jul 7, 2016 01:51 PM INFO DataModel: Extracted a stream authentication key of: c6a5e2ca935de2d91ac4464058280644
Jul 7, 2016 01:51 PM INFO Inside Montage Ctrl:We found 1 monitors
Jul 7, 2016 01:51 PM INFO Returning pre-loaded list of 1 monitors
Jul 7, 2016 01:50 PM INFO Failed reachability on http:///index.php with error {"data":null,"status":0,"config":{"method":"GET","transformRequest":[null],"transformResponse":[null],"url":"http:///index.php","headers":{"Accept":"application/json, text/plain, /"},"timeout":15000},"statusText":""}
Jul 7, 2016 01:50 PM INFO Reachability test..http:///index.php
Jul 7, 2016 01:50 PM INFO detected loop when fallsback to
Jul 7, 2016 01:50 PM INFO reached end of chain loop
Jul 7, 2016 01:50 PM INFO Fallback of is
Jul 7, 2016 01:50 PM INFO Adding to chain stack: >http://
Jul 7, 2016 01:50 PM INFO zmAutologin Error null and status 0
Jul 7, 2016 01:50 PM INFO Making sure all monitors have a fair chance...
Jul 7, 2016 01:50 PM INFO Checking if reCaptcha is enabled in ZM...
Jul 7, 2016 01:50 PM INFO zmAutologin called
Jul 7, 2016 01:50 PM INFO Cancelling zmAutologin timer
Jul 7, 2016 01:50 PM INFO not checking for touchID
Jul 7, 2016 01:50 PM INFO User credentials are provided
Jul 7, 2016 01:50 PM INFO Event timeline API is http:///api/events/index/StartTime >=:2016-07-07 00:00/EndTime <=:2016-07-07 13:42.json
Jul 7, 2016 01:50 PM INFO MontageHistory-footerCollapse: Calling window.stop()
Jul 7, 2016 01:50 PM INFO Event timeline API is http:///api/events/index/StartTime >=:2016-07-07 00:00/EndTime <=:2016-07-07 13:18.json
Jul 7, 2016 01:50 PM INFO MontageHistory-footerCollapse: Calling window.stop()
Jul 7, 2016 01:50 PM INFO Event timeline API is http:///api/events/index/StartTime >=:2016-07-07 00:00/EndTime <=:2016-07-07 12:50.json
Jul 7, 2016 01:50 PM INFO MontageHistory-footerCollapse: Not calling window stop as we just resumed
Jul 7, 2016 01:50 PM INFO Entering Portal Main
Jul 7, 2016 01:50 PM INFO >>> Resume delayed for 300 ms, to wait for network stack...
Jul 7, 2016 01:50 PM INFO App is resuming from background
Jul 7, 2016 01:50 PM INFO EventModalCtrl: paused, killing timer
Jul 7, 2016 01:50 PM INFO EventModalCtrl: paused, killing timer
Jul 7, 2016 01:50 PM INFO EventModalCtrl: paused, killing timer
Jul 7, 2016 01:50 PM INFO Cancelling zmAutologin timer
Jul 7, 2016 01:50 PM INFO ROOT APP: Stopping network pull...
Jul 7, 2016 01:50 PM INFO ROOT APP:App is going into background
Jul 7, 2016 01:49 PM INFO Stream authentication construction:
Jul 7, 2016 01:49 PM INFO DataModel: Error resolving auth key {"data":null,"status":0,"config":{"method":"GET","transformRequest":[null],"transformResponse":[null],"url":"http:///index.php?view=watch&mid=2&connkey=800785","headers":{"Accept":"application/json, text/plain, /_"},"timeout":15000},"statusText":""}
Jul 7, 2016 01:49 PM INFO Got API version: 0.0.0
Jul 7, 2016 01:49 PM INFO Taking a guess, setting ZM_EVENT_IMAGE_DIGITS to 5
Jul 7, 2016 01:49 PM ERROR Error retrieving ZM_EVENT_IMAGEDIGITSnull
Jul 7, 2016 01:48 PM INFO Force calling resize
Jul 7, 2016 01:48 PM INFO Arranging as per packery grid
Jul 7, 2016 01:48 PM INFO Monitors that are active and not DOM hidden: 1 while grid has 1
Jul 7, 2016 01:48 PM INFO found a packery layout
Jul 7, 2016 01:48 PM INFO Stream authentication construction: &auth=c6a5e2ca935de2d91ac4464058280644
Jul 7, 2016 01:48 PM INFO DataModel: Extracted a stream authentication key of: c6a5e2ca935de2d91ac4464058280644
Jul 7, 2016 01:48 PM INFO Inside Montage Ctrl:We found 1 monitors
Jul 7, 2016 01:48 PM INFO Returning pre-loaded list of 1 monitors
Jul 7, 2016 01:48 PM INFO Force calling resize
Jul 7, 2016 01:48 PM INFO Arranging as per packery grid
Jul 7, 2016 01:48 PM INFO *\ BUG PROGRESS WAS NOT CALLED
Jul 7, 2016 01:48 PM INFO Monitors that are active and not DOM hidden: 1 while grid has 1
Jul 7, 2016 01:48 PM INFO found a packery layout
Jul 7, 2016 01:48 PM INFO Inside Montage Ctrl:We found 1 monitors
Jul 7, 2016 01:48 PM INFO Stream authentication construction: &auth=c6a5e2ca935de2d91ac4464058280644
Jul 7, 2016 01:48 PM INFO DataModel: Extracted a stream authentication key of: c6a5e2ca935de2d91ac4464058280644
Jul 7, 2016 01:48 PM INFO Returning pre-loaded list of 1 monitors
Jul 7, 2016 01:48 PM INFO No Event Server configured, skipping refresh
Jul 7, 2016 01:48 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 01:48 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 01:48 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 01:48 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 01:48 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 01:48 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 01:48 PM INFO Auth-Success inside EventModalCtrl: Calling window.stop()
Jul 7, 2016 01:48 PM INFO Auth-Success inside EventModalCtrl: Calling window.stop()
Jul 7, 2016 01:48 PM INFO Auth-Success inside EventModalCtrl: Calling window.stop()
Jul 7, 2016 01:48 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 01:48 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 01:48 PM INFO zmAutologin successfully logged into Zoneminder
Jul 7, 2016 01:48 PM INFO Checking if reCaptcha is enabled in ZM...
Jul 7, 2016 01:48 PM INFO zmAutologin called
Jul 7, 2016 01:48 PM INFO Based on reachability, first serverName will be
Jul 7, 2016 01:48 PM INFO Success: reachability on http:///index.php
Jul 7, 2016 01:48 PM INFO Reachability test..http:///index.php
Jul 7, 2016 01:48 PM INFO detected loop when fallsback to
Jul 7, 2016 01:48 PM INFO reached end of chain loop
Jul 7, 2016 01:48 PM INFO Fallback of is
Jul 7, 2016 01:48 PM INFO Adding to chain stack: >http://
Jul 7, 2016 01:48 PM INFO zmAutologin Error null and status 0
Jul 7, 2016 01:48 PM INFO Checking if reCaptcha is enabled in ZM...
Jul 7, 2016 01:48 PM INFO zmAutologin called
Jul 7, 2016 01:48 PM INFO Cancelling zmAutologin timer
Jul 7, 2016 01:48 PM INFO not checking for touchID
Jul 7, 2016 01:48 PM INFO User credentials are provided
Jul 7, 2016 01:48 PM INFO Event timeline API is http:///api/events/index/StartTime >=:2016-07-07 00:00/EndTime <=:2016-07-07 13:42.json
Jul 7, 2016 01:48 PM INFO MontageHistory-footerCollapse: Calling window.stop()
Jul 7, 2016 01:48 PM INFO Event timeline API is http:///api/events/index/StartTime >=:2016-07-07 00:00/EndTime <=:2016-07-07 13:18.json
Jul 7, 2016 01:48 PM INFO MontageHistory-footerCollapse: Calling window.stop()
Jul 7, 2016 01:48 PM INFO Event timeline API is http:///api/events/index/StartTime >=:2016-07-07 00:00/EndTime <=:2016-07-07 12:50.json
Jul 7, 2016 01:48 PM INFO MontageHistory-footerCollapse: Not calling window stop as we just resumed
Jul 7, 2016 01:48 PM INFO Entering Portal Main
Jul 7, 2016 01:48 PM INFO >>> Resume delayed for 300 ms, to wait for network stack...
Jul 7, 2016 01:48 PM INFO App is resuming from background
Jul 7, 2016 01:44 PM INFO EventModalCtrl: paused, killing timer
Jul 7, 2016 01:44 PM INFO EventModalCtrl: paused, killing timer
Jul 7, 2016 01:44 PM INFO EventModalCtrl: paused, killing timer
Jul 7, 2016 01:44 PM INFO Cancelling zmAutologin timer
Jul 7, 2016 01:44 PM INFO ROOT APP: Stopping network pull...
Jul 7, 2016 01:44 PM INFO ROOT APP:App is going into background
Jul 7, 2016 01:43 PM INFO Failed reachability on http:///index.php with error {"data":null,"status":0,"config":{"method":"GET","transformRequest":[null],"transformResponse":[null],"url":"http:///index.php","headers":{"Accept":"application/json, text/plain, /"},"timeout":15000},"statusText":""}
Jul 7, 2016 01:43 PM INFO Reachability test..http:///index.php
Jul 7, 2016 01:43 PM INFO detected loop when fallsback to
Jul 7, 2016 01:43 PM INFO reached end of chain loop
Jul 7, 2016 01:43 PM INFO Fallback of is
Jul 7, 2016 01:43 PM INFO Adding to chain stack: >http://
Jul 7, 2016 01:43 PM INFO zmAutologin Error null and status 0
Jul 7, 2016 01:43 PM INFO Stream authentication construction:
Jul 7, 2016 01:43 PM INFO DataModel: Error resolving auth key {"data":null,"status":0,"config":{"method":"GET","transformRequest":[null],"transformResponse":[null],"url":"http:///index.php?view=watch&mid=2&connkey=103692","headers":{"Accept":"application/json, text/plain, /"},"timeout":15000},"statusText":""}
Jul 7, 2016 01:43 PM INFO Checking if reCaptcha is enabled in ZM...
Jul 7, 2016 01:43 PM INFO zmAutologin called
Jul 7, 2016 01:43 PM INFO Force calling resize
Jul 7, 2016 01:43 PM INFO Arranging as per packery grid
Jul 7, 2016 01:43 PM INFO *\ BUG PROGRESS WAS NOT CALLED
Jul 7, 2016 01:43 PM INFO Monitors that are active and not DOM hidden: 1 while grid has 1
Jul 7, 2016 01:43 PM INFO found a packery layout
Jul 7, 2016 01:43 PM INFO Inside Montage Ctrl:We found 1 monitors
Jul 7, 2016 01:43 PM INFO Returning pre-loaded list of 1 monitors
Jul 7, 2016 01:42 PM INFO Stream authentication construction:
Jul 7, 2016 01:42 PM INFO DataModel: Error resolving auth key {"data":null,"status":0,"config":{"method":"GET","transformRequest":[null],"transformResponse":[null],"url":"http:///index.php?view=watch&mid=2&connkey=693231","headers":{"Accept":"application/json, text/plain, /"},"timeout":15000},"statusText":""}
Jul 7, 2016 01:42 PM INFO Force calling resize
Jul 7, 2016 01:42 PM INFO Arranging as per packery grid
Jul 7, 2016 01:42 PM INFO *\ BUG PROGRESS WAS NOT CALLED
Jul 7, 2016 01:42 PM INFO Monitors that are active and not DOM hidden: 1 while grid has 1
Jul 7, 2016 01:42 PM INFO found a packery layout
Jul 7, 2016 01:42 PM INFO Inside Montage Ctrl:We found 1 monitors
Jul 7, 2016 01:42 PM INFO Stream authentication construction:
Jul 7, 2016 01:42 PM INFO DataModel: Error resolving auth key {"data":null,"status":0,"config":{"method":"GET","transformRequest":[null],"transformResponse":[null],"url":"http:///index.php?view=watch&mid=2&connkey=undefined","headers":{"Accept":"application/json, text/plain, /"},"timeout":15000},"statusText":""}
Jul 7, 2016 01:42 PM INFO MontageHistory-beforeLeave: Calling window.stop()
Jul 7, 2016 01:42 PM INFO Forcing a window.stop() here
Jul 7, 2016 01:42 PM INFO MontageHistory:Stopping network pull...
Jul 7, 2016 01:42 PM INFO Cancelling event query timer
Jul 7, 2016 01:42 PM INFO BeforeLeave: Nullifying the streams...
Jul 7, 2016 01:42 PM INFO Returning pre-loaded list of 1 monitors
Jul 7, 2016 01:42 PM INFO Stream authentication construction:
Jul 7, 2016 01:42 PM INFO DataModel: Error resolving auth key {"data":null,"status":0,"config":{"method":"GET","transformRequest":[null],"transformResponse":[null],"url":"http:///index.php?view=watch&mid=2&connkey=705011","headers":{"Accept":"application/json, text/plain, /"},"timeout":15000},"statusText":""}
Jul 7, 2016 01:42 PM INFO Event timeline API is http:///api/events/index/StartTime >=:2016-07-07 00:00/EndTime <=:2016-07-07 13:42.json
Jul 7, 2016 01:42 PM INFO MontageHistory-footerCollapse: Calling window.stop()
Jul 7, 2016 01:42 PM INFO Stored montage order does not exist
Jul 7, 2016 01:42 PM INFO Inside MontageHistoryCtrl:We found 1 monitors
Jul 7, 2016 01:42 PM INFO Stored montage order does not exist
Jul 7, 2016 01:42 PM INFO Returning pre-loaded list of 1 monitors
Jul 7, 2016 01:42 PM INFO Force calling resize
Jul 7, 2016 01:42 PM INFO Arranging as per packery grid
Jul 7, 2016 01:42 PM INFO * BUG PROGRESS WAS NOT CALLED
Jul 7, 2016 01:42 PM INFO Monitors that are active and not DOM hidden: 1 while grid has 1
Jul 7, 2016 01:42 PM INFO found a packery layout
Jul 7, 2016 01:42 PM INFO Inside Montage Ctrl:We found 1 monitors
Jul 7, 2016 01:42 PM INFO Returning pre-loaded list of 1 monitors
Jul 7, 2016 01:40 PM INFO Stream authentication construction: &auth=c6a5e2ca935de2d91ac4464058280644
Jul 7, 2016 01:40 PM INFO DataModel: Extracted a stream authentication key of: c6a5e2ca935de2d91ac4464058280644
Jul 7, 2016 01:40 PM INFO Force calling resize
Jul 7, 2016 01:40 PM INFO Arranging as per packery grid
Jul 7, 2016 01:40 PM INFO * BUG PROGRESS WAS NOT CALLED
Jul 7, 2016 01:40 PM INFO Monitors that are active and not DOM hidden: 1 while grid has 1
Jul 7, 2016 01:40 PM INFO found a packery layout
Jul 7, 2016 01:40 PM INFO Inside Montage Ctrl:We found 1 monitors
Jul 7, 2016 01:40 PM INFO Returning pre-loaded list of 1 monitors
Jul 7, 2016 01:40 PM INFO Event timeline API is http:///api/events/index/StartTime >=:2016-07-07 00:00/EndTime <=:2016-07-07 13:18.json
Jul 7, 2016 01:40 PM INFO MontageHistory-footerCollapse: Calling window.stop()
Jul 7, 2016 01:40 PM INFO Event timeline API is http:///api/events/index/StartTime >=:2016-07-07 00:00/EndTime <=:2016-07-07 12:50.json
Jul 7, 2016 01:40 PM INFO MontageHistory-footerCollapse: Calling window.stop()
Jul 7, 2016 01:40 PM INFO Event timeline API is http:///api/events/index/StartTime >=:2016-07-07 00:00/EndTime <=:2016-07-07 13:18.json
Jul 7, 2016 01:40 PM INFO MontageHistory-footerCollapse: Calling window.stop()
Jul 7, 2016 01:40 PM INFO Event timeline API is http:///api/events/index/StartTime >=:2016-07-07 00:00/EndTime <=:2016-07-07 12:50.json
Jul 7, 2016 01:40 PM INFO footerCollapse: Calling kill with 924429 because url is http:///cgi-bin/nph-zms?source=event&mode=jpeg&event=1&frame=1&replay=gapless&rate=100&connkey=924429&scale=50&rand=22834
Jul 7, 2016 01:40 PM INFO Stream authentication construction:
Jul 7, 2016 01:40 PM INFO DataModel: Error resolving auth key {"data":null,"status":0,"config":{"method":"GET","transformRequest":[null],"transformResponse":[null],"url":"http:///index.php?view=watch&mid=2&connkey=253275","headers":{"Accept":"application/json, text/plain, /_"},"timeout":15000},"statusText":""}
Jul 7, 2016 01:40 PM INFO Taking a guess, setting ZM_EVENT_IMAGE_DIGITS to 5
Jul 7, 2016 01:40 PM ERROR Error retrieving ZM_EVENT_IMAGEDIGITSnull
Jul 7, 2016 01:40 PM INFO Got API version: 0.0.0
Jul 7, 2016 01:40 PM INFO MontageHistory-footerCollapse: Calling window.stop()
Jul 7, 2016 01:39 PM INFO Force calling resize
Jul 7, 2016 01:39 PM INFO Arranging as per packery grid
Jul 7, 2016 01:39 PM INFO *\ BUG PROGRESS WAS NOT CALLED
Jul 7, 2016 01:39 PM INFO Monitors that are active and not DOM hidden: 1 while grid has 1
Jul 7, 2016 01:39 PM INFO found a packery layout
Jul 7, 2016 01:39 PM INFO Inside Montage Ctrl:We found 1 monitors
Jul 7, 2016 01:39 PM INFO Stream authentication construction: &auth=c6a5e2ca935de2d91ac4464058280644
Jul 7, 2016 01:39 PM INFO DataModel: Extracted a stream authentication key of: c6a5e2ca935de2d91ac4464058280644
Jul 7, 2016 01:39 PM INFO Returning pre-loaded list of 1 monitors
Jul 7, 2016 01:39 PM INFO No Event Server configured, skipping refresh
Jul 7, 2016 01:39 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 01:39 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 01:39 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 01:39 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 01:39 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 01:39 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 01:39 PM INFO Auth-Success inside EventModalCtrl: Calling window.stop()
Jul 7, 2016 01:39 PM INFO Auth-Success inside EventModalCtrl: Calling window.stop()
Jul 7, 2016 01:39 PM INFO Auth-Success inside EventModalCtrl: Calling window.stop()
Jul 7, 2016 01:39 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 01:39 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 01:39 PM INFO zmAutologin successfully logged into Zoneminder
Jul 7, 2016 01:39 PM INFO Checking if reCaptcha is enabled in ZM...
Jul 7, 2016 01:39 PM INFO zmAutologin called
Jul 7, 2016 01:39 PM INFO Based on reachability, first serverName will be
Jul 7, 2016 01:39 PM INFO Success: reachability on http:///index.php
Jul 7, 2016 01:39 PM INFO Reachability test..http:///index.php
Jul 7, 2016 01:39 PM INFO detected loop when fallsback to
Jul 7, 2016 01:39 PM INFO reached end of chain loop
Jul 7, 2016 01:39 PM INFO Fallback of is
Jul 7, 2016 01:39 PM INFO Adding to chain stack: >http://
Jul 7, 2016 01:39 PM INFO zmAutologin Error null and status 0
Jul 7, 2016 01:39 PM INFO Making sure all monitors have a fair chance...
Jul 7, 2016 01:39 PM INFO Checking if reCaptcha is enabled in ZM...
Jul 7, 2016 01:39 PM INFO zmAutologin called
Jul 7, 2016 01:39 PM INFO Cancelling zmAutologin timer
Jul 7, 2016 01:39 PM INFO not checking for touchID
Jul 7, 2016 01:39 PM INFO User credentials are provided
Jul 7, 2016 01:39 PM INFO Event timeline API is http:///api/events/index/StartTime >=:2016-07-07 00:00/EndTime <=:2016-07-07 13:18.json
Jul 7, 2016 01:39 PM INFO MontageHistory-footerCollapse: Calling window.stop()
Jul 7, 2016 01:39 PM INFO Event timeline API is http:///api/events/index/StartTime >=:2016-07-07 00:00/EndTime <=:2016-07-07 12:50.json
Jul 7, 2016 01:39 PM INFO MontageHistory-footerCollapse: Not calling window stop as we just resumed
Jul 7, 2016 01:39 PM INFO Entering Portal Main
Jul 7, 2016 01:39 PM INFO >>> Resume delayed for 300 ms, to wait for network stack...
Jul 7, 2016 01:39 PM INFO App is resuming from background
Jul 7, 2016 01:31 PM INFO EventModalCtrl: paused, killing timer
Jul 7, 2016 01:31 PM INFO EventModalCtrl: paused, killing timer
Jul 7, 2016 01:31 PM INFO EventModalCtrl: paused, killing timer
Jul 7, 2016 01:31 PM INFO Cancelling zmAutologin timer
Jul 7, 2016 01:31 PM INFO ROOT APP: Stopping network pull...
Jul 7, 2016 01:31 PM INFO ROOT APP:App is going into background
Jul 7, 2016 01:31 PM INFO Failed reachability on http:///index.php with error {"data":null,"status":0,"config":{"method":"GET","transformRequest":[null],"transformResponse":[null],"url":"http:///index.php","headers":{"Accept":"application/json, text/plain, /"},"timeout":15000},"statusText":""}
Jul 7, 2016 01:31 PM INFO Reachability test..http:///index.php
Jul 7, 2016 01:31 PM INFO detected loop when fallsback to
Jul 7, 2016 01:31 PM INFO reached end of chain loop
Jul 7, 2016 01:31 PM INFO Fallback of is
Jul 7, 2016 01:31 PM INFO Adding to chain stack: >http://
Jul 7, 2016 01:31 PM INFO zmAutologin Error null and status 0
Jul 7, 2016 01:31 PM INFO Checking if reCaptcha is enabled in ZM...
Jul 7, 2016 01:31 PM INFO zmAutologin called
Jul 7, 2016 01:27 PM INFO Stream authentication construction:
Jul 7, 2016 01:27 PM INFO DataModel: Error resolving auth key {"data":null,"status":0,"config":{"method":"GET","transformRequest":[null],"transformResponse":[null],"url":"http:///index.php?view=watch&mid=2&connkey=716601","headers":{"Accept":"application/json, text/plain, /"},"timeout":15000},"statusText":""}
Jul 7, 2016 01:27 PM INFO Force calling resize
Jul 7, 2016 01:27 PM INFO Arranging as per packery grid
Jul 7, 2016 01:27 PM INFO *\ BUG PROGRESS WAS NOT CALLED
Jul 7, 2016 01:27 PM INFO Monitors that are active and not DOM hidden: 1 while grid has 1
Jul 7, 2016 01:27 PM INFO found a packery layout
Jul 7, 2016 01:27 PM INFO Inside Montage Ctrl:We found 1 monitors
Jul 7, 2016 01:27 PM INFO Returning pre-loaded list of 1 monitors
Jul 7, 2016 01:27 PM INFO Stream authentication construction:
Jul 7, 2016 01:27 PM INFO DataModel: Error resolving auth key {"data":null,"status":0,"config":{"method":"GET","transformRequest":[null],"transformResponse":[null],"url":"http:///index.php?view=watch&mid=2&connkey=516212","headers":{"Accept":"application/json, text/plain, /"},"timeout":15000},"statusText":""}
Jul 7, 2016 01:27 PM INFO Force calling resize
Jul 7, 2016 01:27 PM INFO Arranging as per packery grid
Jul 7, 2016 01:27 PM INFO *\ BUG PROGRESS WAS NOT CALLED
Jul 7, 2016 01:27 PM INFO Monitors that are active and not DOM hidden: 1 while grid has 1
Jul 7, 2016 01:27 PM INFO found a packery layout
Jul 7, 2016 01:27 PM INFO Inside Montage Ctrl:We found 1 monitors
Jul 7, 2016 01:27 PM INFO Returning pre-loaded list of 1 monitors
Jul 7, 2016 01:26 PM INFO Failed reachability on http:///index.php with error {"data":null,"status":0,"config":{"method":"GET","transformRequest":[null],"transformResponse":[null],"url":"http:///index.php","headers":{"Accept":"application/json, text/plain, /"},"timeout":15000},"statusText":""}
Jul 7, 2016 01:26 PM INFO Reachability test..http:///index.php
Jul 7, 2016 01:26 PM INFO detected loop when fallsback to
Jul 7, 2016 01:26 PM INFO reached end of chain loop
Jul 7, 2016 01:26 PM INFO Fallback of is
Jul 7, 2016 01:26 PM INFO Adding to chain stack: >http://
Jul 7, 2016 01:26 PM INFO zmAutologin Error null and status 0
Jul 7, 2016 01:26 PM INFO Checking if reCaptcha is enabled in ZM...
Jul 7, 2016 01:26 PM INFO zmAutologin called
Jul 7, 2016 01:25 PM ERROR Error sending event command null
Jul 7, 2016 01:24 PM INFO configurePTZ 2 is not PTZ controllable
Jul 7, 2016 01:24 PM INFO Switching playback via nphzms
Jul 7, 2016 01:24 PM INFO MontageCtrl:Stopping network pull...
Jul 7, 2016 01:24 PM INFO Restarting montage timer, closing Modal...
Jul 7, 2016 01:24 PM INFO Setting timer to play nph-zms mode
Jul 7, 2016 01:24 PM INFO New image loaded in
Jul 7, 2016 01:24 PM INFO MonitorModal-outwithOld: Calling window.stop()
Jul 7, 2016 01:24 PM INFO ModalCtrl:Stopping network pull...
Jul 7, 2016 01:24 PM ERROR configurePTZ : Error retrieving PTZ command null
Jul 7, 2016 01:24 PM INFO Modal: Stream authentication construction:
Jul 7, 2016 01:24 PM INFO DataModel: Error resolving auth key {"data":null,"status":0,"config":{"method":"GET","transformRequest":[null],"transformResponse":[null],"url":"http:///index.php?view=watch&mid=2&connkey=924429","headers":{"Accept":"application/json, text/plain, /"},"timeout":15000},"statusText":""}
Jul 7, 2016 01:24 PM INFO Switching playback via nphzms
Jul 7, 2016 01:24 PM INFO Using stream mode single
Jul 7, 2016 01:24 PM INFO Cancelling montage timer, opening Modal
Jul 7, 2016 01:24 PM INFO Failed reachability on http:///index.php with error {"data":null,"status":0,"config":{"method":"GET","transformRequest":[null],"transformResponse":[null],"url":"http:///index.php","headers":{"Accept":"application/json, text/plain, /"},"timeout":15000},"statusText":""}
Jul 7, 2016 01:24 PM INFO API login error null
Jul 7, 2016 01:24 PM INFO Stream authentication construction:
Jul 7, 2016 01:24 PM INFO DataModel: Error resolving auth key {"data":null,"status":0,"config":{"method":"GET","transformRequest":[null],"transformResponse":[null],"url":"http:///index.php?view=watch&mid=2&connkey=undefined","headers":{"Accept":"application/json, text/plain, /_"},"timeout":15000},"statusText":""}
Jul 7, 2016 01:23 PM INFO Reachability test..http:///index.php
Jul 7, 2016 01:23 PM INFO detected loop when fallsback to
Jul 7, 2016 01:23 PM INFO reached end of chain loop
Jul 7, 2016 01:23 PM INFO Fallback of is
Jul 7, 2016 01:23 PM INFO Adding to chain stack: >http://
Jul 7, 2016 01:23 PM INFO API login error null
Jul 7, 2016 01:23 PM INFO zmAutologin Error null and status 0
Jul 7, 2016 01:23 PM INFO Validating APIs at http:///api/host/getVersion.json
Jul 7, 2016 01:23 PM INFO ZM_EVENT_IMAGEDIGITS is already configured for 5
Jul 7, 2016 01:23 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 01:23 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 01:23 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 01:23 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 01:23 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 01:23 PM INFO Auth-Success inside EventModalCtrl: Calling window.stop()
Jul 7, 2016 01:23 PM INFO Auth-Success inside EventModalCtrl: Calling window.stop()
Jul 7, 2016 01:23 PM INFO Auth-Success inside EventModalCtrl: Calling window.stop()
Jul 7, 2016 01:23 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 01:23 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 01:23 PM INFO zmAutologin successfully logged into Zoneminder
Jul 7, 2016 01:23 PM INFO Stream authentication construction: &auth=c6a5e2ca935de2d91ac4464058280644
Jul 7, 2016 01:23 PM INFO DataModel: Extracted a stream authentication key of: c6a5e2ca935de2d91ac4464058280644
Jul 7, 2016 01:23 PM INFO Stream authentication construction:
Jul 7, 2016 01:23 PM INFO Checking if reCaptcha is enabled in ZM...
Jul 7, 2016 01:23 PM INFO zmAutologin called
Jul 7, 2016 01:23 PM INFO DataModel: Error resolving auth key {"data":null,"status":0,"config":{"method":"GET","transformRequest":[null],"transformResponse":[null],"url":"http:///index.php?view=watch&mid=2&connkey=184642","headers":{"Accept":"application/json, text/plain, /_"},"timeout":15000},"statusText":""}
Jul 7, 2016 01:23 PM INFO Checking if reCaptcha is enabled in ZM...
Jul 7, 2016 01:23 PM INFO zmAutologin called
Jul 7, 2016 01:23 PM INFO Validating APIs at http:///api/host/getVersion.json
Jul 7, 2016 01:23 PM INFO ZM_EVENT_IMAGEDIGITS is already configured for 5
Jul 7, 2016 01:23 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 01:23 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 01:23 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 01:23 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 01:23 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 01:23 PM INFO Auth-Success inside EventModalCtrl: Calling window.stop()
Jul 7, 2016 01:23 PM INFO Auth-Success inside EventModalCtrl: Calling window.stop()
Jul 7, 2016 01:23 PM INFO Auth-Success inside EventModalCtrl: Calling window.stop()
Jul 7, 2016 01:23 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 01:23 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 01:23 PM INFO zmAutologin successfully logged into Zoneminder
Jul 7, 2016 01:23 PM INFO Checking if reCaptcha is enabled in ZM...
Jul 7, 2016 01:23 PM INFO zmAutologin called
Jul 7, 2016 01:23 PM INFO Force calling resize
Jul 7, 2016 01:23 PM INFO Arranging as per packery grid
Jul 7, 2016 01:23 PM INFO *\ BUG PROGRESS WAS NOT CALLED
Jul 7, 2016 01:23 PM INFO Monitors that are active and not DOM hidden: 1 while grid has 1
Jul 7, 2016 01:23 PM INFO found a packery layout
Jul 7, 2016 01:23 PM INFO Inside Montage Ctrl:We found 1 monitors
Jul 7, 2016 01:23 PM INFO Returning pre-loaded list of 1 monitors
Jul 7, 2016 01:23 PM INFO Stream authentication construction:
Jul 7, 2016 01:23 PM INFO DataModel: Error resolving auth key {"data":null,"status":0,"config":{"method":"GET","transformRequest":[null],"transformResponse":[null],"url":"https:///index.php?view=watch&mid=2&connkey=4422","headers":{"Accept":"application/json, text/plain, /"},"timeout":15000},"statusText":""}
Jul 7, 2016 01:23 PM INFO Force calling resize
Jul 7, 2016 01:23 PM INFO Arranging as per packery grid
Jul 7, 2016 01:23 PM INFO *\ BUG PROGRESS WAS NOT CALLED
Jul 7, 2016 01:23 PM INFO Monitors that are active and not DOM hidden: 1 while grid has 1
Jul 7, 2016 01:23 PM INFO found a packery layout
Jul 7, 2016 01:23 PM INFO Inside Montage Ctrl:We found 1 monitors
Jul 7, 2016 01:23 PM INFO Returning pre-loaded list of 1 monitors
Jul 7, 2016 01:23 PM INFO Failed reachability on https:///index.php with error {"data":null,"status":0,"config":{"method":"GET","transformRequest":[null],"transformResponse":[null],"url":"https:///index.php","headers":{"Accept":"application/json, text/plain, /"},"timeout":15000},"statusText":""}
Jul 7, 2016 01:23 PM INFO Reachability test..https:///index.php
Jul 7, 2016 01:23 PM INFO detected loop when fallsback to
Jul 7, 2016 01:23 PM INFO reached end of chain loop
Jul 7, 2016 01:23 PM INFO Fallback of is
Jul 7, 2016 01:23 PM INFO Adding to chain stack: >https://
Jul 7, 2016 01:23 PM INFO zmAutologin Error null and status 0
Jul 7, 2016 01:22 PM INFO Checking if reCaptcha is enabled in ZM...
Jul 7, 2016 01:22 PM INFO zmAutologin called
Jul 7, 2016 01:22 PM INFO Stream authentication construction:
Jul 7, 2016 01:22 PM INFO DataModel: Error resolving auth key {"data":null,"status":0,"config":{"method":"GET","transformRequest":[null],"transformResponse":[null],"url":"http:///index.php?view=watch&mid=2&connkey=821283","headers":{"Accept":"application/json, text/plain, /"},"timeout":15000},"statusText":""}
Jul 7, 2016 01:22 PM INFO Force calling resize
Jul 7, 2016 01:22 PM INFO Arranging as per packery grid
Jul 7, 2016 01:22 PM INFO Monitors that are active and not DOM hidden: 1 while grid has 1
Jul 7, 2016 01:22 PM INFO found a packery layout
Jul 7, 2016 01:22 PM INFO Stream authentication construction: &auth=c6a5e2ca935de2d91ac4464058280644
Jul 7, 2016 01:22 PM INFO DataModel: Extracted a stream authentication key of: c6a5e2ca935de2d91ac4464058280644
Jul 7, 2016 01:22 PM INFO Inside Montage Ctrl:We found 1 monitors
Jul 7, 2016 01:22 PM INFO Returning pre-loaded list of 1 monitors
Jul 7, 2016 01:22 PM INFO Force calling resize
Jul 7, 2016 01:22 PM INFO Arranging as per packery grid
Jul 7, 2016 01:22 PM INFO *\ BUG PROGRESS WAS NOT CALLED
Jul 7, 2016 01:22 PM INFO Monitors that are active and not DOM hidden: 1 while grid has 1
Jul 7, 2016 01:22 PM INFO found a packery layout
Jul 7, 2016 01:22 PM INFO Inside Montage Ctrl:We found 1 monitors
Jul 7, 2016 01:22 PM INFO Returning pre-loaded list of 1 monitors
Jul 7, 2016 01:22 PM INFO Stream authentication construction:
Jul 7, 2016 01:22 PM INFO DataModel: Error resolving auth key {"data":null,"status":0,"config":{"method":"GET","transformRequest":[null],"transformResponse":[null],"url":"http:///index.php?view=watch&mid=2&connkey=733313","headers":{"Accept":"application/json, text/plain, /"},"timeout":15000},"statusText":""}
Jul 7, 2016 01:22 PM INFO Returning pre-loaded list of 1 monitors
Jul 7, 2016 01:21 PM INFO Force calling resize
Jul 7, 2016 01:21 PM INFO Arranging as per packery grid
Jul 7, 2016 01:21 PM INFO Monitors that are active and not DOM hidden: 1 while grid has 1
Jul 7, 2016 01:21 PM INFO found a packery layout
Jul 7, 2016 01:21 PM INFO Stream authentication construction: &auth=c6a5e2ca935de2d91ac4464058280644
Jul 7, 2016 01:21 PM INFO DataModel: Extracted a stream authentication key of: c6a5e2ca935de2d91ac4464058280644
Jul 7, 2016 01:21 PM INFO Inside Montage Ctrl:We found 1 monitors
Jul 7, 2016 01:21 PM INFO Returning pre-loaded list of 1 monitors
Jul 7, 2016 01:21 PM INFO Force calling resize
Jul 7, 2016 01:21 PM INFO Arranging as per packery grid
Jul 7, 2016 01:21 PM INFO *\ BUG PROGRESS WAS NOT CALLED
Jul 7, 2016 01:21 PM INFO Monitors that are active and not DOM hidden: 1 while grid has 1
Jul 7, 2016 01:21 PM INFO found a packery layout
Jul 7, 2016 01:21 PM INFO Inside Montage Ctrl:We found 1 monitors
Jul 7, 2016 01:21 PM INFO Returning pre-loaded list of 1 monitors
Jul 7, 2016 01:21 PM INFO Force calling resize
Jul 7, 2016 01:21 PM INFO Arranging as per packery grid
Jul 7, 2016 01:21 PM INFO Monitors that are active and not DOM hidden: 1 while grid has 1
Jul 7, 2016 01:21 PM INFO found a packery layout
Jul 7, 2016 01:21 PM INFO Stream authentication construction: &auth=c6a5e2ca935de2d91ac4464058280644
Jul 7, 2016 01:21 PM INFO DataModel: Extracted a stream authentication key of: c6a5e2ca935de2d91ac4464058280644
Jul 7, 2016 01:21 PM INFO Inside Montage Ctrl:We found 1 monitors
Jul 7, 2016 01:21 PM INFO Returning pre-loaded list of 1 monitors
Jul 7, 2016 01:21 PM INFO Failed reachability on http:///index.php with error {"data":null,"status":0,"config":{"method":"GET","transformRequest":[null],"transformResponse":[null],"url":"http:///index.php","headers":{"Accept":"application/json, text/plain, /"},"timeout":15000},"statusText":""}
Jul 7, 2016 01:21 PM ERROR Error sending event command null
Jul 7, 2016 01:21 PM INFO Reachability test..http:///index.php
Jul 7, 2016 01:21 PM INFO detected loop when fallsback to
Jul 7, 2016 01:21 PM INFO reached end of chain loop
Jul 7, 2016 01:21 PM INFO Fallback of is
Jul 7, 2016 01:21 PM INFO Adding to chain stack: >http://
Jul 7, 2016 01:21 PM INFO zmAutologin Error null and status 0
Jul 7, 2016 01:21 PM INFO Checking if reCaptcha is enabled in ZM...
Jul 7, 2016 01:21 PM INFO zmAutologin called
Jul 7, 2016 01:21 PM INFO Cancelling zmAutologin timer
Jul 7, 2016 01:21 PM INFO not checking for touchID
Jul 7, 2016 01:21 PM INFO User credentials are provided
Jul 7, 2016 01:21 PM INFO Event timeline API is http:///api/events/index/StartTime >=:2016-07-07 00:00/EndTime <=:2016-07-07 13:18.json
Jul 7, 2016 01:21 PM INFO MontageHistory-footerCollapse: Calling window.stop()
Jul 7, 2016 01:21 PM INFO Event timeline API is http:///api/events/index/StartTime >=:2016-07-07 00:00/EndTime <=:2016-07-07 12:50.json
Jul 7, 2016 01:21 PM INFO footerCollapse: Calling kill with 489706 because url is http:///cgi-bin/nph-zms?source=event&mode=jpeg&event=1&frame=1&replay=gapless&rate=100&connkey=489706&scale=50&rand=32550
Jul 7, 2016 01:21 PM INFO MontageHistory-footerCollapse: Not calling window stop as we just resumed
Jul 7, 2016 01:21 PM INFO Entering Portal Main
Jul 7, 2016 01:21 PM INFO ModalCtrl: Restarting Modal timer on resume
Jul 7, 2016 01:21 PM INFO >>> Resume delayed for 300 ms, to wait for network stack...
Jul 7, 2016 01:21 PM INFO App is resuming from background
Jul 7, 2016 01:20 PM INFO EventModalCtrl: paused, killing timer
Jul 7, 2016 01:20 PM INFO EventModalCtrl: paused, killing timer
Jul 7, 2016 01:20 PM INFO EventModalCtrl: paused, killing timer
Jul 7, 2016 01:20 PM INFO Cancelling zmAutologin timer
Jul 7, 2016 01:20 PM INFO Modal: Stream authentication construction:
Jul 7, 2016 01:20 PM INFO DataModel: Error resolving auth key {"data":null,"status":0,"config":{"method":"GET","transformRequest":[null],"transformResponse":[null],"url":"http:///index.php?view=watch&mid=2&connkey=489706","headers":{"Accept":"application/json, text/plain, /"},"timeout":15000},"statusText":""}
Jul 7, 2016 01:20 PM ERROR configurePTZ : Error retrieving PTZ command null
Jul 7, 2016 01:20 PM INFO ROOT APP: Stopping network pull...
Jul 7, 2016 01:20 PM INFO ROOT APP:App is going into background
Jul 7, 2016 01:20 PM INFO Switching playback via nphzms
Jul 7, 2016 01:20 PM INFO Using stream mode single
Jul 7, 2016 01:20 PM INFO Cancelling montage timer, opening Modal
Jul 7, 2016 01:19 PM ERROR Error retrieving loadStatus {"data":null,"status":0,"config":{"method":"GET","transformRequest":[null],"transformResponse":[null],"url":"http:///api/host/getLoad.json","headers":{"Accept":"application/json, text/plain, /"},"timeout":60000},"statusText":""}
Jul 7, 2016 01:19 PM INFO Stream authentication construction:
Jul 7, 2016 01:19 PM INFO DataModel: Error resolving auth key {"data":null,"status":0,"config":{"method":"GET","transformRequest":[null],"transformResponse":[null],"url":"http:///index.php?view=watch&mid=2&connkey=709861","headers":{"Accept":"application/json, text/plain, /"},"timeout":15000},"statusText":""}
Jul 7, 2016 01:19 PM INFO Stream authentication construction:
Jul 7, 2016 01:19 PM INFO DataModel: Error resolving auth key {"data":null,"status":0,"config":{"method":"GET","transformRequest":[null],"transformResponse":[null],"url":"http:///index.php?view=watch&mid=2&connkey=685270","headers":{"Accept":"application/json, text/plain, /"},"timeout":15000},"statusText":""}
Jul 7, 2016 01:19 PM INFO Force calling resize
Jul 7, 2016 01:19 PM INFO Arranging as per packery grid
Jul 7, 2016 01:19 PM INFO * BUG PROGRESS WAS NOT CALLED
Jul 7, 2016 01:19 PM INFO Monitors that are active and not DOM hidden: 1 while grid has 1
Jul 7, 2016 01:19 PM INFO found a packery layout
Jul 7, 2016 01:19 PM INFO Inside Montage Ctrl:We found 1 monitors
Jul 7, 2016 01:19 PM INFO Returning pre-loaded list of 1 monitors
Jul 7, 2016 01:19 PM INFO Force calling resize
Jul 7, 2016 01:19 PM INFO Arranging as per packery grid
Jul 7, 2016 01:19 PM INFO * BUG PROGRESS WAS NOT CALLED
Jul 7, 2016 01:19 PM INFO Monitors that are active and not DOM hidden: 1 while grid has 1
Jul 7, 2016 01:19 PM INFO found a packery layout
Jul 7, 2016 01:19 PM INFO Inside Montage Ctrl:We found 1 monitors
Jul 7, 2016 01:19 PM INFO Returning pre-loaded list of 1 monitors
Jul 7, 2016 01:18 PM INFO Stream authentication construction:
Jul 7, 2016 01:18 PM INFO DataModel: Error resolving auth key {"data":null,"status":0,"config":{"method":"GET","transformRequest":[null],"transformResponse":[null],"url":"http:///index.php?view=watch&mid=2&connkey=undefined","headers":{"Accept":"application/json, text/plain, /"},"timeout":15000},"statusText":""}
Jul 7, 2016 01:18 PM INFO MontageHistory-beforeLeave: Calling window.stop()
Jul 7, 2016 01:18 PM INFO Forcing a window.stop() here
Jul 7, 2016 01:18 PM INFO Before leave: Calling kill with 489706
Jul 7, 2016 01:18 PM INFO MontageHistory:Stopping network pull...
Jul 7, 2016 01:18 PM INFO Cancelling event query timer
Jul 7, 2016 01:18 PM INFO BeforeLeave: Nullifying the streams...
Jul 7, 2016 01:18 PM INFO Making sure all monitors have a fair chance...
Jul 7, 2016 01:18 PM INFO Stream authentication construction:
Jul 7, 2016 01:18 PM INFO Stream authentication construction:
Jul 7, 2016 01:18 PM INFO DataModel: Error resolving auth key {"data":null,"status":0,"config":{"method":"GET","transformRequest":[null],"transformResponse":[null],"url":"http:///index.php?view=watch&mid=2&connkey=280088","headers":{"Accept":"application/json, text/plain, /"},"timeout":15000},"statusText":""}
Jul 7, 2016 01:18 PM INFO DataModel: Error resolving auth key {"data":null,"status":0,"config":{"method":"GET","transformRequest":[null],"transformResponse":[null],"url":"http:///index.php?view=watch&mid=2&connkey=102786","headers":{"Accept":"application/json, text/plain, /"},"timeout":15000},"statusText":""}
Jul 7, 2016 01:18 PM INFO Event timeline API is http:///api/events/index/StartTime >=:2016-07-07 00:00/EndTime <=:2016-07-07 13:18.json
Jul 7, 2016 01:18 PM INFO MontageHistory-footerCollapse: Calling window.stop()
Jul 7, 2016 01:18 PM INFO Stored montage order does not exist
Jul 7, 2016 01:18 PM INFO Inside MontageHistoryCtrl:We found 1 monitors
Jul 7, 2016 01:18 PM INFO Stored montage order does not exist
Jul 7, 2016 01:18 PM INFO Returning pre-loaded list of 1 monitors
Jul 7, 2016 01:18 PM INFO Force calling resize
Jul 7, 2016 01:18 PM INFO Arranging as per packery grid
Jul 7, 2016 01:18 PM INFO * BUG PROGRESS WAS NOT CALLED
Jul 7, 2016 01:18 PM INFO Monitors that are active and not DOM hidden: 1 while grid has 1
Jul 7, 2016 01:18 PM INFO found a packery layout
Jul 7, 2016 01:18 PM INFO Inside Montage Ctrl:We found 1 monitors
Jul 7, 2016 01:18 PM INFO Returning pre-loaded list of 1 monitors
Jul 7, 2016 01:18 PM INFO Force calling resize
Jul 7, 2016 01:18 PM INFO Arranging as per packery grid
Jul 7, 2016 01:18 PM INFO * BUG PROGRESS WAS NOT CALLED
Jul 7, 2016 01:18 PM INFO Monitors that are active and not DOM hidden: 1 while grid has 1
Jul 7, 2016 01:18 PM INFO found a packery layout
Jul 7, 2016 01:18 PM INFO Inside Montage Ctrl:We found 1 monitors
Jul 7, 2016 01:18 PM INFO Returning pre-loaded list of 1 monitors
Jul 7, 2016 01:17 PM INFO Failed reachability on http:///index.php with error {"data":null,"status":0,"config":{"method":"GET","transformRequest":[null],"transformResponse":[null],"url":"http:///index.php","headers":{"Accept":"application/json, text/plain, /"},"timeout":15000},"statusText":""}
Jul 7, 2016 01:17 PM INFO Reachability test..http:///index.php
Jul 7, 2016 01:17 PM INFO detected loop when fallsback to
Jul 7, 2016 01:17 PM INFO reached end of chain loop
Jul 7, 2016 01:17 PM INFO Fallback of is
Jul 7, 2016 01:17 PM INFO Adding to chain stack: >http://
Jul 7, 2016 01:17 PM INFO zmAutologin Error null and status 0
Jul 7, 2016 01:17 PM INFO Checking if reCaptcha is enabled in ZM...
Jul 7, 2016 01:17 PM INFO zmAutologin called
Jul 7, 2016 01:16 PM INFO Stream authentication construction: &auth=c6a5e2ca935de2d91ac4464058280644
Jul 7, 2016 01:16 PM INFO DataModel: Extracted a stream authentication key of: c6a5e2ca935de2d91ac4464058280644
Jul 7, 2016 01:16 PM INFO Stream authentication construction: &auth=c6a5e2ca935de2d91ac4464058280644
Jul 7, 2016 01:16 PM INFO DataModel: Extracted a stream authentication key of: c6a5e2ca935de2d91ac4464058280644
Jul 7, 2016 01:16 PM INFO Force calling resize
Jul 7, 2016 01:16 PM INFO Arranging as per packery grid
Jul 7, 2016 01:16 PM INFO * BUG PROGRESS WAS NOT CALLED
Jul 7, 2016 01:16 PM INFO Monitors that are active and not DOM hidden: 1 while grid has 1
Jul 7, 2016 01:16 PM INFO found a packery layout
Jul 7, 2016 01:16 PM INFO Inside Montage Ctrl:We found 1 monitors
Jul 7, 2016 01:16 PM INFO Returning pre-loaded list of 1 monitors
Jul 7, 2016 01:16 PM INFO Force calling resize
Jul 7, 2016 01:16 PM INFO Arranging as per packery grid
Jul 7, 2016 01:16 PM INFO * BUG PROGRESS WAS NOT CALLED
Jul 7, 2016 01:16 PM INFO Monitors that are active and not DOM hidden: 1 while grid has 1
Jul 7, 2016 01:16 PM INFO found a packery layout
Jul 7, 2016 01:15 PM INFO Inside Montage Ctrl:We found 1 monitors
Jul 7, 2016 01:15 PM INFO Returning pre-loaded list of 1 monitors
Jul 7, 2016 01:15 PM INFO Stream authentication construction:
Jul 7, 2016 01:15 PM INFO DataModel: Error resolving auth key {"data":null,"status":0,"config":{"method":"GET","transformRequest":[null],"transformResponse":[null],"url":"http:///index.php?view=watch&mid=2&connkey=591772","headers":{"Accept":"application/json, text/plain, /"},"timeout":15000},"statusText":""}
Jul 7, 2016 01:15 PM INFO Force calling resize
Jul 7, 2016 01:15 PM INFO Arranging as per packery grid
Jul 7, 2016 01:15 PM INFO *\ BUG PROGRESS WAS NOT CALLED
Jul 7, 2016 01:15 PM INFO Monitors that are active and not DOM hidden: 1 while grid has 1
Jul 7, 2016 01:15 PM INFO found a packery layout
Jul 7, 2016 01:15 PM INFO Inside Montage Ctrl:We found 1 monitors
Jul 7, 2016 01:15 PM INFO Returning pre-loaded list of 1 monitors
Jul 7, 2016 01:15 PM INFO Returning pre-loaded list of 1 monitors
Jul 7, 2016 01:12 PM INFO Stream authentication construction:
Jul 7, 2016 01:12 PM INFO DataModel: Error resolving auth key {"data":null,"status":0,"config":{"method":"GET","transformRequest":[null],"transformResponse":[null],"url":"http:///index.php?view=watch&mid=2&connkey=627756","headers":{"Accept":"application/json, text/plain, /_"},"timeout":15000},"statusText":""}
Jul 7, 2016 01:12 PM INFO Got API version: 0.0.0
Jul 7, 2016 01:12 PM INFO Taking a guess, setting ZM_EVENT_IMAGE_DIGITS to 5
Jul 7, 2016 01:12 PM ERROR Error retrieving ZM_EVENT_IMAGEDIGITSnull
Jul 7, 2016 01:12 PM INFO Force calling resize
Jul 7, 2016 01:12 PM INFO Arranging as per packery grid
Jul 7, 2016 01:12 PM INFO * BUG PROGRESS WAS NOT CALLED
Jul 7, 2016 01:12 PM INFO Monitors that are active and not DOM hidden: 1 while grid has 1
Jul 7, 2016 01:12 PM INFO found a packery layout
Jul 7, 2016 01:12 PM INFO Inside Montage Ctrl:We found 1 monitors
Jul 7, 2016 01:12 PM INFO Stream authentication construction: &auth=c6a5e2ca935de2d91ac4464058280644
Jul 7, 2016 01:12 PM INFO DataModel: Extracted a stream authentication key of: c6a5e2ca935de2d91ac4464058280644
Jul 7, 2016 01:12 PM INFO Returning pre-loaded list of 1 monitors
Jul 7, 2016 01:12 PM INFO No Event Server configured, skipping refresh
Jul 7, 2016 01:12 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 01:12 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 01:12 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 01:12 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 01:12 PM INFO Auth-Success inside EventModalCtrl: Calling window.stop()
Jul 7, 2016 01:12 PM INFO Auth-Success inside EventModalCtrl: Calling window.stop()
Jul 7, 2016 01:12 PM INFO Auth-Success inside EventModalCtrl: Calling window.stop()
Jul 7, 2016 01:12 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 01:12 PM INFO MonitorModal-auth success: Calling window.stop()
Jul 7, 2016 01:12 PM INFO zmAutologin successfully logged into Zoneminder
Jul 7, 2016 01:12 PM INFO Checking if reCaptcha is enabled in ZM...
Jul 7, 2016 01:12 PM INFO zmAutologin called
Jul 7, 2016 01:12 PM INFO Based on reachability, first serverName will be
Jul 7, 2016 01:12 PM INFO Success: reachability on http:///index.php
Jul 7, 2016 01:12 PM INFO Reachability test..http:///index.php
Jul 7, 2016 01:12 PM INFO detected loop when fallsback to
Jul 7, 2016 01:12 PM INFO reached end of chain loop
Jul 7, 2016 01:12 PM INFO Fallback of is
Jul 7, 2016 01:12 PM INFO Adding to chain stack: >http://
Jul 7, 2016 01:12 PM INFO zmAutologin Error null and status 0
Jul 7, 2016 01:12 PM INFO Checking if reCaptcha is enabled in ZM...
Jul 7, 2016 01:12 PM INFO zmAutologin called
Jul 7, 2016 01:12 PM INFO Cancelling zmAutologin timer
Jul 7, 2016 01:12 PM INFO not checking for touchID
Jul 7, 2016 01:12 PM INFO User credentials are provided
Jul 7, 2016 01:12 PM INFO Event timeline API is http:///api/events/index/StartTime >=:2016-07-07 00:00/EndTime <=:2016-07-07 12:50.json
Jul 7, 2016 01:12 PM INFO MontageHistory-footerCollapse: Not calling window stop as we just resumed
Jul 7, 2016 01:12 PM INFO Entering Portal Main
Jul 7, 2016 01:12 PM INFO >>> Resume delayed for 300 ms, to wait for network stack...
Jul 7, 2016 01:12 PM INFO App is resuming from background
Jul 7, 2016 01:01 PM INFO EventModalCtrl: paused, killing timer
Jul 7, 2016 01:01 PM INFO EventModalCtrl: paused, killing timer
Jul 7, 2016 01:01 PM INFO EventModalCtrl: paused, killing timer
Jul 7, 2016 01:01 PM INFO Cancelling zmAutologin timer
Jul 7, 2016 01:01 PM INFO ROOT APP: Stopping network pull...
Jul 7, 2016 01:01 PM INFO ROOT APP:App is going into background
Jul 7, 2016 12:59 PM ERROR Error sending event command null
Jul 7, 2016 12:59 PM INFO Force calling resize
Jul 7, 2016 12:59 PM INFO Arranging as per packery grid
Jul 7, 2016 12:59 PM INFO Monitors that are active and not DOM hidden: 1 while grid has 1
Jul 7, 2016 12:59 PM INFO found a packery layout
Jul 7, 2016 12:59 PM INFO Stream authentication construction: &auth=812ccd003723ddfb9cb755aac801eab2
Jul 7, 2016 12:59 PM INFO DataModel: Extracted a stream authentication key of: 812ccd003723ddfb9cb755aac801eab2
Jul 7, 2016 12:59 PM INFO Stream authentication construction: &auth=812ccd003723ddfb9cb755aac801eab2
Jul 7, 2016 12:59 PM INFO DataModel: Extracted a stream authentication key of: 812ccd003723ddfb9cb755aac801eab2
Jul 7, 2016 12:59 PM INFO Inside Montage Ctrl:We found 1 monitors
Jul 7, 2016 12:59 PM INFO Returning pre-loaded list of 1 monitors
Jul 7, 2016 12:59 PM INFO Returning pre-loaded list of 1 monitors
Jul 7, 2016 12:59 PM INFO Force calling resize
Jul 7, 2016 12:59 PM INFO Arranging as per packery grid
Jul 7, 2016 12:59 PM INFO * BUG PROGRESS WAS NOT CALLED
Jul 7, 2016 12:59 PM INFO Monitors that are active and not DOM hidden: 1 while grid has 1
Jul 7, 2016 12:59 PM INFO found a packery layout
Jul 7, 2016 12:59 PM INFO Inside Montage Ctrl:We found 1 monitors
Jul 7, 2016 12:59 PM INFO Returning pre-loaded list of 1 monitors
Jul 7, 2016 12:59 PM INFO MontageCtrl:Stopping network pull...
Jul 7, 2016 12:59 PM INFO Restarting montage timer, closing Modal...
Jul 7, 2016 12:59 PM INFO Modal: Stream authentication construction:
Jul 7, 2016 12:59 PM INFO DataModel: Error resolving auth key {"data":null,"status":0,"config":{"method":"GET","transformRequest":[null],"transformResponse":[null],"url":"http:///index.php?view=watch&mid=2&connkey=244189","headers":{"Accept":"application/json, text/plain, /"},"timeout":15000},"statusText":""}
Jul 7, 2016 12:59 PM INFO configurePTZ 2 is not PTZ controllable
Jul 7, 2016 12:59 PM INFO Switching playback via nphzms
Jul 7, 2016 12:59 PM INFO Failed reachability on http:///index.php with error {"data":null,"status":0,"config":{"method":"GET","transformRequest":[null],"transformResponse":[null],"url":"http:///index.php","headers":{"Accept":"application/json, text/plain, /"},"timeout":15000},"statusText":""}
Jul 7, 2016 12:59 PM INFO Using stream mode single
Jul 7, 2016 12:59 PM INFO Cancelling montage timer, opening Modal
Jul 7, 2016 12:59 PM INFO Stream authentication construction:
Jul 7, 2016 12:59 PM INFO DataModel: Error resolving auth key {"data":null,"status":0,"config":{"method":"GET","transformRequest":[null],"transformResponse":[null],"url":"http:///index.php?view=watch&mid=2&connkey=210136","headers":{"Accept":"application/json, text/plain, /"},"timeout":15000},"statusText":""}
Jul 7, 2016 12:59 PM INFO Reachability test..http:///index.php
Jul 7, 2016 12:59 PM INFO detected loop when fallsback to
Jul 7, 2016 12:59 PM INFO reached end of chain loop
Jul 7, 2016 12:59 PM INFO Fallback of is
Jul 7, 2016 12:59 PM INFO Adding to chain stack: >http://
Jul 7, 2016 12:59 PM INFO zmAutologin Error null and status 0
Jul 7, 2016 12:58 PM INFO Stream authentication construction:
Jul 7, 2016 12:58 PM INFO DataModel: Error resolving auth key {"data":null,"status":0,"config":{"method":"GET","transformRequest":[null],"transformResponse":[null],"url":"http:///index.php?view=watch&mid=2&connkey=578019","headers":{"Accept":"application/json, text/plain, /"},"timeout":15000},"statusText":""}
Jul 7, 2016 12:58 PM INFO Force calling resize
Jul 7, 2016 12:58 PM INFO Arranging as per packery grid
Jul 7, 2016 12:58 PM INFO * BUG PROGRESS WAS NOT CALLED
Jul 7, 2016 12:58 PM INFO Monitors that are active and not DOM hidden: 1 while grid has 1
Jul 7, 2016 12:58 PM INFO found a packery layout
Jul 7, 2016 12:58 PM INFO Inside Montage Ctrl:We found 1 monitors
Jul 7, 2016 12:58 PM INFO Returning pre-loaded list of 1 monitors
Jul 7, 2016 12:58 PM INFO Checking if reCaptcha is enabled in ZM...
Jul 7, 2016 12:58 PM INFO zmAutologin called
Jul 7, 2016 12:58 PM INFO Force calling resize
Jul 7, 2016 12:58 PM INFO Arranging as per packery grid
Jul 7, 2016 12:58 PM INFO * BUG PROGRESS WAS NOT CALLED
Jul 7, 2016 12:58 PM INFO Monitors that are active and not DOM hidden: 1 while grid has 1
Jul 7, 2016 12:58 PM INFO found a packery layout
Jul 7, 2016 12:58 PM INFO Inside Montage Ctrl:We found 1 monitors
Jul 7, 2016 12:58 PM INFO Returning pre-loaded list of 1 monitors
Jul 7, 2016 12:58 PM ERROR Error retrieving page count of events null
Jul 7, 2016 12:57 PM INFO TimelineCtrl/drawgraph: from->2016-07-07 00:00:00 to->2016-07-07 23:59:59 count:2000
Jul 7, 2016 12:57 PM INFO Graph items to draw is 2000
Jul 7, 2016 12:57 PM INFO Returning pre-loaded list of 1 monitors
Jul 7, 2016 12:57 PM ERROR Error retrieving page count of events null
Jul 7, 2016 12:57 PM INFO Returning pre-loaded list of 1 monitors
Jul 7, 2016 12:57 PM INFO Stream authentication construction:
Jul 7, 2016 12:57 PM INFO DataModel: Error resolving auth key {"data":null,"status":0,"config":{"method":"GET","transformRequest":[null],"transformResponse":[null],"url":"http:///index.php?view=watch&mid=2&connkey=352150","headers":{"Accept":"application/json, text/plain, /_"},"timeout":15000},"statusText":""}
Jul 7, 2016 12:57 PM INFO Image padding digits reported as 5
Jul 7, 2016 12:57 PM INFO ZM_EVENT_IMAGEDIGITS is already configured for 5
Jul 7, 2016 12:57 PM INFO Returning pre-loaded list of 1 monitors
Jul 7, 2016 12:57 PM INFO Stream authentication construction:
Jul 7, 2016 12:57 PM INFO DataModel: Error resolving auth key {"data":null,"status":0,"config":{"method":"GET","transformRequest":[null],"transformResponse":[null],"url":"http:///index.php?view=watch&mid=2&connkey=382299","headers":{"Accept":"application/json, text/plain, /"},"timeout":15000},"statusText":""}
Jul 7, 2016 12:57 PM INFO Stream authentication construction:
Jul 7, 2016 12:57 PM INFO DataModel: Error resolving auth key {"data":null,"status":0,"config":{"method":"GET","transformRequest":[null],"transformResponse":[null],"url":"http:///index.php?view=watch&mid=2&connkey=660476","headers":{"Accept":"application/json, text/plain, /"},"timeout":15000},"statusText":""}
Jul 7, 2016 12:57 PM INFO Returning pre-loaded list of 1 monitors
Jul 7, 2016 12:57 PM ERROR Error sending event command null
Jul 7, 2016 12:57 PM INFO Force calling resize
Jul 7, 2016 12:57 PM INFO Arranging as per packery grid
Jul 7, 2016 12:57 PM INFO * BUG PROGRESS WAS NOT CALLED
Jul 7, 2016 12:57 PM INFO Monitors that are active and not DOM hidden: 1 while grid has 1
Jul 7, 2016 12:57 PM INFO found a packery layout
Jul 7, 2016 12:57 PM INFO Inside Montage Ctrl:We found 1 monitors
Jul 7, 2016 12:57 PM INFO Returning pre-loaded list of 1 monitors
Jul 7, 2016 12:57 PM INFO Force calling resize
Jul 7, 2016 12:57 PM INFO Arranging as per packery grid
Jul 7, 2016 12:57 PM INFO * BUG PROGRESS WAS NOT CALLED
Jul 7, 2016 12:57 PM INFO Monitors that are active and not DOM hidden: 1 while grid has 1
Jul 7, 2016 12:57 PM INFO found a packery layout
Jul 7, 2016 12:57 PM INFO Inside Montage Ctrl:We found 1 monitors
Jul 7, 2016 12:57 PM INFO Returning pre-loaded list of 1 monitors
Jul 7, 2016 12:57 PM INFO Force calling resize
Jul 7, 2016 12:57 PM INFO Arranging as per packery grid
Jul 7, 2016 12:57 PM INFO *\ BUG PROGRESS WAS NOT CALLED
Jul 7, 2016 12:57 PM INFO Monitors that are active and not DOM hidden: 1 while grid has 1
Jul 7, 2016 12:57 PM INFO found a packery layout
Jul 7, 2016 12:57 PM INFO Inside Montage Ctrl:We found 1 monitors
Jul 7, 2016 12:57 PM INFO Returning pre-loaded list of 1 monitors
Jul 7, 2016 12:57 PM INFO MontageCtrl:Stopping network pull...
Jul 7, 2016 12:57 PM INFO Restarting montage timer, closing Modal...
Jul 7, 2016 12:56 PM INFO SavetoPhone:Trying to save image from http:///cgi-bin/zms?mode=single&monitor=2&auth=812ccd003723ddfb9cb755aac801eab2
Jul 7, 2016 12:56 PM INFO Invoking http:///api/monitors/alarm/id:2/command:on.json
Jul 7, 2016 12:56 PM ERROR configurePTZ : Error retrieving PTZ command null
Jul 7, 2016 12:56 PM INFO Modal: Stream authentication construction: &auth=812ccd003723ddfb9cb755aac801eab2
Jul 7, 2016 12:56 PM INFO DataModel: Extracted a stream authentication key of: 812ccd003723ddfb9cb755aac801eab2
Jul 7, 2016 12:56 PM INFO Switching playback via nphzms
Jul 7, 2016 12:56 PM INFO Using stream mode single
Jul 7, 2016 12:56 PM INFO Cancelling montage timer, opening Modal
Jul 7, 2016 12:56 PM INFO Force calling resize
Jul 7, 2016 12:56 PM INFO Arranging as per packery grid
Jul 7, 2016 12:56 PM INFO Stream authentication construction:
Jul 7, 2016 12:56 PM INFO DataModel: Error resolving auth key {"data":null,"status":0,"config":{"method":"GET","transformRequest":[null],"transformResponse":[null],"url":"http:///index.php?view=watch&mid=2&connkey=473787","headers":{"Accept":"application/json, text/plain, /"},"timeout":15000},"statusText":""}
Jul 7, 2016 12:55 PM INFO Stream authentication construction:
Jul 7, 2016 12:55 PM INFO DataModel: Error resolving auth key {"data":null,"status":0,"config":{"method":"GET","transformRequest":[null],"transformResponse":[null],"url":"http:///index.php?view=watch&mid=2&connkey=588047","headers":{"Accept":"application/json, text/plain, /"},"timeout":15000},"statusText":""}
Jul 7, 2016 12:55 PM INFO Monitors that are active and not DOM hidden: 1 while grid has 1
Jul 7, 2016 12:55 PM INFO found a packery layout
Jul 7, 2016 12:55 PM INFO Stream authentication construction:
Jul 7, 2016 12:55 PM INFO DataModel: Error resolving auth key {"data":null,"status":0,"config":{"method":"GET","transformRequest":[null],"transformResponse":[null],"url":"http:///index.php?view=watch&mid=2&connkey=397483","headers":{"Accept":"application/json, text/plain, /"},"timeout":15000},"statusText":""}
Jul 7, 2016 12:55 PM INFO Inside Montage Ctrl:We found 1 monitors
Jul 7, 2016 12:55 PM INFO Returning pre-loaded list of 1 monitors
Jul 7, 2016 12:55 PM INFO Force calling resize
Jul 7, 2016 12:55 PM INFO Arranging as per packery grid
Jul 7, 2016 12:55 PM INFO * BUG PROGRESS WAS NOT CALLED
Jul 7, 2016 12:55 PM INFO Monitors that are active and not DOM hidden: 1 while grid has 1
Jul 7, 2016 12:55 PM INFO found a packery layout
Jul 7, 2016 12:55 PM INFO Inside Montage Ctrl:We found 1 monitors
Jul 7, 2016 12:55 PM INFO Returning pre-loaded list of 1 monitors
Jul 7, 2016 12:55 PM INFO Force calling resize
Jul 7, 2016 12:55 PM INFO Arranging as per packery grid
Jul 7, 2016 12:55 PM INFO * BUG PROGRESS WAS NOT CALLED
Jul 7, 2016 12:55 PM INFO Monitors that are active and not DOM hidden: 1 while grid has 1
Jul 7, 2016 12:55 PM INFO found a packery layout
Jul 7, 2016 12:55 PM INFO Inside Montage Ctrl:We found 1 monitors
Jul 7, 2016 12:55 PM INFO Returning pre-loaded list of 1 monitors
Jul 7, 2016 12:55 PM INFO MontageCtrl:Stopping network pull...
Jul 7, 2016 12:55 PM INFO Restarting montage timer, closing Modal...
Jul 7, 2016 12:54 PM ERROR Error sending event command null
Jul 7, 2016 12:54 PM INFO Switching playback via nphzms
Jul 7, 2016 12:54 PM INFO configurePTZ 2 is not PTZ controllable
Jul 7, 2016 12:54 PM INFO Modal: Stream authentication construction: &auth=812ccd003723ddfb9cb755aac801eab2
Jul 7, 2016 12:54 PM INFO DataModel: Extracted a stream authentication key of: 812ccd003723ddfb9cb755aac801eab2
Jul 7, 2016 12:54 PM INFO Using stream mode single
Jul 7, 2016 12:54 PM INFO Cancelling montage timer, opening Modal
Jul 7, 2016 12:54 PM ERROR configurePTZ : Error retrieving PTZ command null
Jul 7, 2016 12:54 PM INFO MontageCtrl:Stopping network pull...
Jul 7, 2016 12:54 PM INFO Restarting montage timer, closing Modal...
Jul 7, 2016 12:54 PM INFO Switching playback via nphzms
Jul 7, 2016 12:54 PM INFO Modal: Stream authentication construction: &auth=812ccd003723ddfb9cb755aac801eab2
Jul 7, 2016 12:54 PM INFO DataModel: Extracted a stream authentication key of: 812ccd003723ddfb9cb755aac801eab2
Jul 7, 2016 12:54 PM INFO Using stream mode single
Jul 7, 2016 12:54 PM INFO Cancelling montage timer, opening Modal
Jul 7, 2016 12:54 PM INFO Force calling resize
Jul 7, 2016 12:54 PM INFO Arranging as per packery grid
Jul 7, 2016 12:54 PM INFO Monitors that are active and not DOM hidden: 1 while grid has 1
Jul 7, 2016 12:54 PM INFO found a packery layout
Jul 7, 2016 12:54 PM INFO Stream authentication construction: &auth=812ccd003723ddfb9cb755aac801eab2
Jul 7, 2016 12:54 PM INFO DataModel: Extracted a stream authentication key of: 812ccd003723ddfb9cb755aac801eab2
Jul 7, 2016 12:54 PM INFO Inside Montage Ctrl:We found 1 monitors
Jul 7, 2016 12:54 PM INFO Returning pre-loaded list of 1 monitors
Jul 7, 2016 12:54 PM INFO Failed reachability on http:///index.php with error {"data":null,"status":0,"config":{"method":"GET","transformRequest":[null],"transformResponse":[null],"url":"http:///index.php","headers":{"Accept":"application/json, text/plain, /_"},"timeout":15000},"statusText":""}
Jul 7, 2016 12:54 PM INFO Reachability test..http:///index.php
Jul 7, 2016 12:54 PM INFO detected loop when fallsback to
Jul 7, 2016 12:54 PM INFO reached end of chain loop
Jul 7, 2016 12:54 PM INFO Fallback of is
Jul 7, 2016 12:54 PM INFO Adding to chain stack: >http://
Jul 7, 2016 12:54 PM INFO zmAutologin Error null and status 0
Jul 7, 2016 12:53 PM INFO Making sure all monitors have a fair chance...
Jul 7, 2016 12:53 PM INFO Checking if reCaptcha is enabled in ZM...
Jul 7, 2016 12:53 PM INFO zmAutologin called
Jul 7, 2016 12:53 PM INFO Cancelling zmAutologin timer
Jul 7, 2016 12:53 PM INFO not checking for touchID
Jul 7, 2016 12:53 PM INFO User credentials are provided
Jul 7, 2016 12:53 PM INFO Event timeline API is http:///api/events/index/StartTime >=:2016-07-07 00:00/EndTime <=:2016-07-07 12:50.json
Jul 7, 2016 12:53 PM INFO MontageHistory-footerCollapse: Not calling window stop as we just resumed
Jul 7, 2016 12:53 PM INFO Entering Portal MainThanks!