Home
last modified time | relevance | path

Searched refs:ip (Results 101 – 125 of 135) sorted by path

123456

/plugin/quickstats/db/
H A DdataBaseStructure.txt1 ip.ser
32 [ip] => Array
46 [ip] => Array
67 [<ip] => <n>
84 [<ip>] => <n>
85 [<ip] => <n>
103 ip,
104 ip . . .
109 [ip] => Array
114 [ip] => Array
[all …]
/plugin/quickstats/lang/en/
H A Dgeneral_intro.txt3 - make specific queries based on country, ip address, and Dokuwiki page names;
H A Dquery.txt8 …- IP queries (i.e. ip priority) ignore all other fields and if an IP is included in a query where …
/plugin/quickstats/lang/nl/
H A Dgeneral_intro.txt3 - specifieke zoekopdrachten maken gebaseerd op land, ip adres, en Dokuwiki pagina namen;
H A Dquery.txt8 …- IP zoekopdrachten (= ip voorrang) negeert elk ander veld en als een IP is inbegrepen in een zoek…
/plugin/quickstats/
H A Dscript.js170 var ip = document.getElementById('ip').value;
172 if(!country_set && !page && !ip &&!ua_set) {
186 else if(priority == 'ip' && !ip) {
198 if(ip != "") {
199 params+="&ip=" + ip;
H A Dstyle.css14 div.quickstats.basics span.title, div.quickstats.ip span.title, div.quickstats.ua span.title,
22 div.quickstats.ip {
H A Dstyle.wide.css14 div.quickstats.basics span.title, div.quickstats.ip span.title, div.quickstats.ua span.title,
22 div.quickstats.ip {
H A Dsyntax.php215 case 'ip':
598 foreach($this->ua_data as $ip=>$data) {
604 …$renderer->doc .= $this->extended_row($uasort_ip[$ip], array($ip, "&nbsp;&nbsp;$country",$uas), $…
/plugin/quickstats/scripts/
H A Dextended_data.php86 function ip_data($ip=false,$p_brief=false) { argument
90 if($ip === false) $ip =rawurldecode($_POST['ip']);
94 $result = ip_row(array('ip','ua'), $ip,$date);
128 function qs_data(&$ar,$ip) { argument
134 if(isset($data[$ip])) {
302 foreach($ar['ips'] as $ip) {
320 foreach($ar['ips'] as $ip) {
386 foreach($ua_data as $ip=>$ar) {
415 foreach($agents as $ip) {
448 foreach($agents as $ip => $val)
[all …]
/plugin/quickstats/scripts/php-inet6_1.0.2/
H A Dvalid_v6.php15 * @param string $ip
18 function isValidIPv6($ip) argument
20 if ( false === filter_var($ip, FILTER_VALIDATE_IP, FILTER_FLAG_IPV6) )
24 return inet6_compress($ip);
/plugin/quiz/
H A Dclass_quiz.php538 $ip = clientIP(true);
544 $score['ips'][] = $ip;
549 $score['rows'][$score['total']]['ip'] = $ip;
/plugin/rater/
H A DREADME26 trace=user - for closed wikis better than ip to step over hurdle of dynamic ip
28 …tracedetails=1 - will show the quantity of single star ratings or a list of clear ip/names for vot…
/plugin/scrape/
H A DHTMLPurifier.standalone.php
/plugin/serverinfos/serverinfos/lib/
H A DElements.class.php132 public function displayWebCategories($ip, $serverName, $serverWeb, $ServerPort) argument
135 echo "<div id='categorie_contenu_web'><strong>".$ip."</strong></div>";
/plugin/siteexport/
H A Djquery.filedownload.js150 …\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a…
/plugin/smtp/
H A Dhelper.php22 $ip = $_SERVER["SERVER_ADDR"];
23 if (empty($ip))
27 $colonPos = strpos($ip, ':');
29 $ip = 'IPv6:'.$ip;
32 return "[" . $ip . "]";
/plugin/snmplive/
H A Dscript.js10 function plugin_snmplive(ip,oid){ argument
11 var snmpId = ip + oid;
36 window.setTimeout("plugin_snmplive('"+ip+"','"+oid+"')",1000);
39 ajax.runAJAX('SNMPip='+encodeURI(ip)+'&SNMPoid='+encodeURI(oid));
/plugin/statistics/
H A Ddb.sql6 `ip` VARCHAR(40)
43 `ip` VARCHAR(40)
54 PRIMARY KEY (`ip`),
155 `ip` VARCHAR(40) NOT NULL,
166 ALTER TABLE `stats_access` CHANGE `ip` `ip` VARCHAR(40);
184 `ip` VARCHAR(40) NOT NULL,
218 `ip` VARCHAR(40) DEFAULT NULL,
266 ALTER TABLE `stats_iplocation` MODIFY COLUMN `ip` VARCHAR(40);
267 ALTER TABLE `stats_access` MODIFY COLUMN `ip` VARCHA
[all...]
/plugin/statistics/inc/
H A DStatisticsLogger.class.php240 public function log_ip($ip) { argument
242 $sql = "SELECT ip
244 WHERE ip ='" . addslashes($ip) . "'
247 if($result[0]['ip']) return;
251 $data = $http->get('http://api.hostip.info/get_html.php?ip=' . $ip);
257 $host = addslashes(gethostbyaddr($ip));
258 $ip = addslashes($ip);
[all...]
/plugin/stopforumspam/
H A DResponseChecker.php25 public $ip; variable in Response
27 public function __construct($username = null, $email = null, $ip = null) argument
35 if ($ip == null) {
36 $ip = new ResponseCategory();
41 $this->ip = $ip;
57 $this->ip = $this->ResponseCategoryFromAssoc($response['ip']);
116 } else if (($result = $this->categoryIsValid($response->ip)) === false) {
H A DSpamLogger.php20 public function LogAttempt($username, $email, $ip, $trigger, $confidence, $accepted) argument
29 $ip,
H A Daction.php40 private function do_check($username, $email, $ip) argument
43 urlencode($email), urlencode($username), urlencode($ip));
55 $ip = $_SERVER['REMOTE_ADDR'];
56 $response = $this->do_check($username, $email, $ip);
62 $this->logger->LogAttempt($username, $email, $ip, $this->checker->trigger,
/plugin/stopforumspam2/
H A Dhelper.php23 function rawdata($ip = null, $email = null, $username = null, $wildcards = null){ argument
25 if ($ip == null and $email == null and $username == null) return array();
30 'ip' => $ip,
76 …if (isset($resultarray['ip']['frequency'])) $ipfreq = $resultarray['ip']['frequency']; else $ipfre…
79 …if (isset($resultarray['ip']['confidence'])) $ipconf = $resultarray['ip']['confidence']; else $ipc…
83 … if ($returnvalue) return array('ip' => $ipfreq, 'email' => $emailfreq, 'username' => $namefreq);
124 …if (isset($resultarray['ip']['confidence'])) $ipconf = $resultarray['ip']['confidence']; else $ipc…
127 …if (isset($resultarray['ip']['frequency'])) $ipfreq = $resultarray['ip']['frequency']; else $ipfre…
212 * @param string $ip
217 function whitelists ($ip = null, $email = null, $username = null) { argument
[all …]
/plugin/tgnotify/
H A DCHANGELOG.rst26 * Feature: user address (ip or fqdn) in message can be enabled/disabled in plugin config

123456