blob: 011f577c15991246833ab24aa33ddb1bcfce27bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
<ion-view view-title="Help">
<ion-nav-buttons side="left">
<button class="button button-icon button-clear ion-navicon" ng-click="openMenu()"></button>
</ion-nav-buttons>
<ion-content class="padding">
<div class="list">
<ion-item class="item-text-wrap">
<h2><b> What do I enter for ZM Portal URL, Base path to cgi-bin and ZM API URL?</b> </h2>
<ul>
<li>ZM Portal URL: The URL using which you can access ZM (example http://myserver.ddns.net/zm)</li>
<li>CGI base path: The URL using which your cgi-bin directory is accessible (example http://myserver.ddns.net/). You don't have to enter cgi-bin explictly</li>
<li>API Url: The URL using which your API directory is accessible (example: http://myserver.ddns.net/zm/api)</li>
</ul>
</ion-item>
<ion-item class="item-text-wrap">
<h2><b>Since when does ZM have an API?</b> </h2> The latest versions of ZoneMinder have an API that is supposed to replace the XML skin. It is only available starting Zoneminder 1.29. If you don't have the API installed the client WILL NOT WORK.
</ion-item>
<ion-item class="item-text-wrap">
<h2> <b>I do not have authentication enabled but the app keeps asking me to specify authentication</b></h2> If you don't use ZM authentication, just enter an "x" in both user name and password.
</ion-item>
<ion-item class="item-text-wrap">
<h2><b> The data is not refreshing!</b></h2> Most screens that show lists of data has a pull down action. Pull down to refresh and your data should be reloaded.
</ion-item>
<ion-item class="item-text-wrap">
<h2><b> What do all the colors in the Monitor view mean?</b></h2>
<i class="icon ion-checkmark-circled" style="color:#1E90FF"></i> Checking
<br/>
<i class="icon ion-checkmark-circled" style="color:green"></i> All good
<br/>
<i class="icon ion-close-circled" style="color:red"></i> Not running
<br/>
<i class="icon ion-close-circled" style="color:orange"></i> Not running (pending)
<br/>
<i class="icon ion-checkmark-circled" style="color:grey"></i> Disabled
<br/>
<i class="icon ion-help-circled" style="color:#800000"></i> Unknown
<br/>
</ion-item>
<ion-item class="item-text-wrap">
<h2> <b>I can't connect using SSL!</b></h2>
Configuring SSL requires additional steps. It's not as simple as flipping the switch on in the app. Please read the <a href="#" onclick="window.open('https://github.com/pliablepixels/zmNinja/blob/master/docs/SSL-Configuration.md', '_blank', 'location=yes'); return false;">instructions</a> for more details.
</ion-item>
<ion-item class="item-text-wrap">
<h2><b>I want to contribute!</b></h2> Awesome. <a href="#" onclick="window.open('http://github.com/pliablepixels/zmNinja', '_blank', 'location=yes'); return false;"> Grab</a> the source code!
</ion-item>
<ion-item class="item-text-wrap">
<h2><b>How do I contact the author?</b></h2> Send me an <a href="#" onclick="window.open('mailto:pliablepixels@gmail.com', '_blank', 'location=yes'); return false;">email</a>
</ion-item>
</div>
</ion-content>
</ion-view>
|