Initial Commit
@@ -0,0 +1,34 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<title>Mettcalc – calc all you need</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" />
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<main class="content">
|
||||||
|
<div class="col-6 col-offset-3">
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-6" for="halfRolls">Brötchenhälften:</label>
|
||||||
|
<div class="col-6">
|
||||||
|
<input class="form-control" id="halfRolls" type="number" min="1" value="1" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-6" for="hunger">Mettmenge:</label>
|
||||||
|
<div class="col-6">
|
||||||
|
<select class="form-control" id="hunger"></select>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<div class="col-6 col-offset-6">
|
||||||
|
<button class="btn btn-default" id="calc">Berechnen!</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="out"></div>
|
||||||
|
</div>
|
||||||
|
</main>
|
||||||
|
<script src="./mett.min.js"></script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,61 @@
|
|||||||
|
!!(function() {
|
||||||
|
var aUnits = {
|
||||||
|
'wenig': 30,
|
||||||
|
'normal': 40,
|
||||||
|
'viel': 50,
|
||||||
|
'sehr viel': 60
|
||||||
|
}
|
||||||
|
var iHunger = 40;
|
||||||
|
var iRolls = 1;
|
||||||
|
var $oRolls = $('#halfRolls');
|
||||||
|
var $oSelect = $('#hunger');
|
||||||
|
var aMeasures = ['G', 'KG', 'T'];
|
||||||
|
|
||||||
|
var inf = function(iIn) {
|
||||||
|
var sIn = String(Math.round(iIn));
|
||||||
|
var rGx = /(\d+)(\d{3})/;
|
||||||
|
while(rGx.test(sIn)) sIn = sIn.replace(rGx, '$1.$2');
|
||||||
|
return sIn;
|
||||||
|
}
|
||||||
|
var nf = function(fIn) {
|
||||||
|
var aIn = String(parseFloat(fIn).toFixed(2)).split('.');
|
||||||
|
var rGx = /(\d+)(\d{3})/;
|
||||||
|
while(rGx.test(aIn[0])) aIn[0] = aIn[0].replace(rGx, '$1.$2');
|
||||||
|
return aIn.join(',');
|
||||||
|
}
|
||||||
|
var calc = function() {
|
||||||
|
var fHack = iRolls * iHunger;
|
||||||
|
var sMeas = '';
|
||||||
|
var bDiv = false;
|
||||||
|
for(var i in aMeasures) {
|
||||||
|
sMeas = aMeasures[i];
|
||||||
|
if(fHack < 1000) break;
|
||||||
|
fHack /= 1000;
|
||||||
|
bDiv = true;
|
||||||
|
}
|
||||||
|
document.location.hash = 'r'+iRolls+'-m'+iHunger;
|
||||||
|
$('#out').text('Bestell '+(bDiv ? nf(fHack) : inf(fHack))+' '+sMeas+' Mett beim Metzger, bro.');
|
||||||
|
}
|
||||||
|
|
||||||
|
var aMatch = document.location.hash.match(/r(\d+)-m(\d+)/);
|
||||||
|
if(aMatch) {
|
||||||
|
iRolls = parseInt(aMatch[1]);
|
||||||
|
iHunger = parseInt(aMatch[2]);
|
||||||
|
calc();
|
||||||
|
}
|
||||||
|
|
||||||
|
$oRolls.val(iRolls).on('change', function() {
|
||||||
|
iRolls = parseInt($oRolls.val());
|
||||||
|
});
|
||||||
|
|
||||||
|
$.each(aUnits, function(name, e) {
|
||||||
|
$oSelect.append($('<option>').attr('value', e).prop('selected', e == iHunger).text(name));
|
||||||
|
});
|
||||||
|
|
||||||
|
$oSelect.on('change', function() {
|
||||||
|
iHunger = $oSelect.val();
|
||||||
|
});
|
||||||
|
|
||||||
|
$('#calc').on('click', calc);
|
||||||
|
|
||||||
|
})();
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
!!function(){var t={wenig:30,normal:40,viel:50,"sehr viel":60},e=40,n=1,a=$("#halfRolls"),r=$("#hunger"),o=["G","KG","T"],c=function(t){for(var e=String(Math.round(t)),n=/(\d+)(\d{3})/;n.test(e);)e=e.replace(n,"$1.$2");return e},i=function(t){for(var e=String(parseFloat(t).toFixed(2)).split("."),n=/(\d+)(\d{3})/;n.test(e[0]);)e[0]=e[0].replace(n,"$1.$2");return e.join(",")},l=function(){var t=n*e,a="",r=!1;for(var l in o){if(a=o[l],1e3>t)break;t/=1e3,r=!0}document.location.hash="r"+n+"-m"+e,$("#out").text("Bestell "+(r?i(t):c(t))+" "+a+" Mett beim Metzger, bro.")},u=document.location.hash.match(/r(\d+)-m(\d+)/);u&&(n=parseInt(u[1]),e=parseInt(u[2]),l()),a.val(n).on("change",function(){n=parseInt(a.val())}),$.each(t,function(t,n){r.append($("<option>").attr("value",n).prop("selected",n==e).text(t))}),r.on("change",function(){e=r.val()}),$("#calc").on("click",l)}();
|
||||||
|
//# sourceMappingURL=mett.min.js.map
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"version":3,"sources":["mett.js"],"names":["aUnits","wenig","normal","viel","sehr viel","iHunger","iRolls","$oRolls","$","$oSelect","aMeasures","inf","iIn","sIn","String","Math","round","rGx","test","replace","nf","fIn","aIn","parseFloat","toFixed","split","join","calc","fHack","sMeas","bDiv","i","document","location","hash","text","aMatch","match","parseInt","val","on","each","name","e","append","attr","prop"],"mappings":"EAAE,WACD,GAAIA,IACHC,MAAS,GACTC,OAAU,GACVC,KAAQ,GACRC,YAAa,IAEVC,EAAU,GACVC,EAAS,EACTC,EAAUC,EAAE,cACZC,EAAWD,EAAE,WACVE,GAAa,IAAK,KAAM,KAE3BC,EAAM,SAASC,GAGlB,IAFA,GAAIC,GAAMC,OAAOC,KAAKC,MAAMJ,IACxBK,EAAM,eACJA,EAAIC,KAAKL,IAAMA,EAAMA,EAAIM,QAAQF,EAAK,QAC5C,OAAOJ,IAEJO,EAAK,SAASC,GAGjB,IAFA,GAAIC,GAAMR,OAAOS,WAAWF,GAAKG,QAAQ,IAAIC,MAAM,KAC/CR,EAAM,eACJA,EAAIC,KAAKI,EAAI,KAAKA,EAAI,GAAKA,EAAI,GAAGH,QAAQF,EAAK,QACrD,OAAOK,GAAII,KAAK,MAEVC,EAAO,WACP,GAAIC,GAAQtB,EAASD,EACjBwB,EAAQ,GACdC,GAAO,CACL,KAAI,GAAIC,KAAKrB,GAAW,CAEpB,GADAmB,EAAQnB,EAAUqB,GACP,IAARH,EAAc,KACjBA,IAAS,IAClBE,GAAO,EAERE,SAASC,SAASC,KAAO,IAAI5B,EAAO,KAAKD,EACnCG,EAAE,QAAQ2B,KAAK,YAAYL,EAAOV,EAAGQ,GAASjB,EAAIiB,IAAQ,IAAIC,EAAM,6BAGvEO,EAASJ,SAASC,SAASC,KAAKG,MAAM,gBACvCD,KACF9B,EAASgC,SAASF,EAAO,IACzB/B,EAAUiC,SAASF,EAAO,IAC1BT,KAGDpB,EAAQgC,IAAIjC,GAAQkC,GAAG,SAAU,WAChClC,EAASgC,SAAS/B,EAAQgC,SAGxB/B,EAAEiC,KAAKzC,EAAQ,SAAS0C,EAAMC,GAC1BlC,EAASmC,OAAOpC,EAAE,YAAYqC,KAAK,QAASF,GAAGG,KAAK,WAAYH,GAAKtC,GAAS8B,KAAKO,MAG1FjC,EAAS+B,GAAG,SAAU,WACrBnC,EAAUI,EAAS8B,QAGpB/B,EAAE,SAASgC,GAAG,QAASb","file":"mett.min.js"}
|
||||||
|
After Width: | Height: | Size: 85 KiB |
|
After Width: | Height: | Size: 588 KiB |
|
After Width: | Height: | Size: 76 KiB |
@@ -0,0 +1,280 @@
|
|||||||
|
@charset "utf-8";
|
||||||
|
/*
|
||||||
|
/*
|
||||||
|
* HTML5 ✰ Boilerplate
|
||||||
|
*
|
||||||
|
* Das Folgende ist das Ergebnis umfangreicher Nachforschungen zum browserunabhängigen Webdesign.
|
||||||
|
* Verweise auf die Urheber finden Sie in den Codekommentaren, außerdem ein herzliches Dankeschön an Nicolas Gallagher, Jonathan Neal,
|
||||||
|
* Kroc Camen und die H5BP-Entwicklergemeinde und das H5BP-Team.
|
||||||
|
*
|
||||||
|
* Ausführliche Informationen über diesen CSS-Code gibt's unter h5bp.com/css
|
||||||
|
*
|
||||||
|
* Dreamweaver-Modifikationen:
|
||||||
|
* 1. Auswahlmarkierung auskommentiert
|
||||||
|
* 2. Abschnitt über Medienabfrage entfernt (wir definieren unsere eigene Medienabfrage in einer gesonderten Datei)
|
||||||
|
*
|
||||||
|
* ==|== Normalisieren ======================================================
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
/* =============================================================================
|
||||||
|
HTML5-Anzeigedefinitionen
|
||||||
|
========================================================================== */
|
||||||
|
|
||||||
|
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section { display: block; }
|
||||||
|
audio, canvas, video { display: inline-block; *display: inline; *zoom: 1; }
|
||||||
|
audio:not([controls]) { display: none; }
|
||||||
|
[hidden] { display: none; }
|
||||||
|
|
||||||
|
/* =============================================================================
|
||||||
|
Basis
|
||||||
|
========================================================================== */
|
||||||
|
|
||||||
|
/*
|
||||||
|
* 1. Die Anpassung der Textgröße führt in IE6/7 zu merkwürdigen Resultaten, wenn die Schriftgröße des Bodytexts in em-Einheiten angegeben ist
|
||||||
|
* 2. Erzwingen einer vertikalen Bildlaufleiste in Nicht-IE-Browsern
|
||||||
|
* 3. Verhindern der iOS-Textgrößenanpassung beim Ändern der Geräteausrichtung ohne den Benutzerzoom zu deaktivieren: h5bp.com/g
|
||||||
|
*/
|
||||||
|
|
||||||
|
html { font-size: 100%; overflow-y: scroll; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; }
|
||||||
|
|
||||||
|
body { margin: 0; font-size: 13px; line-height: 1.231; }
|
||||||
|
|
||||||
|
body, button, input, select, textarea { font-family: sans-serif; color: #222; }
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Textschatten in der Auswahlmarkierung entfernen: h5bp.com/i
|
||||||
|
* Die folgenden Auswahldeklarationen müssen getrennt voneinander erfolgen
|
||||||
|
* Außerdem: leuchtendes Pink! (Die Hintergrundfarbe kann auch an das Design angepasst werden.)
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* Dreamweaver: die folgenden Codestellen auskommentieren, wenn die Auswahlmarkierung angepasst werden soll
|
||||||
|
*::-moz-selection { background: #fe57a1; color: #fff; text-shadow: none; }
|
||||||
|
*::selection { background: #fe57a1; color: #fff; text-shadow: none; }
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* =============================================================================
|
||||||
|
Hyperlinks
|
||||||
|
========================================================================== */
|
||||||
|
|
||||||
|
a { color: #00e; }
|
||||||
|
a:visited { color: #551a8b; }
|
||||||
|
a:hover { color: #06e; }
|
||||||
|
a:focus { outline: thin dotted; }
|
||||||
|
|
||||||
|
/* Verbessert in allen Browsern die Lesbarkeit von Hyperlinks, die über die Tabulatortaste fokussiert werden (focus) und von Hyperlinks, auf die der Mauszeiger gerichtet ist (hover): h5bp.com/h */
|
||||||
|
a:hover, a:active { outline: 0; }
|
||||||
|
|
||||||
|
|
||||||
|
/* =============================================================================
|
||||||
|
Typografie
|
||||||
|
========================================================================== */
|
||||||
|
|
||||||
|
abbr[title] { border-bottom: 1px dotted; }
|
||||||
|
|
||||||
|
b, strong { font-weight: bold; }
|
||||||
|
|
||||||
|
blockquote { margin: 1em 40px; }
|
||||||
|
|
||||||
|
dfn { font-style: italic; }
|
||||||
|
|
||||||
|
hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; }
|
||||||
|
|
||||||
|
ins { background: #ff9; color: #000; text-decoration: none; }
|
||||||
|
|
||||||
|
mark { background: #ff0; color: #000; font-style: italic; font-weight: bold; }
|
||||||
|
|
||||||
|
/* Nichtproportionale Schriftfamilie neu deklarieren: h5bp.com/j */
|
||||||
|
pre, code, kbd, samp { font-family: monospace, monospace; _font-family: 'courier new', monospace; font-size: 1em; }
|
||||||
|
|
||||||
|
/* In allen Browsern die Lesbarkeit von vorformatiertem Text verbessern */
|
||||||
|
pre { white-space: pre; white-space: pre-wrap; word-wrap: break-word; }
|
||||||
|
|
||||||
|
q { quotes: none; }
|
||||||
|
q:before, q:after { content: ""; content: none; }
|
||||||
|
|
||||||
|
small { font-size: 85%; }
|
||||||
|
|
||||||
|
/* Text höher oder tiefer stellen ohne die Zeilenhöhe zu beeinflussen: h5bp.com/k */
|
||||||
|
sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
|
||||||
|
sup { top: -0.5em; }
|
||||||
|
sub { bottom: -0.25em; }
|
||||||
|
|
||||||
|
|
||||||
|
/* =============================================================================
|
||||||
|
Listen
|
||||||
|
========================================================================== */
|
||||||
|
|
||||||
|
ul, ol { margin: 1em 0; padding: 0 0 0 40px; }
|
||||||
|
dd { margin: 0 0 0 40px; }
|
||||||
|
nav ul, nav ol { list-style: none; list-style-image: none; margin: 0; padding: 0; }
|
||||||
|
|
||||||
|
|
||||||
|
/* =============================================================================
|
||||||
|
Eingebetteter Inhalt
|
||||||
|
========================================================================== */
|
||||||
|
|
||||||
|
/*
|
||||||
|
* 1. Verbessern der Bildqualität beim Skalieren in IE7: h5bp.com/d
|
||||||
|
* 2. Entfernen der Lücke zwischen Bildern und Rahmen in Bildcontainern: h5bp.com/e
|
||||||
|
*/
|
||||||
|
|
||||||
|
img { border: 0; -ms-interpolation-mode: bicubic; vertical-align: middle; }
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Korrekter Überlauf in IE9 nicht verborgen
|
||||||
|
*/
|
||||||
|
|
||||||
|
svg:not(:root) { overflow: hidden; }
|
||||||
|
|
||||||
|
|
||||||
|
/* =============================================================================
|
||||||
|
Abbildungen
|
||||||
|
========================================================================== */
|
||||||
|
|
||||||
|
figure { margin: 0; }
|
||||||
|
|
||||||
|
|
||||||
|
/* =============================================================================
|
||||||
|
Formulare
|
||||||
|
========================================================================== */
|
||||||
|
|
||||||
|
form { margin: 0; }
|
||||||
|
fieldset { border: 0; margin: 0; padding: 0; }
|
||||||
|
|
||||||
|
/* Festlegen, dass 'label' den Fokus auf das betreffende Forularelement setzt */
|
||||||
|
label { cursor: pointer; }
|
||||||
|
|
||||||
|
/*
|
||||||
|
* 1. Korrekte Farbe wird in IE6/7/8/9 nicht vererbt
|
||||||
|
* 2. Korrekte Ausrichtung wird in IE6/7 merkwürdig angezeigt
|
||||||
|
*/
|
||||||
|
|
||||||
|
legend { border: 0; *margin-left: -7px; padding: 0; }
|
||||||
|
|
||||||
|
/*
|
||||||
|
* 1. Korrekte Schriftgröße wird in keinem der Browser vererbt
|
||||||
|
* 2. Entfernen von Rändern in FF3/4 S5 Chrome
|
||||||
|
* 3. Definieren konsistenter vertikaler Ausrichtung für alle Browser
|
||||||
|
*/
|
||||||
|
|
||||||
|
button, input, select, textarea { font-size: 100%; margin: 0; vertical-align: baseline; *vertical-align: middle; }
|
||||||
|
|
||||||
|
/*
|
||||||
|
* 1. Für eine Übereinstimmung mit FF3/4 die Zeilenhöhe als normal definieren (im UA-Stylesheet '!important' verwenden)
|
||||||
|
* 2. Korrekter innerer Abstand wird in IE6/7 merkwürdig angezeigt
|
||||||
|
*/
|
||||||
|
|
||||||
|
button, input { line-height: normal; *overflow: visible; }
|
||||||
|
|
||||||
|
/*
|
||||||
|
* In 'table' inneren Abstand wieder einführen, um Überlappungen zu vermeiden und IE6/7-Probleme mit Leerraum zu vermeiden.
|
||||||
|
*/
|
||||||
|
|
||||||
|
table button, table input { *overflow: auto; }
|
||||||
|
|
||||||
|
/*
|
||||||
|
* 1. Anzeigen des Handcursors bei klickbaren Formularelementen
|
||||||
|
* 2. Gestaltung klickbarer Formularelemente in iOS ermöglichen
|
||||||
|
*/
|
||||||
|
|
||||||
|
button, input[type="button"], input[type="reset"], input[type="submit"] { cursor: pointer; -webkit-appearance: button; }
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Konsistente Größe und Darstellung von Feldern
|
||||||
|
*/
|
||||||
|
|
||||||
|
input[type="checkbox"], input[type="radio"] { box-sizing: border-box; }
|
||||||
|
input[type="search"] { -webkit-appearance: textfield; -moz-box-sizing: content-box; -webkit-box-sizing: content-box; box-sizing: content-box; }
|
||||||
|
input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; }
|
||||||
|
|
||||||
|
/*
|
||||||
|
* In FF3/4 innere Auffüllung und Rahmen entfernen: h5bp.com/l
|
||||||
|
*/
|
||||||
|
|
||||||
|
button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; }
|
||||||
|
|
||||||
|
/*
|
||||||
|
* 1. In IE6/7/8/9 vertikale Standardbildlaufleiste entfernen
|
||||||
|
* 2. Größenänderung nur in der Vertikale zulassen
|
||||||
|
*/
|
||||||
|
|
||||||
|
textarea { overflow: auto; vertical-align: top; resize: vertical; }
|
||||||
|
|
||||||
|
/* Farben für die Formularüberprüfung */
|
||||||
|
input:valid, textarea:valid { }
|
||||||
|
input:invalid, textarea:invalid { background-color: #f0dddd; }
|
||||||
|
|
||||||
|
|
||||||
|
/* =============================================================================
|
||||||
|
Tabellen
|
||||||
|
========================================================================== */
|
||||||
|
|
||||||
|
table { border-collapse: collapse; border-spacing: 0; }
|
||||||
|
td { vertical-align: top; }
|
||||||
|
|
||||||
|
|
||||||
|
/* ==|== Primärstile ========================================================
|
||||||
|
Autor:
|
||||||
|
========================================================================== */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* ==|== nichtsemantische Helferklassen ========================================
|
||||||
|
Definieren Sie Ihre Stile vor dieser Auswahl
|
||||||
|
========================================================================== */
|
||||||
|
|
||||||
|
/* Für den Austausch von Bildern */
|
||||||
|
.ir { display: block; border: 0; text-indent: -999em; overflow: hidden; background-color: transparent; background-repeat: no-repeat; text-align: left; direction: ltr; }
|
||||||
|
.ir br { display: none; }
|
||||||
|
|
||||||
|
/* Vor Bildschirmleseprogrammen und Browsern verbergen: h5bp.com/u */
|
||||||
|
.hidden { display: none !important; visibility: hidden; }
|
||||||
|
|
||||||
|
/* Nur visuell verbergen, aber für Bildschirmleseprogramme bereithalten: h5bp.com/v */
|
||||||
|
.visuallyhidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }
|
||||||
|
|
||||||
|
/* Erweitert die Klasse ".visuallyhidden" so, dass das Element bei der Tastaturnavigation den Fokus erhält: h5bp.com/p */
|
||||||
|
.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; }
|
||||||
|
|
||||||
|
/* Visuell und vor Bildschirmleseprogrammen verbergen, aber das Layout beibehalten */
|
||||||
|
.invisible { visibility: hidden; }
|
||||||
|
|
||||||
|
/* Floats beinhalten: h5bp.com/q */
|
||||||
|
.clearfix:before, .clearfix:after { content: ""; display: table; }
|
||||||
|
.clearfix:after { clear: both; }
|
||||||
|
.clearfix { zoom: 1; }
|
||||||
|
|
||||||
|
|
||||||
|
/* ==|== Druckstile ==========================================================
|
||||||
|
Druckstile.
|
||||||
|
Innen, um die erforderliche HTTP-Verbindung zu vermeiden: h5bp.com/r
|
||||||
|
========================================================================== */
|
||||||
|
|
||||||
|
@media print {
|
||||||
|
* { background: transparent !important; color: black !important; text-shadow: none !important; filter:none !important; -ms-filter: none !important; } /* Schwarz druckt schneller: h5bp.com/s */
|
||||||
|
a, a:visited { text-decoration: underline; }
|
||||||
|
a[href]:after { content: " (" attr(href) ")"; }
|
||||||
|
abbr[title]:after { content: " (" attr(title) ")"; }
|
||||||
|
.ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; } /* Keine Bildverweise anzeigen und keine javascript/internal- Hyperlinks */
|
||||||
|
pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
|
||||||
|
thead { display: table-header-group; } /* h5bp.com/t */
|
||||||
|
tr, img { page-break-inside: avoid; }
|
||||||
|
img { max-width: 100% !important; }
|
||||||
|
@page { margin: 0.5cm; }
|
||||||
|
p, h2, h3 { orphans: 3; widows: 3; }
|
||||||
|
h2, h3 { page-break-after: avoid; }
|
||||||
|
}
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<browserconfig>
|
||||||
|
<msapplication>
|
||||||
|
<tile>
|
||||||
|
<square150x150logo src="/mstile-150x150.png"/>
|
||||||
|
<TileColor>#b91d47</TileColor>
|
||||||
|
</tile>
|
||||||
|
</msapplication>
|
||||||
|
</browserconfig>
|
||||||
@@ -0,0 +1,61 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
||||||
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||||
|
<head>
|
||||||
|
<title>FEHLER 400 - Ungültige Anforderung!</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
|
<meta name="robots" content="noindex" />
|
||||||
|
<style type="text/css"><!--
|
||||||
|
body {
|
||||||
|
color: #444444;
|
||||||
|
background-color: #EEEEEE;
|
||||||
|
font-family: 'Trebuchet MS', sans-serif;
|
||||||
|
font-size: 80%;
|
||||||
|
}
|
||||||
|
h1 {}
|
||||||
|
h2 { font-size: 1.2em; }
|
||||||
|
#page{
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
width: 60%;
|
||||||
|
margin: 24px auto;
|
||||||
|
padding: 12px;
|
||||||
|
}
|
||||||
|
#header {
|
||||||
|
padding: 6px ;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
.status3xx { background-color: #475076; color: #FFFFFF; }
|
||||||
|
.status4xx { background-color: #C55042; color: #FFFFFF; }
|
||||||
|
.status5xx { background-color: #F2E81A; color: #000000; }
|
||||||
|
#content {
|
||||||
|
padding: 4px 0 24px 0;
|
||||||
|
}
|
||||||
|
#footer {
|
||||||
|
color: #666666;
|
||||||
|
background: #f9f9f9;
|
||||||
|
padding: 10px 20px;
|
||||||
|
border-top: 5px #efefef solid;
|
||||||
|
font-size: 0.8em;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
#footer a {
|
||||||
|
color: #999999;
|
||||||
|
}
|
||||||
|
--></style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="page">
|
||||||
|
<div id="header" class="status4xx">
|
||||||
|
<h1>FEHLER 400 - Ungültige Anforderung!</h1>
|
||||||
|
</div>
|
||||||
|
<div id="content">
|
||||||
|
<h2>Folgender Fehler ist aufgetreten:</h2>
|
||||||
|
<p>Sie verwenden eine ungültige Anforderung.</p>
|
||||||
|
<p>Bei Problemen wenden Sie sich bitte an den <!--WEBMASTER//-->Webmaster<!--WEBMASTER//-->.</p>
|
||||||
|
</div>
|
||||||
|
<div id="footer">
|
||||||
|
<p>Powered by <a href="http://www.ispconfig.org">ISPConfig</a></p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,61 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
||||||
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||||
|
<head>
|
||||||
|
<title>FEHLER 401 - Zugriff verweigert!</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
|
<meta name="robots" content="noindex" />
|
||||||
|
<style type="text/css"><!--
|
||||||
|
body {
|
||||||
|
color: #444444;
|
||||||
|
background-color: #EEEEEE;
|
||||||
|
font-family: 'Trebuchet MS', sans-serif;
|
||||||
|
font-size: 80%;
|
||||||
|
}
|
||||||
|
h1 {}
|
||||||
|
h2 { font-size: 1.2em; }
|
||||||
|
#page{
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
width: 60%;
|
||||||
|
margin: 24px auto;
|
||||||
|
padding: 12px;
|
||||||
|
}
|
||||||
|
#header {
|
||||||
|
padding: 6px ;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
.status3xx { background-color: #475076; color: #FFFFFF; }
|
||||||
|
.status4xx { background-color: #C55042; color: #FFFFFF; }
|
||||||
|
.status5xx { background-color: #F2E81A; color: #000000; }
|
||||||
|
#content {
|
||||||
|
padding: 4px 0 24px 0;
|
||||||
|
}
|
||||||
|
#footer {
|
||||||
|
color: #666666;
|
||||||
|
background: #f9f9f9;
|
||||||
|
padding: 10px 20px;
|
||||||
|
border-top: 5px #efefef solid;
|
||||||
|
font-size: 0.8em;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
#footer a {
|
||||||
|
color: #999999;
|
||||||
|
}
|
||||||
|
--></style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="page">
|
||||||
|
<div id="header" class="status4xx">
|
||||||
|
<h1>FEHLER 401 - Zugriff verweigert!</h1>
|
||||||
|
</div>
|
||||||
|
<div id="content">
|
||||||
|
<h2>Folgender Fehler ist aufgetreten:</h2>
|
||||||
|
<p>Der Anmeldeversuch ist fehlgeschlagen, vermutlich, weil ein ungültiger Benutzername oder ein ungültiges Kennwort verwendet wurde.</p>
|
||||||
|
<P>Bei weiteren Problemen wenden Sie sich bitte an den <!--WEBMASTER//-->Webmaster<!--WEBMASTER//-->.</p>
|
||||||
|
</div>
|
||||||
|
<div id="footer">
|
||||||
|
<p>Powered by <a href="http://www.ispconfig.org">ISPConfig</a></p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,61 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
||||||
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||||
|
<head>
|
||||||
|
<title>FEHLER 403 - Unzulässig!</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
|
<meta name="robots" content="noindex" />
|
||||||
|
<style type="text/css"><!--
|
||||||
|
body {
|
||||||
|
color: #444444;
|
||||||
|
background-color: #EEEEEE;
|
||||||
|
font-family: 'Trebuchet MS', sans-serif;
|
||||||
|
font-size: 80%;
|
||||||
|
}
|
||||||
|
h1 {}
|
||||||
|
h2 { font-size: 1.2em; }
|
||||||
|
#page{
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
width: 60%;
|
||||||
|
margin: 24px auto;
|
||||||
|
padding: 12px;
|
||||||
|
}
|
||||||
|
#header {
|
||||||
|
padding: 6px ;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
.status3xx { background-color: #475076; color: #FFFFFF; }
|
||||||
|
.status4xx { background-color: #C55042; color: #FFFFFF; }
|
||||||
|
.status5xx { background-color: #F2E81A; color: #000000; }
|
||||||
|
#content {
|
||||||
|
padding: 4px 0 24px 0;
|
||||||
|
}
|
||||||
|
#footer {
|
||||||
|
color: #666666;
|
||||||
|
background: #f9f9f9;
|
||||||
|
padding: 10px 20px;
|
||||||
|
border-top: 5px #efefef solid;
|
||||||
|
font-size: 0.8em;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
#footer a {
|
||||||
|
color: #999999;
|
||||||
|
}
|
||||||
|
--></style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="page">
|
||||||
|
<div id="header" class="status4xx">
|
||||||
|
<h1>FEHLER 403 - Unzulässig!</h1>
|
||||||
|
</div>
|
||||||
|
<div id="content">
|
||||||
|
<h2>Folgender Fehler ist aufgetreten:</h2>
|
||||||
|
<p>Sie besitzen nicht die erforderlichen Rechte, die angegebene URL zu öffnen.</p>
|
||||||
|
<p>Bei weiteren Problemen wenden Sie sich bitte an den <!--WEBMASTER//-->Webmaster<!--WEBMASTER//-->.</p>
|
||||||
|
</div>
|
||||||
|
<div id="footer">
|
||||||
|
<p>Powered by <a href="http://www.ispconfig.org">ISPConfig</a></p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,61 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
||||||
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||||
|
<head>
|
||||||
|
<title>FEHLER 404 - Nicht gefunden!</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
|
<meta name="robots" content="noindex" />
|
||||||
|
<style type="text/css"><!--
|
||||||
|
body {
|
||||||
|
color: #444444;
|
||||||
|
background-color: #EEEEEE;
|
||||||
|
font-family: 'Trebuchet MS', sans-serif;
|
||||||
|
font-size: 80%;
|
||||||
|
}
|
||||||
|
h1 {}
|
||||||
|
h2 { font-size: 1.2em; }
|
||||||
|
#page{
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
width: 60%;
|
||||||
|
margin: 24px auto;
|
||||||
|
padding: 12px;
|
||||||
|
}
|
||||||
|
#header {
|
||||||
|
padding: 6px ;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
.status3xx { background-color: #475076; color: #FFFFFF; }
|
||||||
|
.status4xx { background-color: #C55042; color: #FFFFFF; }
|
||||||
|
.status5xx { background-color: #F2E81A; color: #000000; }
|
||||||
|
#content {
|
||||||
|
padding: 4px 0 24px 0;
|
||||||
|
}
|
||||||
|
#footer {
|
||||||
|
color: #666666;
|
||||||
|
background: #f9f9f9;
|
||||||
|
padding: 10px 20px;
|
||||||
|
border-top: 5px #efefef solid;
|
||||||
|
font-size: 0.8em;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
#footer a {
|
||||||
|
color: #999999;
|
||||||
|
}
|
||||||
|
--></style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="page">
|
||||||
|
<div id="header" class="status4xx">
|
||||||
|
<h1>FEHLER 404 - Nicht gefunden!</h1>
|
||||||
|
</div>
|
||||||
|
<div id="content">
|
||||||
|
<h2>Folgender Fehler ist aufgetreten:</h2>
|
||||||
|
<p>Die angegebene URL wurde auf diesem Server nicht gefunden.</p>
|
||||||
|
<P>Bitte überprüfen Sie die Schreibweise der URL oder wenden Sie sich an den <!--WEBMASTER//-->Webmaster<!--WEBMASTER//-->.</p>
|
||||||
|
</div>
|
||||||
|
<div id="footer">
|
||||||
|
<p>Powered by <a href="http://www.ispconfig.org">ISPConfig</a></p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,61 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
||||||
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||||
|
<head>
|
||||||
|
<title>FEHLER 405 - Methode unzulässig!</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
|
<meta name="robots" content="noindex" />
|
||||||
|
<style type="text/css"><!--
|
||||||
|
body {
|
||||||
|
color: #444444;
|
||||||
|
background-color: #EEEEEE;
|
||||||
|
font-family: 'Trebuchet MS', sans-serif;
|
||||||
|
font-size: 80%;
|
||||||
|
}
|
||||||
|
h1 {}
|
||||||
|
h2 { font-size: 1.2em; }
|
||||||
|
#page{
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
width: 60%;
|
||||||
|
margin: 24px auto;
|
||||||
|
padding: 12px;
|
||||||
|
}
|
||||||
|
#header {
|
||||||
|
padding: 6px ;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
.status3xx { background-color: #475076; color: #FFFFFF; }
|
||||||
|
.status4xx { background-color: #C55042; color: #FFFFFF; }
|
||||||
|
.status5xx { background-color: #F2E81A; color: #000000; }
|
||||||
|
#content {
|
||||||
|
padding: 4px 0 24px 0;
|
||||||
|
}
|
||||||
|
#footer {
|
||||||
|
color: #666666;
|
||||||
|
background: #f9f9f9;
|
||||||
|
padding: 10px 20px;
|
||||||
|
border-top: 5px #efefef solid;
|
||||||
|
font-size: 0.8em;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
#footer a {
|
||||||
|
color: #999999;
|
||||||
|
}
|
||||||
|
--></style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="page">
|
||||||
|
<div id="header" class="status4xx">
|
||||||
|
<h1>FEHLER 405 - Methode unzulässig!</h1>
|
||||||
|
</div>
|
||||||
|
<div id="content">
|
||||||
|
<h2>Folgender Fehler ist aufgetreten:</h2>
|
||||||
|
<p>Für Zugriff auf diese Seite verwendetes HTTP-Verb ist nicht zulässig, Methode unzulässig.</p>
|
||||||
|
<p>Bei Problemen wenden Sie sich bitte an den <!--WEBMASTER//-->Webmaster<!--WEBMASTER//-->.</p>
|
||||||
|
</div>
|
||||||
|
<div id="footer">
|
||||||
|
<p>Powered by <a href="http://www.ispconfig.org">ISPConfig</a></p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,61 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
||||||
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||||
|
<head>
|
||||||
|
<title>FEHLER 500 - Interner Serverfehler!</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
|
<meta name="robots" content="noindex" />
|
||||||
|
<style type="text/css"><!--
|
||||||
|
body {
|
||||||
|
color: #444444;
|
||||||
|
background-color: #EEEEEE;
|
||||||
|
font-family: 'Trebuchet MS', sans-serif;
|
||||||
|
font-size: 80%;
|
||||||
|
}
|
||||||
|
h1 {}
|
||||||
|
h2 { font-size: 1.2em; }
|
||||||
|
#page{
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
width: 60%;
|
||||||
|
margin: 24px auto;
|
||||||
|
padding: 12px;
|
||||||
|
}
|
||||||
|
#header {
|
||||||
|
padding: 6px ;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
.status3xx { background-color: #475076; color: #FFFFFF; }
|
||||||
|
.status4xx { background-color: #C55042; color: #FFFFFF; }
|
||||||
|
.status5xx { background-color: #F2E81A; color: #000000; }
|
||||||
|
#content {
|
||||||
|
padding: 4px 0 24px 0;
|
||||||
|
}
|
||||||
|
#footer {
|
||||||
|
color: #666666;
|
||||||
|
background: #f9f9f9;
|
||||||
|
padding: 10px 20px;
|
||||||
|
border-top: 5px #efefef solid;
|
||||||
|
font-size: 0.8em;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
#footer a {
|
||||||
|
color: #999999;
|
||||||
|
}
|
||||||
|
--></style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="page">
|
||||||
|
<div id="header" class="status5xx">
|
||||||
|
<h1>FEHLER 500 - Interner Serverfehler!</h1>
|
||||||
|
</div>
|
||||||
|
<div id="content">
|
||||||
|
<h2>Folgender Fehler ist aufgetreten:</h2>
|
||||||
|
<p>Beim Aufruf der angegebenen URL ist ein interner Serverfehler aufgetreten.</p>
|
||||||
|
<p>Sollten Sie diese Fehlermeldung öfter erhalten, wenden Sie sich bitte an den <!--WEBMASTER//-->Webmaster<!--WEBMASTER//-->.</p>
|
||||||
|
</div>
|
||||||
|
<div id="footer">
|
||||||
|
<p>Powered by <a href="http://www.ispconfig.org">ISPConfig</a></p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,61 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
||||||
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||||
|
<head>
|
||||||
|
<title>FEHLER 502 - Fehlerhaftes Gateway!</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
|
<meta name="robots" content="noindex" />
|
||||||
|
<style type="text/css"><!--
|
||||||
|
body {
|
||||||
|
color: #444444;
|
||||||
|
background-color: #EEEEEE;
|
||||||
|
font-family: 'Trebuchet MS', sans-serif;
|
||||||
|
font-size: 80%;
|
||||||
|
}
|
||||||
|
h1 {}
|
||||||
|
h2 { font-size: 1.2em; }
|
||||||
|
#page{
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
width: 60%;
|
||||||
|
margin: 24px auto;
|
||||||
|
padding: 12px;
|
||||||
|
}
|
||||||
|
#header {
|
||||||
|
padding: 6px ;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
.status3xx { background-color: #475076; color: #FFFFFF; }
|
||||||
|
.status4xx { background-color: #C55042; color: #FFFFFF; }
|
||||||
|
.status5xx { background-color: #F2E81A; color: #000000; }
|
||||||
|
#content {
|
||||||
|
padding: 4px 0 24px 0;
|
||||||
|
}
|
||||||
|
#footer {
|
||||||
|
color: #666666;
|
||||||
|
background: #f9f9f9;
|
||||||
|
padding: 10px 20px;
|
||||||
|
border-top: 5px #efefef solid;
|
||||||
|
font-size: 0.8em;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
#footer a {
|
||||||
|
color: #999999;
|
||||||
|
}
|
||||||
|
--></style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="page">
|
||||||
|
<div id="header" class="status5xx">
|
||||||
|
<h1>FEHLER 502 - Fehlerhaftes Gateway!</h1>
|
||||||
|
</div>
|
||||||
|
<div id="content">
|
||||||
|
<h2>Folgender Fehler ist aufgetreten:</h2>
|
||||||
|
<p>Dieser Server hat eine ungültige Antwort von einem Upstream-Server erhalten, auf den zugegriffen wurde, um die Anforderung zu erfüllen. </p>
|
||||||
|
<P>Sollten Sie diese Fehlermeldung öfter erhalten, wenden Sie sich bitte an den <!--WEBMASTER//-->Webmaster<!--WEBMASTER//-->.</p>
|
||||||
|
</div>
|
||||||
|
<div id="footer">
|
||||||
|
<p>Powered by <a href="http://www.ispconfig.org">ISPConfig</a></p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,62 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
||||||
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||||
|
<head>
|
||||||
|
<title>FEHLER 503 - Dienst nicht verfügbar!</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
|
<meta http-equiv="Retry-After" content="600" />
|
||||||
|
<meta name="robots" content="noindex" />
|
||||||
|
<style type="text/css"><!--
|
||||||
|
body {
|
||||||
|
color: #444444;
|
||||||
|
background-color: #EEEEEE;
|
||||||
|
font-family: 'Trebuchet MS', sans-serif;
|
||||||
|
font-size: 80%;
|
||||||
|
}
|
||||||
|
h1 {}
|
||||||
|
h2 { font-size: 1.2em; }
|
||||||
|
#page{
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
width: 60%;
|
||||||
|
margin: 24px auto;
|
||||||
|
padding: 12px;
|
||||||
|
}
|
||||||
|
#header {
|
||||||
|
padding: 6px ;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
.status3xx { background-color: #475076; color: #FFFFFF; }
|
||||||
|
.status4xx { background-color: #C55042; color: #FFFFFF; }
|
||||||
|
.status5xx { background-color: #F2E81A; color: #000000; }
|
||||||
|
#content {
|
||||||
|
padding: 4px 0 24px 0;
|
||||||
|
}
|
||||||
|
#footer {
|
||||||
|
color: #666666;
|
||||||
|
background: #f9f9f9;
|
||||||
|
padding: 10px 20px;
|
||||||
|
border-top: 5px #efefef solid;
|
||||||
|
font-size: 0.8em;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
#footer a {
|
||||||
|
color: #999999;
|
||||||
|
}
|
||||||
|
--></style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="page">
|
||||||
|
<div id="header" class="status5xx">
|
||||||
|
<h1>FEHLER 503 - Dienst nicht verfügbar!</h1>
|
||||||
|
</div>
|
||||||
|
<div id="content">
|
||||||
|
<h2>Folgender Fehler ist aufgetreten:</h2>
|
||||||
|
<p>Der Dienst ist momentan überlastet. Bitte versuchen Sie es später noch einmal.</p>
|
||||||
|
<p>Sollten Sie diese Fehlermeldung öfter erhalten, wenden Sie sich bitte an den <!--WEBMASTER//-->Webmaster<!--WEBMASTER//-->.</p>
|
||||||
|
</div>
|
||||||
|
<div id="footer">
|
||||||
|
<p>Powered by <a href="http://www.ispconfig.org">ISPConfig</a></p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
After Width: | Height: | Size: 899 B |
|
After Width: | Height: | Size: 3.0 KiB |
|
After Width: | Height: | Size: 15 KiB |
@@ -0,0 +1,79 @@
|
|||||||
|
<!doctype html>
|
||||||
|
<!--[if lt IE 7]> <html class="ie6 oldie"> <![endif]-->
|
||||||
|
<!--[if IE 7]> <html class="ie7 oldie"> <![endif]-->
|
||||||
|
<!--[if IE 8]> <html class="ie8 oldie"> <![endif]-->
|
||||||
|
<!--[if gt IE 8]><!-->
|
||||||
|
<html class="">
|
||||||
|
<!--<![endif]-->
|
||||||
|
<head>
|
||||||
|
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||||
|
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
|
||||||
|
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
|
||||||
|
<link rel="manifest" href="/site.webmanifest">
|
||||||
|
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
|
||||||
|
<meta name="msapplication-TileColor" content="#b91d47">
|
||||||
|
<meta name="theme-color" content="#CD7569">
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<title>Mettcalc - Dein Mettrechner</title>
|
||||||
|
<link href="boilerplate.css" rel="stylesheet" type="text/css">
|
||||||
|
<link href="style.css" rel="stylesheet" type="text/css">
|
||||||
|
<style type="text/css">
|
||||||
|
body,td,th {
|
||||||
|
font-family: "Courier New", Courier, monospace;
|
||||||
|
font-size: large;
|
||||||
|
color: #FFFAE8;
|
||||||
|
}
|
||||||
|
a {
|
||||||
|
text-decoration: none;
|
||||||
|
font-size: small;
|
||||||
|
color: #FFFAE8
|
||||||
|
}
|
||||||
|
a.hover {
|
||||||
|
text-decoration: underline
|
||||||
|
}
|
||||||
|
body {
|
||||||
|
background-color: #CD7569;
|
||||||
|
margin-top: 30px;
|
||||||
|
}
|
||||||
|
span.rev { unicode-bidi:bidi-override; direction:rtl }
|
||||||
|
span.rev.email:before { content:"ed.renhcer" }
|
||||||
|
span.rev.email:after { content:"@retsambew :liaM-E" }
|
||||||
|
span.rev.phone:before { content:"962 9119 " }
|
||||||
|
span.rev.phone:after { content:" 94+ :nofeleT" }
|
||||||
|
span.rev.fax:before { content:"402 9119 " }
|
||||||
|
span.rev.fax:after { content:" 94+ :xaF" }
|
||||||
|
</style>
|
||||||
|
<script src="respond.min.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="gridContainer clearfix">
|
||||||
|
<div id="LayoutDiv1"><form method="POST" action="">
|
||||||
|
<div class='impressum'><h1>Impressum</h1><p>Angaben gemäß § 5 TMG</p><p>Florian Otto <br>
|
||||||
|
Hammerweg 37<br>
|
||||||
|
59929 Brilon-Wald<br>
|
||||||
|
</p><p> <strong>Vertreten durch: </strong><br>
|
||||||
|
Florian Otto<br>
|
||||||
|
</p><p><strong>Kontakt:</strong> <br>
|
||||||
|
<span class="rev email">regrub</span><br>
|
||||||
|
<span class="rev phone">1692</span><br>
|
||||||
|
<span class="rev fax">1692</span></br></p>
|
||||||
|
<p><strong>Haftungsausschluss: </strong><br><br><strong>Haftung für Inhalte</strong><br><br>
|
||||||
|
Die Inhalte unserer Seiten wurden mit größter Sorgfalt erstellt. Für die Richtigkeit, Vollständigkeit und Aktualität der Inhalte können wir jedoch keine Gewähr übernehmen. Als Diensteanbieter sind wir gemäß § 7 Abs.1 TMG für eigene Inhalte auf diesen Seiten nach den allgemeinen Gesetzen verantwortlich. Nach §§ 8 bis 10 TMG sind wir als Diensteanbieter jedoch nicht verpflichtet, übermittelte oder gespeicherte fremde Informationen zu überwachen oder nach Umständen zu forschen, die auf eine rechtswidrige Tätigkeit hinweisen. Verpflichtungen zur Entfernung oder Sperrung der Nutzung von Informationen nach den allgemeinen Gesetzen bleiben hiervon unberührt. Eine diesbezügliche Haftung ist jedoch erst ab dem Zeitpunkt der Kenntnis einer konkreten Rechtsverletzung möglich. Bei Bekanntwerden von entsprechenden Rechtsverletzungen werden wir diese Inhalte umgehend entfernen.<br><br><strong>Haftung für Links</strong><br><br>
|
||||||
|
Unser Angebot enthält Links zu externen Webseiten Dritter, auf deren Inhalte wir keinen Einfluss haben. Deshalb können wir für diese fremden Inhalte auch keine Gewähr übernehmen. Für die Inhalte der verlinkten Seiten ist stets der jeweilige Anbieter oder Betreiber der Seiten verantwortlich. Die verlinkten Seiten wurden zum Zeitpunkt der Verlinkung auf mögliche Rechtsverstöße überprüft. Rechtswidrige Inhalte waren zum Zeitpunkt der Verlinkung nicht erkennbar. Eine permanente inhaltliche Kontrolle der verlinkten Seiten ist jedoch ohne konkrete Anhaltspunkte einer Rechtsverletzung nicht zumutbar. Bei Bekanntwerden von Rechtsverletzungen werden wir derartige Links umgehend entfernen.<br><br><strong>Urheberrecht</strong><br><br>
|
||||||
|
Die durch die Seitenbetreiber erstellten Inhalte und Werke auf diesen Seiten unterliegen dem deutschen Urheberrecht. Die Vervielfältigung, Bearbeitung, Verbreitung und jede Art der Verwertung außerhalb der Grenzen des Urheberrechtes bedürfen der schriftlichen Zustimmung des jeweiligen Autors bzw. Erstellers. Downloads und Kopien dieser Seite sind nur für den privaten, nicht kommerziellen Gebrauch gestattet. Soweit die Inhalte auf dieser Seite nicht vom Betreiber erstellt wurden, werden die Urheberrechte Dritter beachtet. Insbesondere werden Inhalte Dritter als solche gekennzeichnet. Sollten Sie trotzdem auf eine Urheberrechtsverletzung aufmerksam werden, bitten wir um einen entsprechenden Hinweis. Bei Bekanntwerden von Rechtsverletzungen werden wir derartige Inhalte umgehend entfernen.<br><br><strong>Datenschutz</strong><br><br>
|
||||||
|
Die Nutzung unserer Webseite ist in der Regel ohne Angabe personenbezogener Daten möglich. Soweit auf unseren Seiten personenbezogene Daten (beispielsweise Name, Anschrift oder eMail-Adressen) erhoben werden, erfolgt dies, soweit möglich, stets auf freiwilliger Basis. Diese Daten werden ohne Ihre ausdrückliche Zustimmung nicht an Dritte weitergegeben. <br>
|
||||||
|
Wir weisen darauf hin, dass die Datenübertragung im Internet (z.B. bei der Kommunikation per E-Mail) Sicherheitslücken aufweisen kann. Ein lückenloser Schutz der Daten vor dem Zugriff durch Dritte ist nicht möglich. <br>
|
||||||
|
Der Nutzung von im Rahmen der Impressumspflicht veröffentlichten Kontaktdaten durch Dritte zur Übersendung von nicht ausdrücklich angeforderter Werbung und Informationsmaterialien wird hiermit ausdrücklich widersprochen. Die Betreiber der Seiten behalten sich ausdrücklich rechtliche Schritte im Falle der unverlangten Zusendung von Werbeinformationen, etwa durch Spam-Mails, vor.<br>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<footer>
|
||||||
|
<nav><p align="center">
|
||||||
|
<a href="index.php">Zurück</a>
|
||||||
|
</p>
|
||||||
|
</nav>
|
||||||
|
</footer>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,34 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<title>Mettcalc – calc all you need</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" />
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<main class="content">
|
||||||
|
<div class="col-6 col-offset-3">
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-6" for="halfRolls">Brötchenhälften:</label>
|
||||||
|
<div class="col-6">
|
||||||
|
<input class="form-control" id="halfRolls" type="number" min="1" value="1" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-6" for="hunger">Mettmenge:</label>
|
||||||
|
<div class="col-6">
|
||||||
|
<select class="form-control" id="hunger"></select>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<div class="col-6 col-offset-6">
|
||||||
|
<button class="btn btn-default" id="calc">Berechnen!</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="out"></div>
|
||||||
|
</div>
|
||||||
|
</main>
|
||||||
|
<script src="./mett.min.js"></script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,93 @@
|
|||||||
|
<!doctype html>
|
||||||
|
<!--[if lt IE 7]> <html class="ie6 oldie"> <![endif]-->
|
||||||
|
<!--[if IE 7]> <html class="ie7 oldie"> <![endif]-->
|
||||||
|
<!--[if IE 8]> <html class="ie8 oldie"> <![endif]-->
|
||||||
|
<!--[if gt IE 8]><!-->
|
||||||
|
<html class="">
|
||||||
|
<!--<![endif]-->
|
||||||
|
<head>
|
||||||
|
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||||
|
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
|
||||||
|
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
|
||||||
|
<link rel="manifest" href="/site.webmanifest">
|
||||||
|
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
|
||||||
|
<meta name="msapplication-TileColor" content="#b91d47">
|
||||||
|
<meta name="theme-color" content="#CD7569">
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<title>Mettcalc - Dein Mettrechner</title>
|
||||||
|
<link href="boilerplate.css" rel="stylesheet" type="text/css">
|
||||||
|
<link href="style.css" rel="stylesheet" type="text/css">
|
||||||
|
<style type="text/css">
|
||||||
|
body,td,th {
|
||||||
|
font-family: "Courier New", Courier, monospace;
|
||||||
|
font-size: large;
|
||||||
|
color: #FFFAE8;
|
||||||
|
}
|
||||||
|
a {
|
||||||
|
text-decoration: none;
|
||||||
|
font-size: small;
|
||||||
|
color: #FFFAE8
|
||||||
|
}
|
||||||
|
a.hover {
|
||||||
|
text-decoration: underline
|
||||||
|
}
|
||||||
|
body {
|
||||||
|
background-color: #CD7569;
|
||||||
|
margin-top: 30px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<script src="respond.min.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="gridContainer clearfix">
|
||||||
|
<div id="LayoutDiv1"><form method="POST" action="">
|
||||||
|
<h1 align="center">mettcalc.de</h1>
|
||||||
|
<p align="center"><b>Brötchenhälften:</b>
|
||||||
|
<input name="bread" size=6><br>
|
||||||
|
<b>Menge Mett:</b>
|
||||||
|
<select name="menge">
|
||||||
|
<option value="normal">normal</option>
|
||||||
|
<option value="viel">viel</option>
|
||||||
|
<option value="sviel">sehr viel</option>
|
||||||
|
<option value="wenig">wenig</option>
|
||||||
|
<option value="vegan">vegan</option>
|
||||||
|
</select>
|
||||||
|
<br>
|
||||||
|
<br />
|
||||||
|
<input type=submit name=submit value="Calc the Mett!">
|
||||||
|
</p>
|
||||||
|
</form>
|
||||||
|
<p align="center">
|
||||||
|
<?php
|
||||||
|
|
||||||
|
if (!empty($_POST["submit"]))
|
||||||
|
{
|
||||||
|
$_zahl1 = $_POST["bread"];
|
||||||
|
$_rz = $_POST["menge"];
|
||||||
|
|
||||||
|
if($_rz == "normal") $c = $_zahl1 * 40;
|
||||||
|
if($_rz == "viel") $c = $_zahl1 * 50;
|
||||||
|
if($_rz == "sviel") $c = $_zahl1 * 60;
|
||||||
|
if($_rz == "wenig") $c = $_zahl1 * 30;
|
||||||
|
if($_rz == "vegan") $c = $_zahl1 * 0;
|
||||||
|
|
||||||
|
echo "Für ". $_zahl1/2 . " Brötchen brauchst Du ". $c ."g Mett.";
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
</p>
|
||||||
|
<p align="center">
|
||||||
|
<br />
|
||||||
|
Ich will lieber <a href="https://nutellarechner.de" style="font-size:x-large;text-decoration:underline">Nutella</a>!
|
||||||
|
<br />
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<footer>
|
||||||
|
<nav><p align="center">
|
||||||
|
<a href="impressum.php">Impressum</a>
|
||||||
|
</p>
|
||||||
|
</nav>
|
||||||
|
</footer>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,61 @@
|
|||||||
|
!!(function() {
|
||||||
|
var aUnits = {
|
||||||
|
'wenig': 30,
|
||||||
|
'normal': 40,
|
||||||
|
'viel': 50,
|
||||||
|
'sehr viel': 60
|
||||||
|
}
|
||||||
|
var iHunger = 40;
|
||||||
|
var iRolls = 1;
|
||||||
|
var $oRolls = $('#halfRolls');
|
||||||
|
var $oSelect = $('#hunger');
|
||||||
|
var aMeasures = ['G', 'KG', 'T'];
|
||||||
|
|
||||||
|
var inf = function(iIn) {
|
||||||
|
var sIn = String(Math.round(iIn));
|
||||||
|
var rGx = /(\d+)(\d{3})/;
|
||||||
|
while(rGx.test(sIn)) sIn = sIn.replace(rGx, '$1.$2');
|
||||||
|
return sIn;
|
||||||
|
}
|
||||||
|
var nf = function(fIn) {
|
||||||
|
var aIn = String(parseFloat(fIn).toFixed(2)).split('.');
|
||||||
|
var rGx = /(\d+)(\d{3})/;
|
||||||
|
while(rGx.test(aIn[0])) aIn[0] = aIn[0].replace(rGx, '$1.$2');
|
||||||
|
return aIn.join(',');
|
||||||
|
}
|
||||||
|
var calc = function() {
|
||||||
|
var fHack = iRolls * iHunger;
|
||||||
|
var sMeas = '';
|
||||||
|
var bDiv = false;
|
||||||
|
for(var i in aMeasures) {
|
||||||
|
sMeas = aMeasures[i];
|
||||||
|
if(fHack < 1000) break;
|
||||||
|
fHack /= 1000;
|
||||||
|
bDiv = true;
|
||||||
|
}
|
||||||
|
document.location.hash = 'r'+iRolls+'-m'+iHunger;
|
||||||
|
$('#out').text('Bestell '+(bDiv ? nf(fHack) : inf(fHack))+' '+sMeas+' Mett beim Metzger, bro.');
|
||||||
|
}
|
||||||
|
|
||||||
|
var aMatch = document.location.hash.match(/r(\d+)-m(\d+)/);
|
||||||
|
if(aMatch) {
|
||||||
|
iRolls = parseInt(aMatch[1]);
|
||||||
|
iHunger = parseInt(aMatch[2]);
|
||||||
|
calc();
|
||||||
|
}
|
||||||
|
|
||||||
|
$oRolls.val(iRolls).on('change', function() {
|
||||||
|
iRolls = parseInt($oRolls.val());
|
||||||
|
});
|
||||||
|
|
||||||
|
$.each(aUnits, function(name, e) {
|
||||||
|
$oSelect.append($('<option>').attr('value', e).prop('selected', e == iHunger).text(name));
|
||||||
|
});
|
||||||
|
|
||||||
|
$oSelect.on('change', function() {
|
||||||
|
iHunger = $oSelect.val();
|
||||||
|
});
|
||||||
|
|
||||||
|
$('#calc').on('click', calc);
|
||||||
|
|
||||||
|
})();
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
!!function(){var t={wenig:30,normal:40,viel:50,"sehr viel":60},e=40,n=1,a=$("#halfRolls"),r=$("#hunger"),o=["G","KG","T"],c=function(t){for(var e=String(Math.round(t)),n=/(\d+)(\d{3})/;n.test(e);)e=e.replace(n,"$1.$2");return e},i=function(t){for(var e=String(parseFloat(t).toFixed(2)).split("."),n=/(\d+)(\d{3})/;n.test(e[0]);)e[0]=e[0].replace(n,"$1.$2");return e.join(",")},l=function(){var t=n*e,a="",r=!1;for(var l in o){if(a=o[l],1e3>t)break;t/=1e3,r=!0}document.location.hash="r"+n+"-m"+e,$("#out").text("Bestell "+(r?i(t):c(t))+" "+a+" Mett beim Metzger, bro.")},u=document.location.hash.match(/r(\d+)-m(\d+)/);u&&(n=parseInt(u[1]),e=parseInt(u[2]),l()),a.val(n).on("change",function(){n=parseInt(a.val())}),$.each(t,function(t,n){r.append($("<option>").attr("value",n).prop("selected",n==e).text(t))}),r.on("change",function(){e=r.val()}),$("#calc").on("click",l)}();
|
||||||
|
//# sourceMappingURL=mett.min.js.map
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"version":3,"sources":["mett.js"],"names":["aUnits","wenig","normal","viel","sehr viel","iHunger","iRolls","$oRolls","$","$oSelect","aMeasures","inf","iIn","sIn","String","Math","round","rGx","test","replace","nf","fIn","aIn","parseFloat","toFixed","split","join","calc","fHack","sMeas","bDiv","i","document","location","hash","text","aMatch","match","parseInt","val","on","each","name","e","append","attr","prop"],"mappings":"EAAE,WACD,GAAIA,IACHC,MAAS,GACTC,OAAU,GACVC,KAAQ,GACRC,YAAa,IAEVC,EAAU,GACVC,EAAS,EACTC,EAAUC,EAAE,cACZC,EAAWD,EAAE,WACVE,GAAa,IAAK,KAAM,KAE3BC,EAAM,SAASC,GAGlB,IAFA,GAAIC,GAAMC,OAAOC,KAAKC,MAAMJ,IACxBK,EAAM,eACJA,EAAIC,KAAKL,IAAMA,EAAMA,EAAIM,QAAQF,EAAK,QAC5C,OAAOJ,IAEJO,EAAK,SAASC,GAGjB,IAFA,GAAIC,GAAMR,OAAOS,WAAWF,GAAKG,QAAQ,IAAIC,MAAM,KAC/CR,EAAM,eACJA,EAAIC,KAAKI,EAAI,KAAKA,EAAI,GAAKA,EAAI,GAAGH,QAAQF,EAAK,QACrD,OAAOK,GAAII,KAAK,MAEVC,EAAO,WACP,GAAIC,GAAQtB,EAASD,EACjBwB,EAAQ,GACdC,GAAO,CACL,KAAI,GAAIC,KAAKrB,GAAW,CAEpB,GADAmB,EAAQnB,EAAUqB,GACP,IAARH,EAAc,KACjBA,IAAS,IAClBE,GAAO,EAERE,SAASC,SAASC,KAAO,IAAI5B,EAAO,KAAKD,EACnCG,EAAE,QAAQ2B,KAAK,YAAYL,EAAOV,EAAGQ,GAASjB,EAAIiB,IAAQ,IAAIC,EAAM,6BAGvEO,EAASJ,SAASC,SAASC,KAAKG,MAAM,gBACvCD,KACF9B,EAASgC,SAASF,EAAO,IACzB/B,EAAUiC,SAASF,EAAO,IAC1BT,KAGDpB,EAAQgC,IAAIjC,GAAQkC,GAAG,SAAU,WAChClC,EAASgC,SAAS/B,EAAQgC,SAGxB/B,EAAEiC,KAAKzC,EAAQ,SAAS0C,EAAMC,GAC1BlC,EAASmC,OAAOpC,EAAE,YAAYqC,KAAK,QAASF,GAAGG,KAAK,WAAYH,GAAKtC,GAAS8B,KAAKO,MAG1FjC,EAAS+B,GAAG,SAAU,WACrBnC,EAAUI,EAAS8B,QAGpB/B,EAAE,SAASgC,GAAG,QAASb","file":"mett.min.js"}
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
/*! Respond.js v1.0.1pre: min/max-width media query polyfill. (c) Scott Jehl. MIT/GPLv2 Lic. j.mp/respondjs */
|
||||||
|
(function(e,h){e.respond={};respond.update=function(){};respond.mediaQueriesSupported=h;if(h){return}var u=e.document,r=u.documentElement,i=[],k=[],p=[],o={},g=30,f=u.getElementsByTagName("head")[0]||r,b=f.getElementsByTagName("link"),d=[],a=function(){var B=b,w=B.length,z=0,y,x,A,v;for(;z<w;z++){y=B[z],x=y.href,A=y.media,v=y.rel&&y.rel.toLowerCase()==="stylesheet";if(!!x&&v&&!o[x]){if(y.styleSheet&&y.styleSheet.rawCssText){m(y.styleSheet.rawCssText,x,A);o[x]=true}else{if(!/^([a-zA-Z]+?:(\/\/)?)/.test(x)||x.replace(RegExp.$1,"").split("/")[0]===e.location.host){d.push({href:x,media:A})}}}}t()},t=function(){if(d.length){var v=d.shift();n(v.href,function(w){m(w,v.href,v.media);o[v.href]=true;t()})}},m=function(G,v,x){var E=G.match(/@media[^\{]+\{([^\{\}]+\{[^\}\{]+\})+/gi),H=E&&E.length||0,v=v.substring(0,v.lastIndexOf("/")),w=function(I){return I.replace(/(url\()['"]?([^\/\)'"][^:\)'"]+)['"]?(\))/g,"$1"+v+"$2$3")},y=!H&&x,B=0,A,C,D,z,F;if(v.length){v+="/"}if(y){H=1}for(;B<H;B++){A=0;if(y){C=x;k.push(w(G))}else{C=E[B].match(/@media ([^\{]+)\{([\S\s]+?)$/)&&RegExp.$1;k.push(RegExp.$2&&w(RegExp.$2))}z=C.split(",");F=z.length;for(;A<F;A++){D=z[A];i.push({media:D.match(/(only\s+)?([a-zA-Z]+)(\sand)?/)&&RegExp.$2,rules:k.length-1,minw:D.match(/\(min\-width:[\s]*([\s]*[0-9]+)px[\s]*\)/)&&parseFloat(RegExp.$1),maxw:D.match(/\(max\-width:[\s]*([\s]*[0-9]+)px[\s]*\)/)&&parseFloat(RegExp.$1)})}}j()},l,q,j=function(E){var v="clientWidth",x=r[v],D=u.compatMode==="CSS1Compat"&&x||u.body[v]||x,z={},C=u.createDocumentFragment(),B=b[b.length-1],w=(new Date()).getTime();if(E&&l&&w-l<g){clearTimeout(q);q=setTimeout(j,g);return}else{l=w}for(var y in i){var F=i[y];if(!F.minw&&!F.maxw||(!F.minw||F.minw&&D>=F.minw)&&(!F.maxw||F.maxw&&D<=F.maxw)){if(!z[F.media]){z[F.media]=[]}z[F.media].push(k[F.rules])}}for(var y in p){if(p[y]&&p[y].parentNode===f){f.removeChild(p[y])}}for(var y in z){var G=u.createElement("style"),A=z[y].join("\n");G.type="text/css";G.media=y;if(G.styleSheet){G.styleSheet.cssText=A}else{G.appendChild(u.createTextNode(A))}C.appendChild(G);p.push(G)}f.insertBefore(C,B.nextSibling)},n=function(v,x){var w=c();if(!w){return}w.open("GET",v,true);w.onreadystatechange=function(){if(w.readyState!=4||w.status!=200&&w.status!=304){return}x(w.responseText)};if(w.readyState==4){return}w.send(null)},c=(function(){var v=false;try{v=new XMLHttpRequest()}catch(w){v=new ActiveXObject("Microsoft.XMLHTTP")}return function(){return v}})();a();respond.update=a;function s(){j(true)}if(e.addEventListener){e.addEventListener("resize",s,false)}else{if(e.attachEvent){e.attachEvent("onresize",s)}}})(this,(function(f){if(f.matchMedia){return true}var e,i=document,c=i.documentElement,g=c.firstElementChild||c.firstChild,h=!i.body,d=i.body||i.createElement("body"),b=i.createElement("div"),a="only all";b.id="mq-test-1";b.style.cssText="position:absolute;top:-99em";d.appendChild(b);b.innerHTML='_<style media="'+a+'"> #mq-test-1 { width: 9px; }</style>';if(h){c.insertBefore(d,g)}b.removeChild(b.firstChild);e=b.offsetWidth==9;if(h){c.removeChild(d)}else{d.removeChild(b)}return e})(this));
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
User-agent: *
|
||||||
|
After Width: | Height: | Size: 79 KiB |
@@ -0,0 +1 @@
|
|||||||
|
{"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"}
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
AuthType Basic
|
||||||
|
AuthName "Members Only"
|
||||||
|
AuthUserFile /var/www/clients/client1/web20/web/stats/.htpasswd_stats
|
||||||
|
require valid-user
|
||||||
|
DirectoryIndex index.html index.php
|
||||||
|
Header set Content-Security-Policy "default-src * 'self' 'unsafe-inline' 'unsafe-eval' data:;"
|
||||||
|
<Files "goaindex.html">
|
||||||
|
AddDefaultCharset UTF-8
|
||||||
|
</Files>
|
||||||
@@ -0,0 +1,639 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2017-11) - main">
|
||||||
|
<title>Statistik für mettcalc.de (2017-11) - main</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.12.2017 - 00:00</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Nov 2017</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="awsm" width="150" valign="top"><b>Wann:</b></td>
|
||||||
|
<td class="awsm"><a href="#month">Monatliche Historie</a> <a href="#daysofmonth">Tage im Monat</a> <a href="#daysofweek">Wochentage</a> <a href="#hours">Stunden (Serverzeit)</a> </td></tr>
|
||||||
|
<tr><td class="awsm" width="150" valign="top"><b>Wer:</b></td>
|
||||||
|
<td class="awsm"><a href="#countries">Länder</a> <a href="awstats.mettcalc.de.alldomains.html" target="awstatsbis">Gesamte Liste</a>
|
||||||
|
<a href="#visitors">Rechner</a> <a href="awstats.mettcalc.de.allhosts.html" target="awstatsbis">Gesamte Liste</a>
|
||||||
|
<a href="awstats.mettcalc.de.lasthosts.html" target="awstatsbis">Letzter Zugriff</a>
|
||||||
|
<a href="awstats.mettcalc.de.unknownip.html" target="awstatsbis">Unaufgelöste IP Adressen</a>
|
||||||
|
<a href="#robots">Robots/Spiders (Suchmaschinen)</a> <a href="awstats.mettcalc.de.allrobots.html" target="awstatsbis">Gesamte Liste</a>
|
||||||
|
<a href="awstats.mettcalc.de.lastrobots.html" target="awstatsbis">Letzter Zugriff</a>
|
||||||
|
</td></tr>
|
||||||
|
<tr><td class="awsm" valign="top"><b>Navigation:</b></td>
|
||||||
|
<td class="awsm"><a href="#sessions">Aufenthaltsdauer</a> <a href="#filetypes">Datei-Typen</a> <a href="#downloads">Downloads</a> <a href="awstats.mettcalc.de.downloads.html" target="awstatsbis">Gesamte Liste</a>
|
||||||
|
<a href="#urls">Zugriffe</a>
|
||||||
|
<a href="awstats.mettcalc.de.urldetail.html" target="awstatsbis">Gesamte Liste</a>
|
||||||
|
<a href="awstats.mettcalc.de.urlentry.html" target="awstatsbis">Einstiegsseiten</a>
|
||||||
|
<a href="awstats.mettcalc.de.urlexit.html" target="awstatsbis">Exit Seiten</a>
|
||||||
|
<a href="#os">Betriebssysteme</a> <a href="awstats.mettcalc.de.osdetail.html" target="awstatsbis">Versionen</a>
|
||||||
|
<a href="awstats.mettcalc.de.unknownos.html" target="awstatsbis">Unbekannt</a>
|
||||||
|
<a href="#browsers">Browser</a> <a href="awstats.mettcalc.de.browserdetail.html" target="awstatsbis">Versionen</a>
|
||||||
|
<a href="awstats.mettcalc.de.unknownbrowser.html" target="awstatsbis">Unbekannt</a>
|
||||||
|
</td></tr>
|
||||||
|
<tr><td class="awsm" width="150" valign="top"><b>Verweise:</b></td>
|
||||||
|
<td class="awsm"><a href="#referer">Herkunft</a> <a href="awstats.mettcalc.de.refererse.html" target="awstatsbis">Suchmaschinen</a>
|
||||||
|
<a href="awstats.mettcalc.de.refererpages.html" target="awstatsbis">Websites</a>
|
||||||
|
<a href="#keys">Häufigkeit</a> <a href="awstats.mettcalc.de.keyphrases.html" target="awstatsbis">Suchausdrücke</a>
|
||||||
|
<a href="awstats.mettcalc.de.keywords.html" target="awstatsbis">Suchbegriffe</a>
|
||||||
|
</td></tr>
|
||||||
|
<tr><td class="awsm" width="150" valign="top"><b>Sonstige:</b></td>
|
||||||
|
<td class="awsm"><a href="#misc">Verschiedenes</a> <a href="#errors">HTTP Fehlercodes</a> <a href="awstats.mettcalc.de.errors400.html" target="awstatsbis">Fehlerhafte Zugriffe (400)</a>
|
||||||
|
<a href="awstats.mettcalc.de.errors403.html" target="awstatsbis">Fehlerhafte Zugriffe (403)</a>
|
||||||
|
<a href="awstats.mettcalc.de.errors404.html" target="awstatsbis">Fehlerhafte Zugriffe (404)</a>
|
||||||
|
</td></tr>
|
||||||
|
</table>
|
||||||
|
<br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Zusammenfassung </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><td class="aws"><b>Zeitraum</b></td><td class="aws" colspan="5">
|
||||||
|
Monat Nov 2017</td></tr>
|
||||||
|
<tr bgcolor="#ECECEC"><td class="aws"><b>Erster Zugriff</b></td>
|
||||||
|
<td class="aws" colspan="5">23.11.2017 - 20:54</td></tr>
|
||||||
|
<tr bgcolor="#ECECEC"><td class="aws"><b>Letzter Zugriff</b></td>
|
||||||
|
<td class="aws" colspan="5">29.11.2017 - 17:24</td>
|
||||||
|
</tr>
|
||||||
|
<tr><td bgcolor="#CCCCDD"> </td><td width="17%" bgcolor="#FFAA66">Unterschiedliche Besucher</td><td width="17%" bgcolor="#F4F090">Anzahl der Besuche</td><td width="17%" bgcolor="#4477DD">Seiten</td><td width="17%" bgcolor="#66DDEE">Zugriffe</td><td width="17%" bgcolor="#2EA495">Bytes</td></tr>
|
||||||
|
<tr><td class="aws">gesehener Traffic *</td><td><b>11</b><br /> </td><td><b>18</b><br />(1.63 Besuche/Besucher)</td><td><b>22</b><br />(1.22 Seiten/Besuch)</td><td><b>22</b><br />(1.22 Zugriffe/Besuch)</td><td><b>60.70 KB</b><br />(3.37 KB/Besuch)</td></tr>
|
||||||
|
<tr><td class="aws">nicht gesehener Traffic *</td><td colspan="2"> <br /> </td>
|
||||||
|
<td><b>34</b></td><td><b>66</b></td><td><b>247.83 KB</b></td></tr>
|
||||||
|
</table></td></tr></table><span style="font: 11px verdana, arial, helvetica;">* Nicht gesehener Traffic ist Traffic, welcher von Robots, Würmern oder Antworten mit speziellem HTTP-Statuscode</span><br />
|
||||||
|
<br />
|
||||||
|
|
||||||
|
<a name="month"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Monatliche Historie </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td align="center">
|
||||||
|
<center>
|
||||||
|
<table>
|
||||||
|
<tr valign="bottom"><td> </td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vu.png" height="1" width="6" alt='Unterschiedliche Besucher: 0' title='Unterschiedliche Besucher: 0' /><img align="bottom" src="/awstats-icon/other/vv.png" height="1" width="6" alt='Anzahl der Besuche: 0' title='Anzahl der Besuche: 0' /><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="6" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="6" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="6" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vu.png" height="1" width="6" alt='Unterschiedliche Besucher: 0' title='Unterschiedliche Besucher: 0' /><img align="bottom" src="/awstats-icon/other/vv.png" height="1" width="6" alt='Anzahl der Besuche: 0' title='Anzahl der Besuche: 0' /><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="6" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="6" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="6" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vu.png" height="1" width="6" alt='Unterschiedliche Besucher: 0' title='Unterschiedliche Besucher: 0' /><img align="bottom" src="/awstats-icon/other/vv.png" height="1" width="6" alt='Anzahl der Besuche: 0' title='Anzahl der Besuche: 0' /><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="6" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="6" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="6" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vu.png" height="1" width="6" alt='Unterschiedliche Besucher: 0' title='Unterschiedliche Besucher: 0' /><img align="bottom" src="/awstats-icon/other/vv.png" height="1" width="6" alt='Anzahl der Besuche: 0' title='Anzahl der Besuche: 0' /><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="6" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="6" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="6" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vu.png" height="1" width="6" alt='Unterschiedliche Besucher: 0' title='Unterschiedliche Besucher: 0' /><img align="bottom" src="/awstats-icon/other/vv.png" height="1" width="6" alt='Anzahl der Besuche: 0' title='Anzahl der Besuche: 0' /><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="6" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="6" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="6" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vu.png" height="1" width="6" alt='Unterschiedliche Besucher: 0' title='Unterschiedliche Besucher: 0' /><img align="bottom" src="/awstats-icon/other/vv.png" height="1" width="6" alt='Anzahl der Besuche: 0' title='Anzahl der Besuche: 0' /><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="6" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="6" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="6" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vu.png" height="1" width="6" alt='Unterschiedliche Besucher: 0' title='Unterschiedliche Besucher: 0' /><img align="bottom" src="/awstats-icon/other/vv.png" height="1" width="6" alt='Anzahl der Besuche: 0' title='Anzahl der Besuche: 0' /><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="6" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="6" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="6" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vu.png" height="1" width="6" alt='Unterschiedliche Besucher: 0' title='Unterschiedliche Besucher: 0' /><img align="bottom" src="/awstats-icon/other/vv.png" height="1" width="6" alt='Anzahl der Besuche: 0' title='Anzahl der Besuche: 0' /><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="6" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="6" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="6" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vu.png" height="1" width="6" alt='Unterschiedliche Besucher: 0' title='Unterschiedliche Besucher: 0' /><img align="bottom" src="/awstats-icon/other/vv.png" height="1" width="6" alt='Anzahl der Besuche: 0' title='Anzahl der Besuche: 0' /><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="6" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="6" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="6" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vu.png" height="1" width="6" alt='Unterschiedliche Besucher: 0' title='Unterschiedliche Besucher: 0' /><img align="bottom" src="/awstats-icon/other/vv.png" height="1" width="6" alt='Anzahl der Besuche: 0' title='Anzahl der Besuche: 0' /><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="6" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="6" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="6" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vu.png" height="56" width="6" alt='Unterschiedliche Besucher: 11' title='Unterschiedliche Besucher: 11' /><img align="bottom" src="/awstats-icon/other/vv.png" height="91" width="6" alt='Anzahl der Besuche: 18' title='Anzahl der Besuche: 18' /><img align="bottom" src="/awstats-icon/other/vp.png" height="91" width="6" alt='Seiten: 22' title='Seiten: 22' /><img align="bottom" src="/awstats-icon/other/vh.png" height="91" width="6" alt='Zugriffe: 22' title='Zugriffe: 22' /><img align="bottom" src="/awstats-icon/other/vk.png" height="91" width="6" alt='Bytes: 60.70 KB' title='Bytes: 60.70 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vu.png" height="1" width="6" alt='Unterschiedliche Besucher: 0' title='Unterschiedliche Besucher: 0' /><img align="bottom" src="/awstats-icon/other/vv.png" height="1" width="6" alt='Anzahl der Besuche: 0' title='Anzahl der Besuche: 0' /><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="6" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="6" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="6" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td> </td></tr>
|
||||||
|
<tr valign="middle"><td> </td><td>Jan<br />2017</td><td>Feb<br />2017</td><td>März<br />2017</td><td>Apr<br />2017</td><td>Mai<br />2017</td><td>Juni<br />2017</td><td>Juli<br />2017</td><td>Aug<br />2017</td><td>Sep<br />2017</td><td>Okt<br />2017</td><td>Nov<br />2017</td><td>Dez<br />2017</td><td> </td></tr>
|
||||||
|
</table>
|
||||||
|
<br />
|
||||||
|
<table>
|
||||||
|
<tr><td width="80" bgcolor="#ECECEC">Monat</td><td width="80" bgcolor="#FFAA66">Unterschiedliche Besucher</td><td width="80" bgcolor="#F4F090">Anzahl der Besuche</td><td width="80" bgcolor="#4477DD">Seiten</td><td width="80" bgcolor="#66DDEE">Zugriffe</td><td width="80" bgcolor="#2EA495">Bytes</td></tr>
|
||||||
|
<tr><td>Jan 2017</td><td>0</td><td>0</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr><td>Feb 2017</td><td>0</td><td>0</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr><td>März 2017</td><td>0</td><td>0</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr><td>Apr 2017</td><td>0</td><td>0</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr><td>Mai 2017</td><td>0</td><td>0</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr><td>Juni 2017</td><td>0</td><td>0</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr><td>Juli 2017</td><td>0</td><td>0</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr><td>Aug 2017</td><td>0</td><td>0</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr><td>Sep 2017</td><td>0</td><td>0</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr><td>Okt 2017</td><td>0</td><td>0</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr><td>Nov 2017</td><td>11</td><td>18</td><td>22</td><td>22</td><td>60.70 KB</td></tr>
|
||||||
|
<tr><td>Dez 2017</td><td>0</td><td>0</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr><td bgcolor="#ECECEC">Total</td><td bgcolor="#ECECEC">11</td><td bgcolor="#ECECEC">18</td><td bgcolor="#ECECEC">22</td><td bgcolor="#ECECEC">22</td><td bgcolor="#ECECEC">60.70 KB</td></tr>
|
||||||
|
</table>
|
||||||
|
<br />
|
||||||
|
</center>
|
||||||
|
</td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
|
||||||
|
<a name="when"> </a>
|
||||||
|
|
||||||
|
<a name="daysofmonth"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Tage im Monat </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td align="center">
|
||||||
|
<center>
|
||||||
|
<table>
|
||||||
|
<tr valign="bottom">
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="1" width="4" alt='Anzahl der Besuche: 0' title='Anzahl der Besuche: 0' /><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="4" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="4" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="4" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="1" width="4" alt='Anzahl der Besuche: 0' title='Anzahl der Besuche: 0' /><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="4" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="4" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="4" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="1" width="4" alt='Anzahl der Besuche: 0' title='Anzahl der Besuche: 0' /><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="4" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="4" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="4" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="1" width="4" alt='Anzahl der Besuche: 0' title='Anzahl der Besuche: 0' /><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="4" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="4" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="4" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="1" width="4" alt='Anzahl der Besuche: 0' title='Anzahl der Besuche: 0' /><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="4" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="4" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="4" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="1" width="4" alt='Anzahl der Besuche: 0' title='Anzahl der Besuche: 0' /><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="4" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="4" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="4" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="1" width="4" alt='Anzahl der Besuche: 0' title='Anzahl der Besuche: 0' /><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="4" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="4" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="4" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="1" width="4" alt='Anzahl der Besuche: 0' title='Anzahl der Besuche: 0' /><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="4" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="4" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="4" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="1" width="4" alt='Anzahl der Besuche: 0' title='Anzahl der Besuche: 0' /><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="4" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="4" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="4" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="1" width="4" alt='Anzahl der Besuche: 0' title='Anzahl der Besuche: 0' /><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="4" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="4" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="4" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="1" width="4" alt='Anzahl der Besuche: 0' title='Anzahl der Besuche: 0' /><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="4" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="4" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="4" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="1" width="4" alt='Anzahl der Besuche: 0' title='Anzahl der Besuche: 0' /><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="4" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="4" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="4" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="1" width="4" alt='Anzahl der Besuche: 0' title='Anzahl der Besuche: 0' /><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="4" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="4" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="4" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="1" width="4" alt='Anzahl der Besuche: 0' title='Anzahl der Besuche: 0' /><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="4" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="4" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="4" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="1" width="4" alt='Anzahl der Besuche: 0' title='Anzahl der Besuche: 0' /><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="4" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="4" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="4" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="1" width="4" alt='Anzahl der Besuche: 0' title='Anzahl der Besuche: 0' /><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="4" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="4" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="4" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="1" width="4" alt='Anzahl der Besuche: 0' title='Anzahl der Besuche: 0' /><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="4" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="4" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="4" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="1" width="4" alt='Anzahl der Besuche: 0' title='Anzahl der Besuche: 0' /><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="4" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="4" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="4" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="1" width="4" alt='Anzahl der Besuche: 0' title='Anzahl der Besuche: 0' /><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="4" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="4" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="4" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="1" width="4" alt='Anzahl der Besuche: 0' title='Anzahl der Besuche: 0' /><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="4" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="4" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="4" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="1" width="4" alt='Anzahl der Besuche: 0' title='Anzahl der Besuche: 0' /><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="4" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="4" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="4" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="1" width="4" alt='Anzahl der Besuche: 0' title='Anzahl der Besuche: 0' /><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="4" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="4" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="4" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="91" width="4" alt='Anzahl der Besuche: 4' title='Anzahl der Besuche: 4' /><img align="bottom" src="/awstats-icon/other/vp.png" height="91" width="4" alt='Seiten: 7' title='Seiten: 7' /><img align="bottom" src="/awstats-icon/other/vh.png" height="91" width="4" alt='Zugriffe: 7' title='Zugriffe: 7' /><img align="bottom" src="/awstats-icon/other/vk.png" height="91" width="4" alt='Bytes: 15.34 KB' title='Bytes: 15.34 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="91" width="4" alt='Anzahl der Besuche: 4' title='Anzahl der Besuche: 4' /><img align="bottom" src="/awstats-icon/other/vp.png" height="52" width="4" alt='Seiten: 4' title='Seiten: 4' /><img align="bottom" src="/awstats-icon/other/vh.png" height="52" width="4" alt='Zugriffe: 4' title='Zugriffe: 4' /><img align="bottom" src="/awstats-icon/other/vk.png" height="71" width="4" alt='Bytes: 11.99 KB' title='Bytes: 11.99 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="23" width="4" alt='Anzahl der Besuche: 1' title='Anzahl der Besuche: 1' /><img align="bottom" src="/awstats-icon/other/vp.png" height="13" width="4" alt='Seiten: 1' title='Seiten: 1' /><img align="bottom" src="/awstats-icon/other/vh.png" height="13" width="4" alt='Zugriffe: 1' title='Zugriffe: 1' /><img align="bottom" src="/awstats-icon/other/vk.png" height="31" width="4" alt='Bytes: 5.21 KB' title='Bytes: 5.21 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="46" width="4" alt='Anzahl der Besuche: 2' title='Anzahl der Besuche: 2' /><img align="bottom" src="/awstats-icon/other/vp.png" height="26" width="4" alt='Seiten: 2' title='Seiten: 2' /><img align="bottom" src="/awstats-icon/other/vh.png" height="26" width="4" alt='Zugriffe: 2' title='Zugriffe: 2' /><img align="bottom" src="/awstats-icon/other/vk.png" height="14" width="4" alt='Bytes: 2.33 KB' title='Bytes: 2.33 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="46" width="4" alt='Anzahl der Besuche: 2' title='Anzahl der Besuche: 2' /><img align="bottom" src="/awstats-icon/other/vp.png" height="39" width="4" alt='Seiten: 3' title='Seiten: 3' /><img align="bottom" src="/awstats-icon/other/vh.png" height="39" width="4" alt='Zugriffe: 3' title='Zugriffe: 3' /><img align="bottom" src="/awstats-icon/other/vk.png" height="70" width="4" alt='Bytes: 11.86 KB' title='Bytes: 11.86 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="23" width="4" alt='Anzahl der Besuche: 1' title='Anzahl der Besuche: 1' /><img align="bottom" src="/awstats-icon/other/vp.png" height="13" width="4" alt='Seiten: 1' title='Seiten: 1' /><img align="bottom" src="/awstats-icon/other/vh.png" height="13" width="4" alt='Zugriffe: 1' title='Zugriffe: 1' /><img align="bottom" src="/awstats-icon/other/vk.png" height="31" width="4" alt='Bytes: 5.21 KB' title='Bytes: 5.21 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="91" width="4" alt='Anzahl der Besuche: 4' title='Anzahl der Besuche: 4' /><img align="bottom" src="/awstats-icon/other/vp.png" height="52" width="4" alt='Seiten: 4' title='Seiten: 4' /><img align="bottom" src="/awstats-icon/other/vh.png" height="52" width="4" alt='Zugriffe: 4' title='Zugriffe: 4' /><img align="bottom" src="/awstats-icon/other/vk.png" height="52" width="4" alt='Bytes: 8.76 KB' title='Bytes: 8.76 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="1" width="4" alt='Anzahl der Besuche: 0' title='Anzahl der Besuche: 0' /><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="4" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="4" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="4" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td> </td><td><img align="bottom" src="/awstats-icon/other/vv.png" height="14" width="4" alt='Anzahl der Besuche: 0.60' title='Anzahl der Besuche: 0.60' /><img align="bottom" src="/awstats-icon/other/vp.png" height="10" width="4" alt='Seiten: 0.73' title='Seiten: 0.73' /><img align="bottom" src="/awstats-icon/other/vh.png" height="10" width="4" alt='Zugriffe: 0.73' title='Zugriffe: 0.73' /><img align="bottom" src="/awstats-icon/other/vk.png" height="12" width="4" alt='Bytes: 2071.97' title='Bytes: 2071.97' /></td>
|
||||||
|
</tr>
|
||||||
|
<tr valign="middle"><td>01<br /><span style="font-size: 9px;">Nov</span></td>
|
||||||
|
<td>02<br /><span style="font-size: 9px;">Nov</span></td>
|
||||||
|
<td>03<br /><span style="font-size: 9px;">Nov</span></td>
|
||||||
|
<td bgcolor="#EAEAEA">04<br /><span style="font-size: 9px;">Nov</span></td>
|
||||||
|
<td bgcolor="#EAEAEA">05<br /><span style="font-size: 9px;">Nov</span></td>
|
||||||
|
<td>06<br /><span style="font-size: 9px;">Nov</span></td>
|
||||||
|
<td>07<br /><span style="font-size: 9px;">Nov</span></td>
|
||||||
|
<td>08<br /><span style="font-size: 9px;">Nov</span></td>
|
||||||
|
<td>09<br /><span style="font-size: 9px;">Nov</span></td>
|
||||||
|
<td>10<br /><span style="font-size: 9px;">Nov</span></td>
|
||||||
|
<td bgcolor="#EAEAEA">11<br /><span style="font-size: 9px;">Nov</span></td>
|
||||||
|
<td bgcolor="#EAEAEA">12<br /><span style="font-size: 9px;">Nov</span></td>
|
||||||
|
<td>13<br /><span style="font-size: 9px;">Nov</span></td>
|
||||||
|
<td>14<br /><span style="font-size: 9px;">Nov</span></td>
|
||||||
|
<td>15<br /><span style="font-size: 9px;">Nov</span></td>
|
||||||
|
<td>16<br /><span style="font-size: 9px;">Nov</span></td>
|
||||||
|
<td>17<br /><span style="font-size: 9px;">Nov</span></td>
|
||||||
|
<td bgcolor="#EAEAEA">18<br /><span style="font-size: 9px;">Nov</span></td>
|
||||||
|
<td bgcolor="#EAEAEA">19<br /><span style="font-size: 9px;">Nov</span></td>
|
||||||
|
<td>20<br /><span style="font-size: 9px;">Nov</span></td>
|
||||||
|
<td>21<br /><span style="font-size: 9px;">Nov</span></td>
|
||||||
|
<td>22<br /><span style="font-size: 9px;">Nov</span></td>
|
||||||
|
<td>23<br /><span style="font-size: 9px;">Nov</span></td>
|
||||||
|
<td>24<br /><span style="font-size: 9px;">Nov</span></td>
|
||||||
|
<td bgcolor="#EAEAEA">25<br /><span style="font-size: 9px;">Nov</span></td>
|
||||||
|
<td bgcolor="#EAEAEA">26<br /><span style="font-size: 9px;">Nov</span></td>
|
||||||
|
<td>27<br /><span style="font-size: 9px;">Nov</span></td>
|
||||||
|
<td>28<br /><span style="font-size: 9px;">Nov</span></td>
|
||||||
|
<td>29<br /><span style="font-size: 9px;">Nov</span></td>
|
||||||
|
<td>30<br /><span style="font-size: 9px;">Nov</span></td>
|
||||||
|
<td> </td><td valign="middle">Durchschnitt</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
<br />
|
||||||
|
<table>
|
||||||
|
<tr><td width="80" bgcolor="#ECECEC">Tag</td><td width="80" bgcolor="#F4F090">Anzahl der Besuche</td><td width="80" bgcolor="#4477DD">Seiten</td><td width="80" bgcolor="#66DDEE">Zugriffe</td><td width="80" bgcolor="#2EA495">Bytes</td></tr><tr><td>01.11.2017</td><td>0</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr><td>02.11.2017</td><td>0</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr><td>03.11.2017</td><td>0</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr bgcolor="#EAEAEA"><td>04.11.2017</td><td>0</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr bgcolor="#EAEAEA"><td>05.11.2017</td><td>0</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr><td>06.11.2017</td><td>0</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr><td>07.11.2017</td><td>0</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr><td>08.11.2017</td><td>0</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr><td>09.11.2017</td><td>0</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr><td>10.11.2017</td><td>0</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr bgcolor="#EAEAEA"><td>11.11.2017</td><td>0</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr bgcolor="#EAEAEA"><td>12.11.2017</td><td>0</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr><td>13.11.2017</td><td>0</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr><td>14.11.2017</td><td>0</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr><td>15.11.2017</td><td>0</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr><td>16.11.2017</td><td>0</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr><td>17.11.2017</td><td>0</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr bgcolor="#EAEAEA"><td>18.11.2017</td><td>0</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr bgcolor="#EAEAEA"><td>19.11.2017</td><td>0</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr><td>20.11.2017</td><td>0</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr><td>21.11.2017</td><td>0</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr><td>22.11.2017</td><td>0</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr><td>23.11.2017</td><td>4</td><td>7</td><td>7</td><td>15.34 KB</td></tr>
|
||||||
|
<tr><td>24.11.2017</td><td>4</td><td>4</td><td>4</td><td>11.99 KB</td></tr>
|
||||||
|
<tr bgcolor="#EAEAEA"><td>25.11.2017</td><td>1</td><td>1</td><td>1</td><td>5.21 KB</td></tr>
|
||||||
|
<tr bgcolor="#EAEAEA"><td>26.11.2017</td><td>2</td><td>2</td><td>2</td><td>2.33 KB</td></tr>
|
||||||
|
<tr><td>27.11.2017</td><td>2</td><td>3</td><td>3</td><td>11.86 KB</td></tr>
|
||||||
|
<tr><td>28.11.2017</td><td>1</td><td>1</td><td>1</td><td>5.21 KB</td></tr>
|
||||||
|
<tr><td>29.11.2017</td><td>4</td><td>4</td><td>4</td><td>8.76 KB</td></tr>
|
||||||
|
<tr><td>30.11.2017</td><td>0</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr bgcolor="#ECECEC"><td>Durchschnitt</td><td>0</td><td>0</td><td>0</td><td>2.02 KB</td></tr>
|
||||||
|
<tr bgcolor="#ECECEC"><td>Total</td><td>18</td><td>22</td><td>22</td><td>60.70 KB</td></tr>
|
||||||
|
</table>
|
||||||
|
<br /></center>
|
||||||
|
</td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<a name="daysofweek"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Wochentage </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td align="center"><center>
|
||||||
|
<table>
|
||||||
|
<tr valign="bottom">
|
||||||
|
<td valign="bottom"><img align="bottom" src="/awstats-icon/other/vp.png" height="49" width="6" alt='Seiten: 0.75' title='Seiten: 0.75' /><img align="bottom" src="/awstats-icon/other/vh.png" height="49" width="6" alt='Zugriffe: 0.75' title='Zugriffe: 0.75' /><img align="bottom" src="/awstats-icon/other/vk.png" height="88" width="6" alt='Bytes: 2.97 KB' title='Bytes: 2.97 KB' /></td>
|
||||||
|
<td valign="bottom"><img align="bottom" src="/awstats-icon/other/vp.png" height="17" width="6" alt='Seiten: 0.25' title='Seiten: 0.25' /><img align="bottom" src="/awstats-icon/other/vh.png" height="17" width="6" alt='Zugriffe: 0.25' title='Zugriffe: 0.25' /><img align="bottom" src="/awstats-icon/other/vk.png" height="39" width="6" alt='Bytes: 1.30 KB' title='Bytes: 1.30 KB' /></td>
|
||||||
|
<td valign="bottom"><img align="bottom" src="/awstats-icon/other/vp.png" height="52" width="6" alt='Seiten: 0.80' title='Seiten: 0.80' /><img align="bottom" src="/awstats-icon/other/vh.png" height="52" width="6" alt='Zugriffe: 0.80' title='Zugriffe: 0.80' /><img align="bottom" src="/awstats-icon/other/vk.png" height="52" width="6" alt='Bytes: 1.75 KB' title='Bytes: 1.75 KB' /></td>
|
||||||
|
<td valign="bottom"><img align="bottom" src="/awstats-icon/other/vp.png" height="91" width="6" alt='Seiten: 1.40' title='Seiten: 1.40' /><img align="bottom" src="/awstats-icon/other/vh.png" height="91" width="6" alt='Zugriffe: 1.40' title='Zugriffe: 1.40' /><img align="bottom" src="/awstats-icon/other/vk.png" height="91" width="6" alt='Bytes: 3.07 KB' title='Bytes: 3.07 KB' /></td>
|
||||||
|
<td valign="bottom"><img align="bottom" src="/awstats-icon/other/vp.png" height="65" width="6" alt='Seiten: 1' title='Seiten: 1' /><img align="bottom" src="/awstats-icon/other/vh.png" height="65" width="6" alt='Zugriffe: 1' title='Zugriffe: 1' /><img align="bottom" src="/awstats-icon/other/vk.png" height="88" width="6" alt='Bytes: 3.00 KB' title='Bytes: 3.00 KB' /></td>
|
||||||
|
<td valign="bottom"><img align="bottom" src="/awstats-icon/other/vp.png" height="17" width="6" alt='Seiten: 0.25' title='Seiten: 0.25' /><img align="bottom" src="/awstats-icon/other/vh.png" height="17" width="6" alt='Zugriffe: 0.25' title='Zugriffe: 0.25' /><img align="bottom" src="/awstats-icon/other/vk.png" height="39" width="6" alt='Bytes: 1.30 KB' title='Bytes: 1.30 KB' /></td>
|
||||||
|
<td valign="bottom"><img align="bottom" src="/awstats-icon/other/vp.png" height="33" width="6" alt='Seiten: 0.50' title='Seiten: 0.50' /><img align="bottom" src="/awstats-icon/other/vh.png" height="33" width="6" alt='Zugriffe: 0.50' title='Zugriffe: 0.50' /><img align="bottom" src="/awstats-icon/other/vk.png" height="18" width="6" alt='Bytes: 596 Bytes' title='Bytes: 596 Bytes' /></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Mo</td><td>Di</td><td>Mi</td><td>Do</td><td>Fr</td><td bgcolor="#EAEAEA">Sa</td><td bgcolor="#EAEAEA">So</td></tr>
|
||||||
|
</table>
|
||||||
|
<br />
|
||||||
|
<table>
|
||||||
|
<tr><td width="80" bgcolor="#ECECEC">Tag</td><td width="80" bgcolor="#4477DD">Seiten</td><td width="80" bgcolor="#66DDEE">Zugriffe</td><td width="80" bgcolor="#2EA495">Bytes</td></tr><tr><td>Mo</td><td>0</td><td>0</td><td>2.96 KB</td></tr>
|
||||||
|
<tr><td>Di</td><td>0</td><td>0</td><td>1.30 KB</td></tr>
|
||||||
|
<tr><td>Mi</td><td>0</td><td>0</td><td>1.75 KB</td></tr>
|
||||||
|
<tr><td>Do</td><td>1</td><td>1</td><td>3.07 KB</td></tr>
|
||||||
|
<tr><td>Fr</td><td>1</td><td>1</td><td>3.00 KB</td></tr>
|
||||||
|
<tr bgcolor="#EAEAEA"><td>Sa</td><td>0</td><td>0</td><td>1.30 KB</td></tr>
|
||||||
|
<tr bgcolor="#EAEAEA"><td>So</td><td>0</td><td>0</td><td>596 Bytes</td></tr>
|
||||||
|
</table>
|
||||||
|
<br />
|
||||||
|
</center></td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<a name="hours"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Stunden (Serverzeit) </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td align="center">
|
||||||
|
<center>
|
||||||
|
<table>
|
||||||
|
<tr valign="bottom">
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="23" width="6" alt='Seiten: 1' title='Seiten: 1' /><img align="bottom" src="/awstats-icon/other/vh.png" height="23" width="6" alt='Zugriffe: 1' title='Zugriffe: 1' /><img align="bottom" src="/awstats-icon/other/vk.png" height="34" width="6" alt='Bytes: 5.21 KB' title='Bytes: 5.21 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="6" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="6" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="6" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="6" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="6" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="6" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="6" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="6" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="6" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="6" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="6" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="6" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="46" width="6" alt='Seiten: 2' title='Seiten: 2' /><img align="bottom" src="/awstats-icon/other/vh.png" height="46" width="6" alt='Zugriffe: 2' title='Zugriffe: 2' /><img align="bottom" src="/awstats-icon/other/vk.png" height="15" width="6" alt='Bytes: 2.33 KB' title='Bytes: 2.33 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="23" width="6" alt='Seiten: 1' title='Seiten: 1' /><img align="bottom" src="/awstats-icon/other/vh.png" height="23" width="6" alt='Zugriffe: 1' title='Zugriffe: 1' /><img align="bottom" src="/awstats-icon/other/vk.png" height="34" width="6" alt='Bytes: 5.21 KB' title='Bytes: 5.21 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="23" width="6" alt='Seiten: 1' title='Seiten: 1' /><img align="bottom" src="/awstats-icon/other/vh.png" height="23" width="6" alt='Zugriffe: 1' title='Zugriffe: 1' /><img align="bottom" src="/awstats-icon/other/vk.png" height="8" width="6" alt='Bytes: 1.17 KB' title='Bytes: 1.17 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="6" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="6" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="6" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="6" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="6" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="6" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="46" width="6" alt='Seiten: 2' title='Seiten: 2' /><img align="bottom" src="/awstats-icon/other/vh.png" height="46" width="6" alt='Zugriffe: 2' title='Zugriffe: 2' /><img align="bottom" src="/awstats-icon/other/vk.png" height="43" width="6" alt='Bytes: 6.65 KB' title='Bytes: 6.65 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="68" width="6" alt='Seiten: 3' title='Seiten: 3' /><img align="bottom" src="/awstats-icon/other/vh.png" height="68" width="6" alt='Zugriffe: 3' title='Zugriffe: 3' /><img align="bottom" src="/awstats-icon/other/vk.png" height="49" width="6" alt='Bytes: 7.54 KB' title='Bytes: 7.54 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="6" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="6" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="6" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="46" width="6" alt='Seiten: 2' title='Seiten: 2' /><img align="bottom" src="/awstats-icon/other/vh.png" height="46" width="6" alt='Zugriffe: 2' title='Zugriffe: 2' /><img align="bottom" src="/awstats-icon/other/vk.png" height="41" width="6" alt='Bytes: 6.38 KB' title='Bytes: 6.38 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="6" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="6" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="6" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="6" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="6" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="6" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="6" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="6" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="6" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="23" width="6" alt='Seiten: 1' title='Seiten: 1' /><img align="bottom" src="/awstats-icon/other/vh.png" height="23" width="6" alt='Zugriffe: 1' title='Zugriffe: 1' /><img align="bottom" src="/awstats-icon/other/vk.png" height="8" width="6" alt='Bytes: 1.22 KB' title='Bytes: 1.22 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="23" width="6" alt='Seiten: 1' title='Seiten: 1' /><img align="bottom" src="/awstats-icon/other/vh.png" height="23" width="6" alt='Zugriffe: 1' title='Zugriffe: 1' /><img align="bottom" src="/awstats-icon/other/vk.png" height="29" width="6" alt='Bytes: 4.45 KB' title='Bytes: 4.45 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="23" width="6" alt='Seiten: 1' title='Seiten: 1' /><img align="bottom" src="/awstats-icon/other/vh.png" height="23" width="6" alt='Zugriffe: 1' title='Zugriffe: 1' /><img align="bottom" src="/awstats-icon/other/vk.png" height="34" width="6" alt='Bytes: 5.21 KB' title='Bytes: 5.21 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="91" width="6" alt='Seiten: 4' title='Seiten: 4' /><img align="bottom" src="/awstats-icon/other/vh.png" height="91" width="6" alt='Zugriffe: 4' title='Zugriffe: 4' /><img align="bottom" src="/awstats-icon/other/vk.png" height="8" width="6" alt='Bytes: 1.21 KB' title='Bytes: 1.21 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="6" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="6" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="6" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="68" width="6" alt='Seiten: 3' title='Seiten: 3' /><img align="bottom" src="/awstats-icon/other/vh.png" height="68" width="6" alt='Zugriffe: 3' title='Zugriffe: 3' /><img align="bottom" src="/awstats-icon/other/vk.png" height="91" width="6" alt='Bytes: 14.13 KB' title='Bytes: 14.13 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="6" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="6" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="6" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
</tr>
|
||||||
|
<tr><th width="19">0</th>
|
||||||
|
<th width="19">1</th>
|
||||||
|
<th width="19">2</th>
|
||||||
|
<th width="19">3</th>
|
||||||
|
<th width="19">4</th>
|
||||||
|
<th width="19">5</th>
|
||||||
|
<th width="19">6</th>
|
||||||
|
<th width="19">7</th>
|
||||||
|
<th width="19">8</th>
|
||||||
|
<th width="19">9</th>
|
||||||
|
<th width="19">10</th>
|
||||||
|
<th width="19">11</th>
|
||||||
|
<th width="19">12</th>
|
||||||
|
<th width="19">13</th>
|
||||||
|
<th width="19">14</th>
|
||||||
|
<th width="19">15</th>
|
||||||
|
<th width="19">16</th>
|
||||||
|
<th width="19">17</th>
|
||||||
|
<th width="19">18</th>
|
||||||
|
<th width="19">19</th>
|
||||||
|
<th width="19">20</th>
|
||||||
|
<th width="19">21</th>
|
||||||
|
<th width="19">22</th>
|
||||||
|
<th width="19">23</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><img src="/awstats-icon/clock/hr1.png" width="12" alt="0:00 - 1:00 am" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr2.png" width="12" alt="1:00 - 2:00 am" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr3.png" width="12" alt="2:00 - 3:00 am" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr4.png" width="12" alt="3:00 - 4:00 am" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr5.png" width="12" alt="4:00 - 5:00 am" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr6.png" width="12" alt="5:00 - 6:00 am" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr7.png" width="12" alt="6:00 - 7:00 am" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr8.png" width="12" alt="7:00 - 8:00 am" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr9.png" width="12" alt="8:00 - 9:00 am" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr10.png" width="12" alt="9:00 - 10:00 am" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr11.png" width="12" alt="10:00 - 11:00 am" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr12.png" width="12" alt="11:00 - 12:00 am" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr1.png" width="12" alt="0:00 - 1:00 pm" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr2.png" width="12" alt="1:00 - 2:00 pm" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr3.png" width="12" alt="2:00 - 3:00 pm" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr4.png" width="12" alt="3:00 - 4:00 pm" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr5.png" width="12" alt="4:00 - 5:00 pm" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr6.png" width="12" alt="5:00 - 6:00 pm" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr7.png" width="12" alt="6:00 - 7:00 pm" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr8.png" width="12" alt="7:00 - 8:00 pm" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr9.png" width="12" alt="8:00 - 9:00 pm" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr10.png" width="12" alt="9:00 - 10:00 pm" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr11.png" width="12" alt="10:00 - 11:00 pm" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr12.png" width="12" alt="11:00 - 12:00 pm" /></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
<br />
|
||||||
|
<table width="650"><tr>
|
||||||
|
<td align="center"><center>
|
||||||
|
<table>
|
||||||
|
<tr><td width="80" bgcolor="#ECECEC">Stunden (Serverzeit)</td><td width="80" bgcolor="#4477DD">Seiten</td><td width="80" bgcolor="#66DDEE">Zugriffe</td><td width="80" bgcolor="#2EA495">Bytes</td></tr><tr><td>00</td><td>1</td><td>1</td><td>5.21 KB</td></tr>
|
||||||
|
<tr><td>01</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr><td>02</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr><td>03</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr><td>04</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr><td>05</td><td>2</td><td>2</td><td>2.33 KB</td></tr>
|
||||||
|
<tr><td>06</td><td>1</td><td>1</td><td>5.21 KB</td></tr>
|
||||||
|
<tr><td>07</td><td>1</td><td>1</td><td>1.17 KB</td></tr>
|
||||||
|
<tr><td>08</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr><td>09</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr><td>10</td><td>2</td><td>2</td><td>6.65 KB</td></tr>
|
||||||
|
<tr><td>11</td><td>3</td><td>3</td><td>7.54 KB</td></tr>
|
||||||
|
</table>
|
||||||
|
</center></td><td width="10"> </td><td align="center"><center>
|
||||||
|
<table>
|
||||||
|
<tr><td width="80" bgcolor="#ECECEC">Stunden (Serverzeit)</td><td width="80" bgcolor="#4477DD">Seiten</td><td width="80" bgcolor="#66DDEE">Zugriffe</td><td width="80" bgcolor="#2EA495">Bytes</td></tr>
|
||||||
|
<tr><td>12</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr><td>13</td><td>2</td><td>2</td><td>6.38 KB</td></tr>
|
||||||
|
<tr><td>14</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr><td>15</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr><td>16</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr><td>17</td><td>1</td><td>1</td><td>1.22 KB</td></tr>
|
||||||
|
<tr><td>18</td><td>1</td><td>1</td><td>4.45 KB</td></tr>
|
||||||
|
<tr><td>19</td><td>1</td><td>1</td><td>5.21 KB</td></tr>
|
||||||
|
<tr><td>20</td><td>4</td><td>4</td><td>1.21 KB</td></tr>
|
||||||
|
<tr><td>21</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr><td>22</td><td>3</td><td>3</td><td>14.13 KB</td></tr>
|
||||||
|
<tr><td>23</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
</table>
|
||||||
|
</center></td></tr></table>
|
||||||
|
<br />
|
||||||
|
</center></td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
|
||||||
|
<a name="who"> </a>
|
||||||
|
|
||||||
|
<a name="countries"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Domains/Länder der Besucher (Top 10) - <a href="awstats.mettcalc.de.alldomains.html" target="awstatsbis">Gesamte Liste</a> </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th width="32"> </th><th colspan="2">Domains/Länder</th><th bgcolor="#4477DD" width="80">Seiten</th><th bgcolor="#66DDEE" width="80">Zugriffe</th><th bgcolor="#2EA495" width="80">Bytes</th><th> </th></tr>
|
||||||
|
<tr><td width="32"><img src="/awstats-icon/flags/com.png" height="14" alt='com' title='com' /></td><td class="aws">Commercial</td><td>com</td><td>11</td><td>11</td><td>33.05 KB</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="261" height="5" alt='' title='' /><br />
|
||||||
|
<img src="/awstats-icon/other/hh.png" width="261" height="5" alt='' title='' /><br />
|
||||||
|
<img src="/awstats-icon/other/hk.png" width="261" height="5" alt='' title='' /></td></tr>
|
||||||
|
<tr><td width="32"><img src="/awstats-icon/flags/org.png" height="14" alt='org' title='org' /></td><td class="aws">Non-Profit Organizations</td><td>org</td><td>4</td><td>4</td><td>1.21 KB</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="95" height="5" alt='' title='' /><br />
|
||||||
|
<img src="/awstats-icon/other/hh.png" width="95" height="5" alt='' title='' /><br />
|
||||||
|
<img src="/awstats-icon/other/hk.png" width="10" height="5" alt='' title='' /></td></tr>
|
||||||
|
<tr><td width="32"><img src="/awstats-icon/flags/ip.png" height="14" alt='Unbekannt' title='Unbekannt' /></td><td class="aws">Unbekannt</td><td>ip</td><td>3</td><td>3</td><td>14.13 KB</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="71" height="5" alt='' title='' /><br />
|
||||||
|
<img src="/awstats-icon/other/hh.png" width="71" height="5" alt='' title='' /><br />
|
||||||
|
<img src="/awstats-icon/other/hk.png" width="112" height="5" alt='' title='' /></td></tr>
|
||||||
|
<tr><td width="32"><img src="/awstats-icon/flags/biz.png" height="14" alt='biz' title='biz' /></td><td class="aws">Biz domains</td><td>biz</td><td>2</td><td>2</td><td>6.65 KB</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="48" height="5" alt='' title='' /><br />
|
||||||
|
<img src="/awstats-icon/other/hh.png" width="48" height="5" alt='' title='' /><br />
|
||||||
|
<img src="/awstats-icon/other/hk.png" width="53" height="5" alt='' title='' /></td></tr>
|
||||||
|
<tr><td width="32"><img src="/awstats-icon/flags/de.png" height="14" alt='de' title='de' /></td><td class="aws">Germany</td><td>de</td><td>2</td><td>2</td><td>5.67 KB</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="48" height="5" alt='' title='' /><br />
|
||||||
|
<img src="/awstats-icon/other/hh.png" width="48" height="5" alt='' title='' /><br />
|
||||||
|
<img src="/awstats-icon/other/hk.png" width="45" height="5" alt='' title='' /></td></tr>
|
||||||
|
<tr><td width="32"> </td><td colspan="2" class="aws"><span style="color: #666688">Sonstige</span></td><td>0</td><td>0</td><td>0</td><td class="aws"> </td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<a name="visitors"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Rechner (Top 10) - <a href="awstats.mettcalc.de.allhosts.html" target="awstatsbis">Gesamte Liste</a> - <a href="awstats.mettcalc.de.lasthosts.html" target="awstatsbis">Letzter Zugriff</a> - <a href="awstats.mettcalc.de.unknownip.html" target="awstatsbis">Unaufgelöste IP Adressen</a> </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>Rechner : 8 Bekannte, 3 Unbekannte (IP konnte nicht aufgelöst werden )<br />11 Unterschiedliche Besucher</th><th bgcolor="#4477DD" width="80">Seiten</th><th bgcolor="#66DDEE" width="80">Zugriffe</th><th bgcolor="#2EA495" width="80">Bytes</th><th width="120">Letzter Zugriff</th></tr>
|
||||||
|
<tr><td class="aws">ec2-54-219-178-100.us-west-1.compute.amazonaws.com</td><td>4</td><td>4</td><td>4.66 KB</td><td nowrap="nowrap">26.11.2017 - 13:33</td></tr>
|
||||||
|
<tr><td class="aws">outbound1.letsencrypt.org</td><td>4</td><td>4</td><td>1.21 KB</td><td nowrap="nowrap">23.11.2017 - 20:54</td></tr>
|
||||||
|
<tr><td class="aws">ec2-13-56-159-157.us-west-1.compute.amazonaws.com</td><td>3</td><td>3</td><td>15.63 KB</td><td nowrap="nowrap">29.11.2017 - 00:05</td></tr>
|
||||||
|
<tr><td class="aws">ec2-52-53-129-36.us-west-1.compute.amazonaws.com</td><td>2</td><td>2</td><td>2.33 KB</td><td nowrap="nowrap">29.11.2017 - 11:56</td></tr>
|
||||||
|
<tr><td class="aws">ec2-54-67-67-222.us-west-1.compute.amazonaws.com</td><td>2</td><td>2</td><td>10.42 KB</td><td nowrap="nowrap">25.11.2017 - 06:18</td></tr>
|
||||||
|
<tr><td class="aws">b2b-46-252-133-250.unitymedia.biz</td><td>2</td><td>2</td><td>6.65 KB</td><td nowrap="nowrap">27.11.2017 - 10:42</td></tr>
|
||||||
|
<tr><td class="aws">planetlab19.net.in.tum.de</td><td>1</td><td>1</td><td>4.45 KB</td><td nowrap="nowrap">24.11.2017 - 18:11</td></tr>
|
||||||
|
<tr><td class="aws">38.130.178.19</td><td>1</td><td>1</td><td>4.71 KB</td><td nowrap="nowrap">23.11.2017 - 22:11</td></tr>
|
||||||
|
<tr><td class="aws">38.130.168.76</td><td>1</td><td>1</td><td>4.71 KB</td><td nowrap="nowrap">23.11.2017 - 22:11</td></tr>
|
||||||
|
<tr><td class="aws">ip-95-223-10-91.hsi16.unitymediagroup.de</td><td>1</td><td>1</td><td>1.22 KB</td><td nowrap="nowrap">29.11.2017 - 17:24</td></tr>
|
||||||
|
<tr><td class="aws"><span style="color: #666688">Sonstige</span></td><td>1</td><td>1</td><td>4.71 KB</td><td> </td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<a name="robots"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Robots/Spiders (Suchmaschinen) (Top 10) - <a href="awstats.mettcalc.de.allrobots.html" target="awstatsbis">Gesamte Liste</a> - <a href="awstats.mettcalc.de.lastrobots.html" target="awstatsbis">Letzter Zugriff</a> </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>6 Zugriffe durch Suchmaschinen*</th><th bgcolor="#66DDEE" width="80">Zugriffe</th><th bgcolor="#2EA495" width="80">Bytes</th><th width="120">Letzter Zugriff</th></tr>
|
||||||
|
<tr><td class="aws">Googlebot</td><td>4+6</td><td>40.21 KB</td><td>28.11.2017 - 07:00</td></tr>
|
||||||
|
<tr><td class="aws">empty user agent string</td><td>8</td><td>2.20 KB</td><td>23.11.2017 - 20:55</td></tr>
|
||||||
|
<tr><td class="aws">Baiduspider</td><td>8</td><td>9.47 KB</td><td>28.11.2017 - 12:49</td></tr>
|
||||||
|
<tr><td class="aws">SurveyBot</td><td>2+2</td><td>2.88 KB</td><td>25.11.2017 - 01:30</td></tr>
|
||||||
|
<tr><td class="aws">MJ12bot</td><td>1+1</td><td>6.13 KB</td><td>27.11.2017 - 08:16</td></tr>
|
||||||
|
<tr><td class="aws">bingbot</td><td>1</td><td>5.42 KB</td><td>27.11.2017 - 11:51</td></tr>
|
||||||
|
</table></td></tr></table><span style="font: 11px verdana, arial, helvetica;">* Die Robots, die hier angezeigt werden, zeigen Treffer oder Traffic welchen Besucher "nicht gesehen" haben und sind in den übrigen Diagrammen nicht enthalten. Zahlen hinter + sind erfolgreiche Treffer auf die "robots.txt"-Datei</span><br />
|
||||||
|
<br />
|
||||||
|
|
||||||
|
|
||||||
|
<a name="how"> </a>
|
||||||
|
|
||||||
|
<a name="sessions"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Aufenthaltsdauer </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>Anzahl der Besuche: 18 - Durchschnitt: 15 s</th><th bgcolor="#8888DD" width="80">Anzahl der Besuche</th><th bgcolor="#8888DD" width="80">Prozent</th></tr>
|
||||||
|
<tr><td class="aws">0s-30s</td><td>18</td><td>100 %</td></tr>
|
||||||
|
<tr><td class="aws">30s-2mn</td><td> </td><td> </td></tr>
|
||||||
|
<tr><td class="aws">2mn-5mn</td><td> </td><td> </td></tr>
|
||||||
|
<tr><td class="aws">5mn-15mn</td><td> </td><td> </td></tr>
|
||||||
|
<tr><td class="aws">15mn-30mn</td><td> </td><td> </td></tr>
|
||||||
|
<tr><td class="aws">30mn-1h</td><td> </td><td> </td></tr>
|
||||||
|
<tr><td class="aws">1h+</td><td> </td><td> </td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<a name="filetypes"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Datei-Typen </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th colspan="3">Datei-Typen</th><th bgcolor="#66DDEE" width="80">Zugriffe</th><th bgcolor="#66DDEE" width="80">Prozent</th><th bgcolor="#2EA495" width="80">Bytes</th><th bgcolor="#2EA495" width="80">Prozent</th></tr>
|
||||||
|
<tr><td width="32"><img src="/awstats-icon/mime/php.png" alt='' title='' /></td><td class="aws">php</td><td class="aws">Dynamic PHP Script file</td><td>18</td><td>81.8 %</td><td nowrap="nowrap">59.50 KB</td><td>98 %</td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/mime/unknown.png" alt='' title='' /></td><td class="aws" colspan="2"><span style="color: #666688">Unbekannt</span></td><td>4</td><td>18.1 %</td><td nowrap="nowrap">1.21 KB</td><td>1.9 %</td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<a name="downloads"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Downloads (Top 10) - <a href="awstats.mettcalc.de.downloads.html" target="awstatsbis">Gesamte Liste</a> </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th colspan="2">Downloads: 2</th><th bgcolor="#66DDEE" width="80">Zugriffe</th><th bgcolor="#66DDEE" width="80">206 Zugriffe</th><th bgcolor="#2EA495" width="80">Bytes</th><th bgcolor="#2EA495" width="80">durchschnitt. Größe</th></tr>
|
||||||
|
<tr><td width="32"><img src="/awstats-icon/mime/text.png" alt='' title='' /></td><td class="aws"><a href="http://mettcalc.de/.well-known/acme-challenge/le-5a1727837dd59.txt" target="url" rel="nofollow">/.well-known/acme-challenge/le-5a1727837dd59.txt</a></td><td>4</td><td>0</td><td>1.10 KB</td><td>281 Bytes</td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/mime/text.png" alt='' title='' /></td><td class="aws"><a href="http://mettcalc.de/.well-known/acme-challenge/le-5a1727a7e6704.txt" target="url" rel="nofollow">/.well-known/acme-challenge/le-5a1727a7e6704.txt</a></td><td>4</td><td>0</td><td>1.10 KB</td><td>281 Bytes</td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<a name="urls"> </a><a name="entry"> </a><a name="exit"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Seiten-URL (Top 10) - <a href="awstats.mettcalc.de.urldetail.html" target="awstatsbis">Gesamte Liste</a> - <a href="awstats.mettcalc.de.urlentry.html" target="awstatsbis">Einstiegsseiten</a> - <a href="awstats.mettcalc.de.urlexit.html" target="awstatsbis">Exit Seiten</a> </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>5 Unterschiedliche Seiten</th><th bgcolor="#4477DD" width="80">Zugriffe</th><th bgcolor="#2EA495" width="80">durchschnitt. Größe</th><th bgcolor="#CEC2E8" width="80">Einstiegsseiten</th><th bgcolor="#C1B2E2" width="80">Exit Seiten</th><th> </th></tr>
|
||||||
|
<tr><td class="aws"><a href="http://mettcalc.de/" target="url" rel="nofollow">/</a></td><td>18</td><td>3.31 KB</td><td>17</td><td>17</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="261" height="4" alt='' title='' /><br /><img src="/awstats-icon/other/hk.png" width="261" height="4" alt='' title='' /><br /><img src="/awstats-icon/other/he.png" width="246" height="4" alt='' title='' /><br /><img src="/awstats-icon/other/hx.png" width="246" height="4" alt='' title='' /></td></tr>
|
||||||
|
<tr><td class="aws"><a href="http://mettcalc.de/.well-known/acme-challenge/eB0b8zrvp5KOf7JD7pssScJZox5L0_gLZFWHu0ngI3o" target="url" rel="nofollow">/.well-known/acme-challenge/eB0b8zrvp5KOf7JD7pssScJZox5L0_gLZFWH...</a></td><td>1</td><td>310 Bytes</td><td> </td><td> </td><td class="aws"><img src="/awstats-icon/other/hp.png" width="15" height="4" alt='' title='' /><br /><img src="/awstats-icon/other/hk.png" width="24" height="4" alt='' title='' /><br /><img src="/awstats-icon/other/he.png" width="1" height="4" alt='' title='' /><br /><img src="/awstats-icon/other/hx.png" width="1" height="4" alt='' title='' /></td></tr>
|
||||||
|
<tr><td class="aws"><a href="http://mettcalc.de/.well-known/acme-challenge/OuHky0Ab32KinwMliP4MPr2kKgTm-kGpGGKbxBh-4UI" target="url" rel="nofollow">/.well-known/acme-challenge/OuHky0Ab32KinwMliP4MPr2kKgTm-kGpGGKb...</a></td><td>1</td><td>308 Bytes</td><td> </td><td> </td><td class="aws"><img src="/awstats-icon/other/hp.png" width="15" height="4" alt='' title='' /><br /><img src="/awstats-icon/other/hk.png" width="24" height="4" alt='' title='' /><br /><img src="/awstats-icon/other/he.png" width="1" height="4" alt='' title='' /><br /><img src="/awstats-icon/other/hx.png" width="1" height="4" alt='' title='' /></td></tr>
|
||||||
|
<tr><td class="aws"><a href="http://mettcalc.de/.well-known/acme-challenge/RtKCnPpwovmyDaRVwxFoX5nG79hok0WMQIo94IJ_cug" target="url" rel="nofollow">/.well-known/acme-challenge/RtKCnPpwovmyDaRVwxFoX5nG79hok0WMQIo9...</a></td><td>1</td><td>308 Bytes</td><td> </td><td>1</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="15" height="4" alt='' title='' /><br /><img src="/awstats-icon/other/hk.png" width="24" height="4" alt='' title='' /><br /><img src="/awstats-icon/other/he.png" width="1" height="4" alt='' title='' /><br /><img src="/awstats-icon/other/hx.png" width="15" height="4" alt='' title='' /></td></tr>
|
||||||
|
<tr><td class="aws"><a href="http://mettcalc.de/.well-known/acme-challenge/YzBYdk7bDnvhrXZhbMiP3qGTJc6LWU7qXoMWqFDvGJ8" target="url" rel="nofollow">/.well-known/acme-challenge/YzBYdk7bDnvhrXZhbMiP3qGTJc6LWU7qXoMW...</a></td><td>1</td><td>310 Bytes</td><td>1</td><td> </td><td class="aws"><img src="/awstats-icon/other/hp.png" width="15" height="4" alt='' title='' /><br /><img src="/awstats-icon/other/hk.png" width="24" height="4" alt='' title='' /><br /><img src="/awstats-icon/other/he.png" width="15" height="4" alt='' title='' /><br /><img src="/awstats-icon/other/hx.png" width="1" height="4" alt='' title='' /></td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<a name="os"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Betriebssysteme (Top 10) - <a href="awstats.mettcalc.de.osdetail.html" target="awstatsbis">Gesamte Liste/Versionen</a> - <a href="awstats.mettcalc.de.unknownos.html" target="awstatsbis">Unbekannt</a> </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th width="32"> </th><th>Betriebssysteme</th><th bgcolor="#4477DD" width="80">Seiten</th><th bgcolor="#4477DD" width="80">Prozent</th><th bgcolor="#66DDEE" width="80">Zugriffe</th><th bgcolor="#66DDEE" width="80">Prozent</th></tr>
|
||||||
|
<tr><td width="32"><img src="/awstats-icon/os/mac.png" alt='' title='' /></td><td class="aws"><b>Macintosh</b></td><td>14</td><td>63.6 %</td><td>14</td><td>63.6 %</td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/os/unknown.png" alt='' title='' /></td><td class="aws"><span style="color: #666688">Unbekannt</span></td><td>4</td><td>18.1 %</td><td>4</td><td>18.1 %</td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/os/win.png" alt='' title='' /></td><td class="aws"><b>Windows</b></td><td>2</td><td>9 %</td><td>2</td><td>9 %</td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/os/linux.png" alt='' title='' /></td><td class="aws"><b>Linux</b></td><td>2</td><td>9 %</td><td>2</td><td>9 %</td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<a name="browsers"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Browser (Top 10) - <a href="awstats.mettcalc.de.browserdetail.html" target="awstatsbis">Gesamte Liste/Versionen</a> - <a href="awstats.mettcalc.de.unknownbrowser.html" target="awstatsbis">Unbekannt</a> </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th width="32"> </th><th>Browser</th><th width="80">Grabber</th><th bgcolor="#4477DD" width="80">Seiten</th><th bgcolor="#4477DD" width="80">Prozent</th><th bgcolor="#66DDEE" width="80">Zugriffe</th><th bgcolor="#66DDEE" width="80">Prozent</th></tr>
|
||||||
|
<tr><td width="32"><img src="/awstats-icon/browser/chrome.png" alt='' title='' /></td><td class="aws"><b>Google Chrome</b></td><td>Nein</td><td>13</td><td>59 %</td><td>13</td><td>59 %</td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/browser/mozilla.png" alt='' title='' /></td><td class="aws">Mozilla</td><td>Nein</td><td>4</td><td>18.1 %</td><td>4</td><td>18.1 %</td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/browser/msie.png" alt='' title='' /></td><td class="aws"><b>MS Internet Explorer</b></td><td>Nein</td><td>2</td><td>9 %</td><td>2</td><td>9 %</td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/browser/firefox.png" alt='' title='' /></td><td class="aws"><b>Firefox</b></td><td>Nein</td><td>2</td><td>9 %</td><td>2</td><td>9 %</td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/browser/safari.png" alt='' title='' /></td><td class="aws"><b>Safari</b></td><td>Nein</td><td>1</td><td>4.5 %</td><td>1</td><td>4.5 %</td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
|
||||||
|
<a name="refering"> </a>
|
||||||
|
|
||||||
|
<a name="referer"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Woher die Besucher kamen </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>Herkunft</th><th bgcolor="#4477DD" width="80">Seiten</th><th bgcolor="#4477DD" width="80">Prozent</th><th bgcolor="#66DDEE" width="80">Zugriffe</th><th bgcolor="#66DDEE" width="80">Prozent</th></tr>
|
||||||
|
<tr><td class="aws"><b>Direkter Zugriff/Bookmarks</b></td><td>22</td><td>100 %</td><td>22</td><td>100 %</td></tr>
|
||||||
|
<tr><td class="aws"><b>Links von einer Internet-Suchmaschine</b> - <a href="awstats.mettcalc.de.refererse.html" target="awstatsbis">Gesamte Liste</a><br />
|
||||||
|
</td>
|
||||||
|
<td valign="top"> </td><td valign="top"> </td><td valign="top"> </td><td valign="top"> </td></tr>
|
||||||
|
<tr><td class="aws"><b>Links von einer externen Seite (keine Suchmaschinen)</b> - <a href="awstats.mettcalc.de.refererpages.html" target="awstatsbis">Gesamte Liste</a><br />
|
||||||
|
</td>
|
||||||
|
<td valign="top"> </td><td valign="top"> </td><td valign="top"> </td><td valign="top"> </td></tr>
|
||||||
|
<tr><td class="aws"><b>Herkunft unbekannt</b></td><td> </td><td> </td><td> </td><td> </td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
|
||||||
|
<a name="keys"> </a>
|
||||||
|
|
||||||
|
<a name="keyphrases"> </a><a name="keywords"> </a><br />
|
||||||
|
<table width="100%" cellpadding="0" cellspacing="0"><tr><td width="50%" valign="top">
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="95%">Suchausdrücke (Top 10)<br /><a href="awstats.mettcalc.de.keyphrases.html" target="awstatsbis">Gesamte Liste</a> </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>0 verschiedene Suchbegriffe</th><th bgcolor="#8888DD" width="80">Häufigkeit</th><th bgcolor="#8888DD" width="80">Prozent</th></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
</td>
|
||||||
|
<td> </td><td width="50%" valign="top">
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="95%">Suchbegriffe (Top 10)<br /><a href="awstats.mettcalc.de.keywords.html" target="awstatsbis">Gesamte Liste</a> </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>0 Suchbegriffe</th><th bgcolor="#8888DD" width="80">Häufigkeit</th><th bgcolor="#8888DD" width="80">Prozent</th></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
</td>
|
||||||
|
</tr></table>
|
||||||
|
|
||||||
|
<a name="other"> </a>
|
||||||
|
|
||||||
|
<a name="misc"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Verschiedenes </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>Verschiedenes</th><th width="100"> </th><th width="100"> </th></tr>
|
||||||
|
<tr><td class="aws">Zu Favoriten hinzugefügt (Schätzung)</td><td>9 / 11 Besucher</td><td>81.8 %</td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<a name="errors"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">HTTP Fehlercodes </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th colspan="2">HTTP Fehlercodes*</th><th bgcolor="#66DDEE" width="80">Zugriffe</th><th bgcolor="#66DDEE" width="80">Prozent</th><th bgcolor="#2EA495" width="80">Bytes</th></tr>
|
||||||
|
<tr><td><a href="awstats.mettcalc.de.errors404.html" target="awstatsbis">404</a></td><td class="aws">Document Not Found (hits on favicon excluded)</td><td>14</td><td>58.3 %</td><td>66.11 KB</td></tr>
|
||||||
|
<tr><td><a href="awstats.mettcalc.de.errors400.html" target="awstatsbis">400</a></td><td class="aws">Bad Request</td><td>10</td><td>41.6 %</td><td>39.89 KB</td></tr>
|
||||||
|
</table></td></tr></table><span style="font: 11px verdana, arial, helvetica;">* Die Codes, die hier angezeigt werden, zeigen Treffer oder Traffic welchen Besucher "nicht gesehen" haben und sind in den übrigen Diagrammen nicht enthalten.</span><br />
|
||||||
|
<br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,93 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2017-11) - alldomains">
|
||||||
|
<title>Statistik für mettcalc.de (2017-11) - alldomains</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=alldomains" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.12.2017 - 00:00</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Nov 2017</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="domains"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Domains/Länder der Besucher </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th width="32"> </th><th colspan="2">Domains/Länder</th><th bgcolor="#4477DD" width="80">Seiten</th><th bgcolor="#66DDEE" width="80">Zugriffe</th><th class="datasize" bgcolor="#2EA495" width="80">Bytes</th><th> </th></tr>
|
||||||
|
<tr><td width="32"><img src="/awstats-icon/flags/com.png" height="14" alt='com' title='com' /></td><td class="aws">Commercial</td><td>com</td><td>11</td><td>11</td><td>33.05 KB</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="261" height="5" alt='Seiten: 11' title='Seiten: 11' /><br />
|
||||||
|
<img src="/awstats-icon/other/hh.png" width="261" height="5" alt='Zugriffe: 11' title='Zugriffe: 11' /><br />
|
||||||
|
<img src="/awstats-icon/other/hk.png" width="261" height="5" alt='Bytes: 33.05 KB' title='Bytes: 33.05 KB' /></td></tr>
|
||||||
|
<tr><td width="32"><img src="/awstats-icon/flags/org.png" height="14" alt='org' title='org' /></td><td class="aws">Non-Profit Organizations</td><td>org</td><td>4</td><td>4</td><td>1.21 KB</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="95" height="5" alt='Seiten: 4' title='Seiten: 4' /><br />
|
||||||
|
<img src="/awstats-icon/other/hh.png" width="95" height="5" alt='Zugriffe: 4' title='Zugriffe: 4' /><br />
|
||||||
|
<img src="/awstats-icon/other/hk.png" width="10" height="5" alt='Bytes: 1.21 KB' title='Bytes: 1.21 KB' /></td></tr>
|
||||||
|
<tr><td width="32"><img src="/awstats-icon/flags/ip.png" height="14" alt='Unbekannt' title='Unbekannt' /></td><td class="aws">Unbekannt</td><td>ip</td><td>3</td><td>3</td><td>14.13 KB</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="71" height="5" alt='Seiten: 3' title='Seiten: 3' /><br />
|
||||||
|
<img src="/awstats-icon/other/hh.png" width="71" height="5" alt='Zugriffe: 3' title='Zugriffe: 3' /><br />
|
||||||
|
<img src="/awstats-icon/other/hk.png" width="112" height="5" alt='Bytes: 14.13 KB' title='Bytes: 14.13 KB' /></td></tr>
|
||||||
|
<tr><td width="32"><img src="/awstats-icon/flags/biz.png" height="14" alt='biz' title='biz' /></td><td class="aws">Biz domains</td><td>biz</td><td>2</td><td>2</td><td>6.65 KB</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="48" height="5" alt='Seiten: 2' title='Seiten: 2' /><br />
|
||||||
|
<img src="/awstats-icon/other/hh.png" width="48" height="5" alt='Zugriffe: 2' title='Zugriffe: 2' /><br />
|
||||||
|
<img src="/awstats-icon/other/hk.png" width="53" height="5" alt='Bytes: 6.65 KB' title='Bytes: 6.65 KB' /></td></tr>
|
||||||
|
<tr><td width="32"><img src="/awstats-icon/flags/de.png" height="14" alt='de' title='de' /></td><td class="aws">Germany</td><td>de</td><td>2</td><td>2</td><td>5.67 KB</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="48" height="5" alt='Seiten: 2' title='Seiten: 2' /><br />
|
||||||
|
<img src="/awstats-icon/other/hh.png" width="48" height="5" alt='Zugriffe: 2' title='Zugriffe: 2' /><br />
|
||||||
|
<img src="/awstats-icon/other/hk.png" width="45" height="5" alt='Bytes: 5.67 KB' title='Bytes: 5.67 KB' /></td></tr>
|
||||||
|
<tr><td width="32"> </td><td colspan="2" class="aws"><span style="color: #666688">Sonstige</span></td><td>0</td><td>0</td><td>0</td><td class="aws"> </td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,88 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2017-11) - allhosts">
|
||||||
|
<title>Statistik für mettcalc.de (2017-11) - allhosts</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=allhosts" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.12.2017 - 00:00</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Nov 2017</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="hosts"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Rechner </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>Total : 8 Bekannte, 3 Unbekannte (IP konnte nicht aufgelöst werden ) - 11 Unterschiedliche Besucher</th><th bgcolor="#4477DD" width="80">Seiten</th><th bgcolor="#66DDEE" width="80">Zugriffe</th><th class="datasize" bgcolor="#2EA495" width="80">Bytes</th><th width="120">Letzter Zugriff</th></tr>
|
||||||
|
<tr><td class="aws">ec2-54-219-178-100.us-west-1.compute.amazonaws.com</td><td>4</td><td>4</td><td>4.66 KB</td><td>26.11.2017 - 13:33</td></tr>
|
||||||
|
<tr><td class="aws">outbound1.letsencrypt.org</td><td>4</td><td>4</td><td>1.21 KB</td><td>23.11.2017 - 20:54</td></tr>
|
||||||
|
<tr><td class="aws">ec2-13-56-159-157.us-west-1.compute.amazonaws.com</td><td>3</td><td>3</td><td>15.63 KB</td><td>29.11.2017 - 00:05</td></tr>
|
||||||
|
<tr><td class="aws">ec2-52-53-129-36.us-west-1.compute.amazonaws.com</td><td>2</td><td>2</td><td>2.33 KB</td><td>29.11.2017 - 11:56</td></tr>
|
||||||
|
<tr><td class="aws">b2b-46-252-133-250.unitymedia.biz</td><td>2</td><td>2</td><td>6.65 KB</td><td>27.11.2017 - 10:42</td></tr>
|
||||||
|
<tr><td class="aws">ec2-54-67-67-222.us-west-1.compute.amazonaws.com</td><td>2</td><td>2</td><td>10.42 KB</td><td>25.11.2017 - 06:18</td></tr>
|
||||||
|
<tr><td class="aws">planetlab19.net.in.tum.de</td><td>1</td><td>1</td><td>4.45 KB</td><td>24.11.2017 - 18:11</td></tr>
|
||||||
|
<tr><td class="aws">38.130.178.19</td><td>1</td><td>1</td><td>4.71 KB</td><td>23.11.2017 - 22:11</td></tr>
|
||||||
|
<tr><td class="aws">38.130.168.76</td><td>1</td><td>1</td><td>4.71 KB</td><td>23.11.2017 - 22:11</td></tr>
|
||||||
|
<tr><td class="aws">ip-95-223-10-91.hsi16.unitymediagroup.de</td><td>1</td><td>1</td><td>1.22 KB</td><td>29.11.2017 - 17:24</td></tr>
|
||||||
|
<tr><td class="aws">38.130.169.111</td><td>1</td><td>1</td><td>4.71 KB</td><td>23.11.2017 - 22:09</td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,84 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2017-11) - allrobots">
|
||||||
|
<title>Statistik für mettcalc.de (2017-11) - allrobots</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=allrobots" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.12.2017 - 00:00</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Nov 2017</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="robots"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Robots/Spiders (Suchmaschinen) </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>6 Zugriffe durch Suchmaschinen</th><th bgcolor="#66DDEE" width="80">Zugriffe</th><th class="datasize" bgcolor="#2EA495" width="80">Bytes</th><th width="120">Letzter Zugriff</th></tr>
|
||||||
|
<tr><td class="aws">Googlebot</td><td>4+6</td><td>40.21 KB</td><td>28.11.2017 - 07:00</td></tr>
|
||||||
|
<tr><td class="aws">Baiduspider</td><td>8</td><td>9.47 KB</td><td>28.11.2017 - 12:49</td></tr>
|
||||||
|
<tr><td class="aws">empty user agent string</td><td>8</td><td>2.20 KB</td><td>23.11.2017 - 20:55</td></tr>
|
||||||
|
<tr><td class="aws">SurveyBot</td><td>2+2</td><td>2.88 KB</td><td>25.11.2017 - 01:30</td></tr>
|
||||||
|
<tr><td class="aws">MJ12bot</td><td>1+1</td><td>6.13 KB</td><td>27.11.2017 - 08:16</td></tr>
|
||||||
|
<tr><td class="aws">bingbot</td><td>1</td><td>5.42 KB</td><td>27.11.2017 - 11:51</td></tr>
|
||||||
|
</table></td></tr></table><span style="font: 11px verdana, arial, helvetica;">* Die Robots, die hier angezeigt werden, zeigen Treffer oder Traffic welchen Besucher "nicht gesehen" haben und sind in den übrigen Diagrammen nicht enthalten. Zahlen hinter + sind erfolgreiche Treffer auf die "robots.txt"-Datei</span><br />
|
||||||
|
<br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,89 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2017-11) - browserdetail">
|
||||||
|
<title>Statistik für mettcalc.de (2017-11) - browserdetail</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=browserdetail" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.12.2017 - 00:00</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Nov 2017</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="browsersversions"> </a><br /><table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Browser </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th colspan="2">Versionen</th><th width="80">Grabber</th><th bgcolor="#4477DD" width="80">Seiten</th><th bgcolor="#4477DD" width="80">Prozent</th><th bgcolor="#66DDEE" width="80">Zugriffe</th><th bgcolor="#66DDEE" width="80">Prozent</th><th> </th></tr>
|
||||||
|
<tr bgcolor="#F6F6F6"><td class="aws" colspan="2"><b>MSIE</b></td><td> </td><td><b>2</b></td><td><b>9 %</b></td><td><b>2</b></td><td><b>9 %</b></td><td> </td></tr>
|
||||||
|
<tr><td width="32"><img src="/awstats-icon/browser/msie.png" alt='' title='' /></td><td class="aws">Msie 10.6</td><td>Nein</td><td>1</td><td>4.5 %</td><td>1</td><td>4.5 %</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="24" height="5" /><br /><img src="/awstats-icon/other/hh.png" width="24" height="5" /><br /></td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/browser/msie.png" alt='' title='' /></td><td class="aws">Msie 10.0</td><td>Nein</td><td>1</td><td>4.5 %</td><td>1</td><td>4.5 %</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="24" height="5" /><br /><img src="/awstats-icon/other/hh.png" width="24" height="5" /><br /></td></tr>
|
||||||
|
<tr bgcolor="#F6F6F6"><td class="aws" colspan="2"><b>FIREFOX</b></td><td> </td><td><b>2</b></td><td><b>9 %</b></td><td><b>2</b></td><td><b>9 %</b></td><td> </td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/browser/firefox.png" alt='' title='' /></td><td class="aws">Firefox 57.0</td><td>Nein</td><td>2</td><td>9 %</td><td>2</td><td>9 %</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="48" height="5" /><br /><img src="/awstats-icon/other/hh.png" width="48" height="5" /><br /></td></tr>
|
||||||
|
<tr bgcolor="#F6F6F6"><td class="aws" colspan="2"><b>SAFARI</b></td><td> </td><td><b>1</b></td><td><b>4.5 %</b></td><td><b>1</b></td><td><b>4.5 %</b></td><td> </td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/browser/safari.png" alt='' title='' /></td><td class="aws">Safari 5.0.5</td><td>Nein</td><td>1</td><td>4.5 %</td><td>1</td><td>4.5 %</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="24" height="5" /><br /><img src="/awstats-icon/other/hh.png" width="24" height="5" /><br /></td></tr>
|
||||||
|
<tr bgcolor="#F6F6F6"><td class="aws" colspan="2"><b>CHROME</b></td><td> </td><td><b>13</b></td><td><b>59 %</b></td><td><b>13</b></td><td><b>59 %</b></td><td> </td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/browser/chrome.png" alt='' title='' /></td><td class="aws">Chrome 62.0.3202.94</td><td>Nein</td><td>1</td><td>4.5 %</td><td>1</td><td>4.5 %</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="24" height="5" /><br /><img src="/awstats-icon/other/hh.png" width="24" height="5" /><br /></td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/browser/chrome.png" alt='' title='' /></td><td class="aws">Chrome 61.0.3163.100</td><td>Nein</td><td>11</td><td>50 %</td><td>11</td><td>50 %</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="261" height="5" /><br /><img src="/awstats-icon/other/hh.png" width="261" height="5" /><br /></td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/browser/chrome.png" alt='' title='' /></td><td class="aws">Chrome 40.0.2214.85</td><td>Nein</td><td>1</td><td>4.5 %</td><td>1</td><td>4.5 %</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="24" height="5" /><br /><img src="/awstats-icon/other/hh.png" width="24" height="5" /><br /></td></tr>
|
||||||
|
<tr bgcolor="#F6F6F6"><td class="aws" colspan="2"><b>Sonstige</b></td><td> </td><td><b>4</b></td><td><b>18.1 %</b></td><td><b>4</b></td><td><b>18.1 %</b></td><td> </td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/browser/mozilla.png" alt='' title='' /></td><td class="aws">Mozilla</td><td>Nein</td><td>4</td><td>18.1 %</td><td>4</td><td>18.1 %</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="95" height="5" /><br /><img src="/awstats-icon/other/hh.png" width="95" height="5" /><br /></td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,79 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2017-11) - downloads">
|
||||||
|
<title>Statistik für mettcalc.de (2017-11) - downloads</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=downloads" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.12.2017 - 00:00</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Nov 2017</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="downloads"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Downloads </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th colspan="2">Downloads</th><th bgcolor="#66DDEE" width="80">Zugriffe</th><th bgcolor="#66DDEE" width="80">206 Zugriffe</th><th bgcolor="#2EA495" width="80">Bytes</th><th bgcolor="#2EA495" width="80">durchschnitt. Größe</th></tr>
|
||||||
|
<tr><td width="32"><img src="/awstats-icon/mime/text.png" alt='' title='' /></td><td class="aws"><a href="http://mettcalc.de/.well-known/acme-challenge/le-5a1727837dd59.txt" target="url" rel="nofollow">/.well-known/acme-challenge/le-5a1727837dd59.txt</a></td><td>4</td><td>0</td><td>1.10 KB</td><td>281 Bytes</td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/mime/text.png" alt='' title='' /></td><td class="aws"><a href="http://mettcalc.de/.well-known/acme-challenge/le-5a1727a7e6704.txt" target="url" rel="nofollow">/.well-known/acme-challenge/le-5a1727a7e6704.txt</a></td><td>4</td><td>0</td><td>1.10 KB</td><td>281 Bytes</td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,78 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2017-11) - errors400">
|
||||||
|
<title>Statistik für mettcalc.de (2017-11) - errors400</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=errors400" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.12.2017 - 00:00</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Nov 2017</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="errors400"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Bad Request urls (HTTP code 400) </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>URL (1)</th><th bgcolor="#66DDEE">Fehlerhafte Zugriffe</th><th bgcolor="#4477DD" width="80">Verweise</th></tr>
|
||||||
|
<tr><td class="aws">/</td><td>10</td><td class="aws">-</td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,77 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2017-11) - errors403">
|
||||||
|
<title>Statistik für mettcalc.de (2017-11) - errors403</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=errors403" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.12.2017 - 00:00</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Nov 2017</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="errors403"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Forbidden urls (HTTP code 403) </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>URL (0)</th><th bgcolor="#66DDEE">Fehlerhafte Zugriffe</th><th bgcolor="#4477DD" width="80">Verweise</th></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,77 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2017-11) - errors404">
|
||||||
|
<title>Statistik für mettcalc.de (2017-11) - errors404</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=errors404" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.12.2017 - 00:00</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Nov 2017</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="errors404"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Nicht auffindbare Seiten (Fehler 404) </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>URL (0)</th><th bgcolor="#66DDEE">Fehlerhafte Zugriffe</th><th bgcolor="#4477DD" width="80">Verweise</th></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,77 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2017-11) - keyphrases">
|
||||||
|
<title>Statistik für mettcalc.de (2017-11) - keyphrases</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=keyphrases" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.12.2017 - 00:00</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Nov 2017</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="keyphrases"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Suchausdrücke (Suchmaschinen) </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>0 verschiedene Suchbegriffe</th><th bgcolor="#8888DD" width="80">Häufigkeit</th><th bgcolor="#8888DD" width="80">Prozent</th></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,77 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2017-11) - keywords">
|
||||||
|
<title>Statistik für mettcalc.de (2017-11) - keywords</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=keywords" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.12.2017 - 00:00</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Nov 2017</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="keywords"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Suchbegriffe (Suchmaschinen) </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>0 Suchbegriffe</th><th bgcolor="#8888DD" width="80">Häufigkeit</th><th bgcolor="#8888DD" width="80">Prozent</th></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,88 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2017-11) - lasthosts">
|
||||||
|
<title>Statistik für mettcalc.de (2017-11) - lasthosts</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=lasthosts" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.12.2017 - 00:00</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Nov 2017</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="hosts"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Letzter Zugriff </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>Total : 8 Bekannte, 3 Unbekannte (IP konnte nicht aufgelöst werden ) - 11 Unterschiedliche Besucher</th><th bgcolor="#4477DD" width="80">Seiten</th><th bgcolor="#66DDEE" width="80">Zugriffe</th><th class="datasize" bgcolor="#2EA495" width="80">Bytes</th><th width="120">Letzter Zugriff</th></tr>
|
||||||
|
<tr><td class="aws">ip-95-223-10-91.hsi16.unitymediagroup.de</td><td>1</td><td>1</td><td>1.22 KB</td><td>29.11.2017 - 17:24</td></tr>
|
||||||
|
<tr><td class="aws">ec2-52-53-129-36.us-west-1.compute.amazonaws.com</td><td>2</td><td>2</td><td>2.33 KB</td><td>29.11.2017 - 11:56</td></tr>
|
||||||
|
<tr><td class="aws">ec2-13-56-159-157.us-west-1.compute.amazonaws.com</td><td>3</td><td>3</td><td>15.63 KB</td><td>29.11.2017 - 00:05</td></tr>
|
||||||
|
<tr><td class="aws">b2b-46-252-133-250.unitymedia.biz</td><td>2</td><td>2</td><td>6.65 KB</td><td>27.11.2017 - 10:42</td></tr>
|
||||||
|
<tr><td class="aws">ec2-54-219-178-100.us-west-1.compute.amazonaws.com</td><td>4</td><td>4</td><td>4.66 KB</td><td>26.11.2017 - 13:33</td></tr>
|
||||||
|
<tr><td class="aws">ec2-54-67-67-222.us-west-1.compute.amazonaws.com</td><td>2</td><td>2</td><td>10.42 KB</td><td>25.11.2017 - 06:18</td></tr>
|
||||||
|
<tr><td class="aws">planetlab19.net.in.tum.de</td><td>1</td><td>1</td><td>4.45 KB</td><td>24.11.2017 - 18:11</td></tr>
|
||||||
|
<tr><td class="aws">38.130.168.76</td><td>1</td><td>1</td><td>4.71 KB</td><td>23.11.2017 - 22:11</td></tr>
|
||||||
|
<tr><td class="aws">38.130.178.19</td><td>1</td><td>1</td><td>4.71 KB</td><td>23.11.2017 - 22:11</td></tr>
|
||||||
|
<tr><td class="aws">38.130.169.111</td><td>1</td><td>1</td><td>4.71 KB</td><td>23.11.2017 - 22:09</td></tr>
|
||||||
|
<tr><td class="aws">outbound1.letsencrypt.org</td><td>4</td><td>4</td><td>1.21 KB</td><td>23.11.2017 - 20:54</td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,84 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2017-11) - lastrobots">
|
||||||
|
<title>Statistik für mettcalc.de (2017-11) - lastrobots</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=lastrobots" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.12.2017 - 00:00</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Nov 2017</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="robots"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Letzter Zugriff </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>6 Zugriffe durch Suchmaschinen</th><th bgcolor="#66DDEE" width="80">Zugriffe</th><th class="datasize" bgcolor="#2EA495" width="80">Bytes</th><th width="120">Letzter Zugriff</th></tr>
|
||||||
|
<tr><td class="aws">Baiduspider</td><td>8</td><td>9.47 KB</td><td>28.11.2017 - 12:49</td></tr>
|
||||||
|
<tr><td class="aws">Googlebot</td><td>4+6</td><td>40.21 KB</td><td>28.11.2017 - 07:00</td></tr>
|
||||||
|
<tr><td class="aws">bingbot</td><td>1</td><td>5.42 KB</td><td>27.11.2017 - 11:51</td></tr>
|
||||||
|
<tr><td class="aws">MJ12bot</td><td>1+1</td><td>6.13 KB</td><td>27.11.2017 - 08:16</td></tr>
|
||||||
|
<tr><td class="aws">SurveyBot</td><td>2+2</td><td>2.88 KB</td><td>25.11.2017 - 01:30</td></tr>
|
||||||
|
<tr><td class="aws">empty user agent string</td><td>8</td><td>2.20 KB</td><td>23.11.2017 - 20:55</td></tr>
|
||||||
|
</table></td></tr></table><span style="font: 11px verdana, arial, helvetica;">* Die Robots, die hier angezeigt werden, zeigen Treffer oder Traffic welchen Besucher "nicht gesehen" haben und sind in den übrigen Diagrammen nicht enthalten. Zahlen hinter + sind erfolgreiche Treffer auf die "robots.txt"-Datei</span><br />
|
||||||
|
<br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,86 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2017-11) - osdetail">
|
||||||
|
<title>Statistik für mettcalc.de (2017-11) - osdetail</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=osdetail" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.12.2017 - 00:00</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Nov 2017</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="osversions"> </a><br /><table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Betriebssysteme </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th colspan="2">Versionen</th><th bgcolor="#4477DD" width="80">Seiten</th><th bgcolor="#4477DD" width="80">Prozent</th><th bgcolor="#66DDEE" width="80">Zugriffe</th><th bgcolor="#66DDEE" width="80">Prozent</th></tr>
|
||||||
|
<tr bgcolor="#F6F6F6"><td class="aws" colspan="2"><b>Macintosh</b></td><td><b>14</b></td><td><b>63.6 %</b></td><td><b>14</b></td><td><b>63.6 %</b></td><td> </td></tr>
|
||||||
|
<tr><td width="32"><img src="/awstats-icon/os/macosx7.png" alt='' title='' /></td><td class="aws"><a href="http://www.apple.com/macosx/" title="Mac OS X home page [new window]" target="_blank">Mac OS X 10.7 Lion</a></td><td>1</td><td>4.5 %</td><td>1</td><td>4.5 %</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="22" height="5" /><br /><img src="/awstats-icon/other/hh.png" width="22" height="5" /><br /></td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/os/macosx6.png" alt='' title='' /></td><td class="aws"><a href="http://www.apple.com/macosx/" title="Mac OS X home page [new window]" target="_blank">Mac OS X 10.6 Snow Leopard</a></td><td>1</td><td>4.5 %</td><td>1</td><td>4.5 %</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="22" height="5" /><br /><img src="/awstats-icon/other/hh.png" width="22" height="5" /><br /></td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/os/macosx12.png" alt='' title='' /></td><td class="aws"><a href="http://www.apple.com/macosx/" title="Mac OS X home page [new window]" target="_blank">Mac OS X 10.12 Sierra</a></td><td>12</td><td>54.5 %</td><td>12</td><td>54.5 %</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="261" height="5" /><br /><img src="/awstats-icon/other/hh.png" width="261" height="5" /><br /></td></tr>
|
||||||
|
<tr bgcolor="#F6F6F6"><td class="aws" colspan="2"><b>Linux</b></td><td><b>2</b></td><td><b>9 %</b></td><td><b>2</b></td><td><b>9 %</b></td><td> </td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/os/linux.png" alt='' title='' /></td><td class="aws">GNU Linux (Unknown or unspecified distribution)</td><td>2</td><td>9 %</td><td>2</td><td>9 %</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="44" height="5" /><br /><img src="/awstats-icon/other/hh.png" width="44" height="5" /><br /></td></tr>
|
||||||
|
<tr bgcolor="#F6F6F6"><td class="aws" colspan="2"><b>Windows</b></td><td><b>2</b></td><td><b>9 %</b></td><td><b>2</b></td><td><b>9 %</b></td><td> </td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/os/win7.png" alt='' title='' /></td><td class="aws"><a href="http://windows.microsoft.com/en-US/windows7/products/home/" title="Windows 7 home page [new window]" target="_blank">Windows 7</a></td><td>2</td><td>9 %</td><td>2</td><td>9 %</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="44" height="5" /><br /><img src="/awstats-icon/other/hh.png" width="44" height="5" /><br /></td></tr>
|
||||||
|
<tr bgcolor="#F6F6F6"><td class="aws" colspan="2"><b>Sonstige</b></td><td><b>4</b></td><td><b>18.1 %</b></td><td><b>4</b></td><td><b>18.1 %</b></td><td> </td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/browser/unknown.png" alt='' title='' /></td><td class="aws"><span style="color: #666688">Unbekannt</span></td><td>4</td><td>18.1 %</td><td>4</td><td>18.1 %</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="87" height="5" /><br /><img src="/awstats-icon/other/hh.png" width="87" height="5" /><br /></td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,77 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2017-11) - refererpages">
|
||||||
|
<title>Statistik für mettcalc.de (2017-11) - refererpages</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=refererpages" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.12.2017 - 00:00</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Nov 2017</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="refererpages"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Links von einer externen Seite (keine Suchmaschinen) </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>Total: 0 Unterschiedliche Seiten</th><th bgcolor="#4477DD" width="80">Seiten</th><th bgcolor="#4477DD" width="80">Prozent</th><th bgcolor="#66DDEE" width="80">Zugriffe</th><th bgcolor="#66DDEE" width="80">Prozent</th></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,77 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2017-11) - refererse">
|
||||||
|
<title>Statistik für mettcalc.de (2017-11) - refererse</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=refererse" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.12.2017 - 00:00</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Nov 2017</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="refererse"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Links von einer Internet-Suchmaschine </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>0 Suchmaschinen</th><th bgcolor="#4477DD" width="80">Seiten</th><th bgcolor="#4477DD" width="80">Prozent</th><th bgcolor="#66DDEE" width="80">Zugriffe</th><th bgcolor="#66DDEE" width="80">Prozent</th></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,63 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2017-11) - session">
|
||||||
|
<title>Statistik für mettcalc.de (2017-11) - session</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=session" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.12.2017 - 00:00</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Nov 2017</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
@@ -0,0 +1,77 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2017-11) - unknownbrowser">
|
||||||
|
<title>Statistik für mettcalc.de (2017-11) - unknownbrowser</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=unknownbrowser" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.12.2017 - 00:00</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Nov 2017</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="unknownbrowser"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Unbekannter Browser </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>User agent (0)</th><th>Letzter Zugriff</th></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,81 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2017-11) - unknownip">
|
||||||
|
<title>Statistik für mettcalc.de (2017-11) - unknownip</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=unknownip" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.12.2017 - 00:00</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Nov 2017</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="unknownip"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Unaufgelöste IP Adressen </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>3 Unbekannte (IP konnte nicht aufgelöst werden )</th><th bgcolor="#4477DD" width="80">Seiten</th><th bgcolor="#66DDEE" width="80">Zugriffe</th><th class="datasize" bgcolor="#2EA495" width="80">Bytes</th><th width="120">Letzter Zugriff</th></tr>
|
||||||
|
<tr><td class="aws">38.130.169.111</td><td>1</td><td>1</td><td>4.71 KB</td><td>23.11.2017 - 22:09</td></tr>
|
||||||
|
<tr><td class="aws">38.130.168.76</td><td>1</td><td>1</td><td>4.71 KB</td><td>23.11.2017 - 22:11</td></tr>
|
||||||
|
<tr><td class="aws">38.130.178.19</td><td>1</td><td>1</td><td>4.71 KB</td><td>23.11.2017 - 22:11</td></tr>
|
||||||
|
<tr><td class="aws"><span style="color: #666688">Bekannte</span></td><td>19</td><td>19</td><td>46.57 KB</td><td> </td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,78 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2017-11) - unknownos">
|
||||||
|
<title>Statistik für mettcalc.de (2017-11) - unknownos</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=unknownos" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.12.2017 - 00:00</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Nov 2017</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="unknownos"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Unbekanntes Betriebssystem </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>User agent (1)</th><th>Letzter Zugriff</th></tr>
|
||||||
|
<tr><td class="aws">Mozilla/5.0_(compatible;_Let's_Encrypt_validation_server;__https://www.letsencrypt.org)</td><td nowrap="nowrap">23.11.2017 - 20:54</td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,82 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2017-11) - urldetail">
|
||||||
|
<title>Statistik für mettcalc.de (2017-11) - urldetail</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=urldetail" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.12.2017 - 00:00</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Nov 2017</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="urls"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Seiten-URL </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>Total: 5 Unterschiedliche Seiten</th><th bgcolor="#4477DD" width="80">Zugriffe</th><th class="datasize" bgcolor="#2EA495" width="80">durchschnitt. Größe</th><th bgcolor="#CEC2E8" width="80">Einstiegsseiten</th><th bgcolor="#C1B2E2" width="80">Exit Seiten</th><th> </th></tr>
|
||||||
|
<tr><td class="aws"><a href="http://mettcalc.de/" target="url" rel="nofollow">/</a></td><td>18</td><td>3.31 KB</td><td>17</td><td>17</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="261" height="4" /><br /><img src="/awstats-icon/other/hk.png" width="261" height="4" /><br /><img src="/awstats-icon/other/he.png" width="246" height="4" /><br /><img src="/awstats-icon/other/hx.png" width="246" height="4" /></td></tr>
|
||||||
|
<tr><td class="aws"><a href="http://mettcalc.de/.well-known/acme-challenge/OuHky0Ab32KinwMliP4MPr2kKgTm-kGpGGKbxBh-4UI" target="url" rel="nofollow">/.well-known/acme-challenge/OuHky0Ab32KinwMliP4MPr2kKgTm-kGpGGKb...</a></td><td>1</td><td>308 Bytes</td><td> </td><td> </td><td class="aws"><img src="/awstats-icon/other/hp.png" width="15" height="4" /><br /><img src="/awstats-icon/other/hk.png" width="24" height="4" /><br /><img src="/awstats-icon/other/he.png" width="1" height="4" /><br /><img src="/awstats-icon/other/hx.png" width="1" height="4" /></td></tr>
|
||||||
|
<tr><td class="aws"><a href="http://mettcalc.de/.well-known/acme-challenge/RtKCnPpwovmyDaRVwxFoX5nG79hok0WMQIo94IJ_cug" target="url" rel="nofollow">/.well-known/acme-challenge/RtKCnPpwovmyDaRVwxFoX5nG79hok0WMQIo9...</a></td><td>1</td><td>308 Bytes</td><td> </td><td>1</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="15" height="4" /><br /><img src="/awstats-icon/other/hk.png" width="24" height="4" /><br /><img src="/awstats-icon/other/he.png" width="1" height="4" /><br /><img src="/awstats-icon/other/hx.png" width="15" height="4" /></td></tr>
|
||||||
|
<tr><td class="aws"><a href="http://mettcalc.de/.well-known/acme-challenge/YzBYdk7bDnvhrXZhbMiP3qGTJc6LWU7qXoMWqFDvGJ8" target="url" rel="nofollow">/.well-known/acme-challenge/YzBYdk7bDnvhrXZhbMiP3qGTJc6LWU7qXoMW...</a></td><td>1</td><td>310 Bytes</td><td>1</td><td> </td><td class="aws"><img src="/awstats-icon/other/hp.png" width="15" height="4" /><br /><img src="/awstats-icon/other/hk.png" width="24" height="4" /><br /><img src="/awstats-icon/other/he.png" width="15" height="4" /><br /><img src="/awstats-icon/other/hx.png" width="1" height="4" /></td></tr>
|
||||||
|
<tr><td class="aws"><a href="http://mettcalc.de/.well-known/acme-challenge/eB0b8zrvp5KOf7JD7pssScJZox5L0_gLZFWHu0ngI3o" target="url" rel="nofollow">/.well-known/acme-challenge/eB0b8zrvp5KOf7JD7pssScJZox5L0_gLZFWH...</a></td><td>1</td><td>310 Bytes</td><td> </td><td> </td><td class="aws"><img src="/awstats-icon/other/hp.png" width="15" height="4" /><br /><img src="/awstats-icon/other/hk.png" width="24" height="4" /><br /><img src="/awstats-icon/other/he.png" width="1" height="4" /><br /><img src="/awstats-icon/other/hx.png" width="1" height="4" /></td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,80 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2017-11) - urlentry">
|
||||||
|
<title>Statistik für mettcalc.de (2017-11) - urlentry</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=urlentry" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.12.2017 - 00:00</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Nov 2017</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="urls"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Einstiegsseiten </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>Total: 2 Unterschiedliche Seiten</th><th bgcolor="#4477DD" width="80">Zugriffe</th><th class="datasize" bgcolor="#2EA495" width="80">durchschnitt. Größe</th><th bgcolor="#CEC2E8" width="80">Einstiegsseiten</th><th bgcolor="#C1B2E2" width="80">Exit Seiten</th><th> </th></tr>
|
||||||
|
<tr><td class="aws"><a href="http://mettcalc.de/" target="url" rel="nofollow">/</a></td><td>18</td><td>3.31 KB</td><td>17</td><td>17</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="261" height="4" /><br /><img src="/awstats-icon/other/hk.png" width="261" height="4" /><br /><img src="/awstats-icon/other/he.png" width="246" height="4" /><br /><img src="/awstats-icon/other/hx.png" width="246" height="4" /></td></tr>
|
||||||
|
<tr><td class="aws"><a href="http://mettcalc.de/.well-known/acme-challenge/YzBYdk7bDnvhrXZhbMiP3qGTJc6LWU7qXoMWqFDvGJ8" target="url" rel="nofollow">/.well-known/acme-challenge/YzBYdk7bDnvhrXZhbMiP3qGTJc6LWU7qXoMW...</a></td><td>1</td><td>310 Bytes</td><td>1</td><td> </td><td class="aws"><img src="/awstats-icon/other/hp.png" width="15" height="4" /><br /><img src="/awstats-icon/other/hk.png" width="24" height="4" /><br /><img src="/awstats-icon/other/he.png" width="15" height="4" /><br /><img src="/awstats-icon/other/hx.png" width="1" height="4" /></td></tr>
|
||||||
|
<tr><td class="aws"><span style="color: #666688">Sonstige</span></td><td>3</td><td>308 Bytes</td><td> </td><td>1</td><td> </td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,80 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2017-11) - urlexit">
|
||||||
|
<title>Statistik für mettcalc.de (2017-11) - urlexit</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=urlexit" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.12.2017 - 00:00</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Nov 2017</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="urls"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Exit Seiten </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>Total: 2 Unterschiedliche Seiten</th><th bgcolor="#4477DD" width="80">Zugriffe</th><th class="datasize" bgcolor="#2EA495" width="80">durchschnitt. Größe</th><th bgcolor="#CEC2E8" width="80">Einstiegsseiten</th><th bgcolor="#C1B2E2" width="80">Exit Seiten</th><th> </th></tr>
|
||||||
|
<tr><td class="aws"><a href="http://mettcalc.de/" target="url" rel="nofollow">/</a></td><td>18</td><td>3.31 KB</td><td>17</td><td>17</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="261" height="4" /><br /><img src="/awstats-icon/other/hk.png" width="261" height="4" /><br /><img src="/awstats-icon/other/he.png" width="246" height="4" /><br /><img src="/awstats-icon/other/hx.png" width="246" height="4" /></td></tr>
|
||||||
|
<tr><td class="aws"><a href="http://mettcalc.de/.well-known/acme-challenge/RtKCnPpwovmyDaRVwxFoX5nG79hok0WMQIo94IJ_cug" target="url" rel="nofollow">/.well-known/acme-challenge/RtKCnPpwovmyDaRVwxFoX5nG79hok0WMQIo9...</a></td><td>1</td><td>308 Bytes</td><td> </td><td>1</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="15" height="4" /><br /><img src="/awstats-icon/other/hk.png" width="24" height="4" /><br /><img src="/awstats-icon/other/he.png" width="1" height="4" /><br /><img src="/awstats-icon/other/hx.png" width="15" height="4" /></td></tr>
|
||||||
|
<tr><td class="aws"><span style="color: #666688">Sonstige</span></td><td>3</td><td>309 Bytes</td><td>1</td><td> </td><td> </td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,638 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2017-12) - main">
|
||||||
|
<title>Statistik für mettcalc.de (2017-12) - main</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.01.2018 - 00:00</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Dez 2017</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="awsm" width="150" valign="top"><b>Wann:</b></td>
|
||||||
|
<td class="awsm"><a href="#month">Monatliche Historie</a> <a href="#daysofmonth">Tage im Monat</a> <a href="#daysofweek">Wochentage</a> <a href="#hours">Stunden (Serverzeit)</a> </td></tr>
|
||||||
|
<tr><td class="awsm" width="150" valign="top"><b>Wer:</b></td>
|
||||||
|
<td class="awsm"><a href="#countries">Länder</a> <a href="awstats.mettcalc.de.alldomains.html" target="awstatsbis">Gesamte Liste</a>
|
||||||
|
<a href="#visitors">Rechner</a> <a href="awstats.mettcalc.de.allhosts.html" target="awstatsbis">Gesamte Liste</a>
|
||||||
|
<a href="awstats.mettcalc.de.lasthosts.html" target="awstatsbis">Letzter Zugriff</a>
|
||||||
|
<a href="awstats.mettcalc.de.unknownip.html" target="awstatsbis">Unaufgelöste IP Adressen</a>
|
||||||
|
<a href="#robots">Robots/Spiders (Suchmaschinen)</a> <a href="awstats.mettcalc.de.allrobots.html" target="awstatsbis">Gesamte Liste</a>
|
||||||
|
<a href="awstats.mettcalc.de.lastrobots.html" target="awstatsbis">Letzter Zugriff</a>
|
||||||
|
</td></tr>
|
||||||
|
<tr><td class="awsm" valign="top"><b>Navigation:</b></td>
|
||||||
|
<td class="awsm"><a href="#sessions">Aufenthaltsdauer</a> <a href="#filetypes">Datei-Typen</a> <a href="#downloads">Downloads</a> <a href="awstats.mettcalc.de.downloads.html" target="awstatsbis">Gesamte Liste</a>
|
||||||
|
<a href="#urls">Zugriffe</a>
|
||||||
|
<a href="awstats.mettcalc.de.urldetail.html" target="awstatsbis">Gesamte Liste</a>
|
||||||
|
<a href="awstats.mettcalc.de.urlentry.html" target="awstatsbis">Einstiegsseiten</a>
|
||||||
|
<a href="awstats.mettcalc.de.urlexit.html" target="awstatsbis">Exit Seiten</a>
|
||||||
|
<a href="#os">Betriebssysteme</a> <a href="awstats.mettcalc.de.osdetail.html" target="awstatsbis">Versionen</a>
|
||||||
|
<a href="awstats.mettcalc.de.unknownos.html" target="awstatsbis">Unbekannt</a>
|
||||||
|
<a href="#browsers">Browser</a> <a href="awstats.mettcalc.de.browserdetail.html" target="awstatsbis">Versionen</a>
|
||||||
|
<a href="awstats.mettcalc.de.unknownbrowser.html" target="awstatsbis">Unbekannt</a>
|
||||||
|
</td></tr>
|
||||||
|
<tr><td class="awsm" width="150" valign="top"><b>Verweise:</b></td>
|
||||||
|
<td class="awsm"><a href="#referer">Herkunft</a> <a href="awstats.mettcalc.de.refererse.html" target="awstatsbis">Suchmaschinen</a>
|
||||||
|
<a href="awstats.mettcalc.de.refererpages.html" target="awstatsbis">Websites</a>
|
||||||
|
<a href="#keys">Häufigkeit</a> <a href="awstats.mettcalc.de.keyphrases.html" target="awstatsbis">Suchausdrücke</a>
|
||||||
|
<a href="awstats.mettcalc.de.keywords.html" target="awstatsbis">Suchbegriffe</a>
|
||||||
|
</td></tr>
|
||||||
|
<tr><td class="awsm" width="150" valign="top"><b>Sonstige:</b></td>
|
||||||
|
<td class="awsm"><a href="#misc">Verschiedenes</a> <a href="#errors">HTTP Fehlercodes</a> <a href="awstats.mettcalc.de.errors400.html" target="awstatsbis">Fehlerhafte Zugriffe (400)</a>
|
||||||
|
<a href="awstats.mettcalc.de.errors403.html" target="awstatsbis">Fehlerhafte Zugriffe (403)</a>
|
||||||
|
<a href="awstats.mettcalc.de.errors404.html" target="awstatsbis">Fehlerhafte Zugriffe (404)</a>
|
||||||
|
</td></tr>
|
||||||
|
</table>
|
||||||
|
<br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Zusammenfassung </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><td class="aws"><b>Zeitraum</b></td><td class="aws" colspan="5">
|
||||||
|
Monat Dez 2017</td></tr>
|
||||||
|
<tr bgcolor="#ECECEC"><td class="aws"><b>Erster Zugriff</b></td>
|
||||||
|
<td class="aws" colspan="5">01.12.2017 - 23:14</td></tr>
|
||||||
|
<tr bgcolor="#ECECEC"><td class="aws"><b>Letzter Zugriff</b></td>
|
||||||
|
<td class="aws" colspan="5">31.12.2017 - 12:49</td>
|
||||||
|
</tr>
|
||||||
|
<tr><td bgcolor="#CCCCDD"> </td><td width="17%" bgcolor="#FFAA66">Unterschiedliche Besucher</td><td width="17%" bgcolor="#F4F090">Anzahl der Besuche</td><td width="17%" bgcolor="#4477DD">Seiten</td><td width="17%" bgcolor="#66DDEE">Zugriffe</td><td width="17%" bgcolor="#2EA495">Bytes</td></tr>
|
||||||
|
<tr><td class="aws">gesehener Traffic *</td><td><b>18</b><br /> </td><td><b>57</b><br />(3.16 Besuche/Besucher)</td><td><b>64</b><br />(1.12 Seiten/Besuch)</td><td><b>64</b><br />(1.12 Zugriffe/Besuch)</td><td><b>311.82 KB</b><br />(5.47 KB/Besuch)</td></tr>
|
||||||
|
<tr><td class="aws">nicht gesehener Traffic *</td><td colspan="2"> <br /> </td>
|
||||||
|
<td><b>2.807</b></td><td><b>2.926</b></td><td><b>17.83 MB</b></td></tr>
|
||||||
|
</table></td></tr></table><span style="font: 11px verdana, arial, helvetica;">* Nicht gesehener Traffic ist Traffic, welcher von Robots, Würmern oder Antworten mit speziellem HTTP-Statuscode</span><br />
|
||||||
|
<br />
|
||||||
|
|
||||||
|
<a name="month"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Monatliche Historie </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td align="center">
|
||||||
|
<center>
|
||||||
|
<table>
|
||||||
|
<tr valign="bottom"><td> </td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vu.png" height="1" width="6" alt='Unterschiedliche Besucher: 0' title='Unterschiedliche Besucher: 0' /><img align="bottom" src="/awstats-icon/other/vv.png" height="1" width="6" alt='Anzahl der Besuche: 0' title='Anzahl der Besuche: 0' /><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="6" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="6" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="6" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vu.png" height="1" width="6" alt='Unterschiedliche Besucher: 0' title='Unterschiedliche Besucher: 0' /><img align="bottom" src="/awstats-icon/other/vv.png" height="1" width="6" alt='Anzahl der Besuche: 0' title='Anzahl der Besuche: 0' /><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="6" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="6" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="6" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vu.png" height="1" width="6" alt='Unterschiedliche Besucher: 0' title='Unterschiedliche Besucher: 0' /><img align="bottom" src="/awstats-icon/other/vv.png" height="1" width="6" alt='Anzahl der Besuche: 0' title='Anzahl der Besuche: 0' /><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="6" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="6" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="6" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vu.png" height="1" width="6" alt='Unterschiedliche Besucher: 0' title='Unterschiedliche Besucher: 0' /><img align="bottom" src="/awstats-icon/other/vv.png" height="1" width="6" alt='Anzahl der Besuche: 0' title='Anzahl der Besuche: 0' /><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="6" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="6" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="6" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vu.png" height="1" width="6" alt='Unterschiedliche Besucher: 0' title='Unterschiedliche Besucher: 0' /><img align="bottom" src="/awstats-icon/other/vv.png" height="1" width="6" alt='Anzahl der Besuche: 0' title='Anzahl der Besuche: 0' /><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="6" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="6" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="6" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vu.png" height="1" width="6" alt='Unterschiedliche Besucher: 0' title='Unterschiedliche Besucher: 0' /><img align="bottom" src="/awstats-icon/other/vv.png" height="1" width="6" alt='Anzahl der Besuche: 0' title='Anzahl der Besuche: 0' /><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="6" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="6" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="6" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vu.png" height="1" width="6" alt='Unterschiedliche Besucher: 0' title='Unterschiedliche Besucher: 0' /><img align="bottom" src="/awstats-icon/other/vv.png" height="1" width="6" alt='Anzahl der Besuche: 0' title='Anzahl der Besuche: 0' /><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="6" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="6" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="6" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vu.png" height="1" width="6" alt='Unterschiedliche Besucher: 0' title='Unterschiedliche Besucher: 0' /><img align="bottom" src="/awstats-icon/other/vv.png" height="1" width="6" alt='Anzahl der Besuche: 0' title='Anzahl der Besuche: 0' /><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="6" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="6" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="6" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vu.png" height="1" width="6" alt='Unterschiedliche Besucher: 0' title='Unterschiedliche Besucher: 0' /><img align="bottom" src="/awstats-icon/other/vv.png" height="1" width="6" alt='Anzahl der Besuche: 0' title='Anzahl der Besuche: 0' /><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="6" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="6" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="6" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vu.png" height="1" width="6" alt='Unterschiedliche Besucher: 0' title='Unterschiedliche Besucher: 0' /><img align="bottom" src="/awstats-icon/other/vv.png" height="1" width="6" alt='Anzahl der Besuche: 0' title='Anzahl der Besuche: 0' /><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="6" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="6" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="6" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vu.png" height="18" width="6" alt='Unterschiedliche Besucher: 11' title='Unterschiedliche Besucher: 11' /><img align="bottom" src="/awstats-icon/other/vv.png" height="29" width="6" alt='Anzahl der Besuche: 18' title='Anzahl der Besuche: 18' /><img align="bottom" src="/awstats-icon/other/vp.png" height="31" width="6" alt='Seiten: 22' title='Seiten: 22' /><img align="bottom" src="/awstats-icon/other/vh.png" height="31" width="6" alt='Zugriffe: 22' title='Zugriffe: 22' /><img align="bottom" src="/awstats-icon/other/vk.png" height="18" width="6" alt='Bytes: 60.70 KB' title='Bytes: 60.70 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vu.png" height="29" width="6" alt='Unterschiedliche Besucher: 18' title='Unterschiedliche Besucher: 18' /><img align="bottom" src="/awstats-icon/other/vv.png" height="91" width="6" alt='Anzahl der Besuche: 57' title='Anzahl der Besuche: 57' /><img align="bottom" src="/awstats-icon/other/vp.png" height="91" width="6" alt='Seiten: 64' title='Seiten: 64' /><img align="bottom" src="/awstats-icon/other/vh.png" height="91" width="6" alt='Zugriffe: 64' title='Zugriffe: 64' /><img align="bottom" src="/awstats-icon/other/vk.png" height="91" width="6" alt='Bytes: 311.82 KB' title='Bytes: 311.82 KB' /></td>
|
||||||
|
<td> </td></tr>
|
||||||
|
<tr valign="middle"><td> </td><td>Jan<br />2017</td><td>Feb<br />2017</td><td>März<br />2017</td><td>Apr<br />2017</td><td>Mai<br />2017</td><td>Juni<br />2017</td><td>Juli<br />2017</td><td>Aug<br />2017</td><td>Sep<br />2017</td><td>Okt<br />2017</td><td>Nov<br />2017</td><td>Dez<br />2017</td><td> </td></tr>
|
||||||
|
</table>
|
||||||
|
<br />
|
||||||
|
<table>
|
||||||
|
<tr><td width="80" bgcolor="#ECECEC">Monat</td><td width="80" bgcolor="#FFAA66">Unterschiedliche Besucher</td><td width="80" bgcolor="#F4F090">Anzahl der Besuche</td><td width="80" bgcolor="#4477DD">Seiten</td><td width="80" bgcolor="#66DDEE">Zugriffe</td><td width="80" bgcolor="#2EA495">Bytes</td></tr>
|
||||||
|
<tr><td>Jan 2017</td><td>0</td><td>0</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr><td>Feb 2017</td><td>0</td><td>0</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr><td>März 2017</td><td>0</td><td>0</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr><td>Apr 2017</td><td>0</td><td>0</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr><td>Mai 2017</td><td>0</td><td>0</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr><td>Juni 2017</td><td>0</td><td>0</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr><td>Juli 2017</td><td>0</td><td>0</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr><td>Aug 2017</td><td>0</td><td>0</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr><td>Sep 2017</td><td>0</td><td>0</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr><td>Okt 2017</td><td>0</td><td>0</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr><td>Nov 2017</td><td>11</td><td>18</td><td>22</td><td>22</td><td>60.70 KB</td></tr>
|
||||||
|
<tr><td>Dez 2017</td><td>18</td><td>57</td><td>64</td><td>64</td><td>311.82 KB</td></tr>
|
||||||
|
<tr><td bgcolor="#ECECEC">Total</td><td bgcolor="#ECECEC">29</td><td bgcolor="#ECECEC">75</td><td bgcolor="#ECECEC">86</td><td bgcolor="#ECECEC">86</td><td bgcolor="#ECECEC">372.52 KB</td></tr>
|
||||||
|
</table>
|
||||||
|
<br />
|
||||||
|
</center>
|
||||||
|
</td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
|
||||||
|
<a name="when"> </a>
|
||||||
|
|
||||||
|
<a name="daysofmonth"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Tage im Monat </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td align="center">
|
||||||
|
<center>
|
||||||
|
<table>
|
||||||
|
<tr valign="bottom">
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="16" width="4" alt='Anzahl der Besuche: 1' title='Anzahl der Besuche: 1' /><img align="bottom" src="/awstats-icon/other/vp.png" height="13" width="4" alt='Seiten: 1' title='Seiten: 1' /><img align="bottom" src="/awstats-icon/other/vh.png" height="13" width="4" alt='Zugriffe: 1' title='Zugriffe: 1' /><img align="bottom" src="/awstats-icon/other/vk.png" height="12" width="4" alt='Bytes: 4.45 KB' title='Bytes: 4.45 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="1" width="4" alt='Anzahl der Besuche: 0' title='Anzahl der Besuche: 0' /><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="4" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="4" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="4" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="16" width="4" alt='Anzahl der Besuche: 1' title='Anzahl der Besuche: 1' /><img align="bottom" src="/awstats-icon/other/vp.png" height="26" width="4" alt='Seiten: 2' title='Seiten: 2' /><img align="bottom" src="/awstats-icon/other/vh.png" height="26" width="4" alt='Zugriffe: 2' title='Zugriffe: 2' /><img align="bottom" src="/awstats-icon/other/vk.png" height="7" width="4" alt='Bytes: 2.33 KB' title='Bytes: 2.33 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="1" width="4" alt='Anzahl der Besuche: 0' title='Anzahl der Besuche: 0' /><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="4" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="4" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="4" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="91" width="4" alt='Anzahl der Besuche: 6' title='Anzahl der Besuche: 6' /><img align="bottom" src="/awstats-icon/other/vp.png" height="91" width="4" alt='Seiten: 7' title='Seiten: 7' /><img align="bottom" src="/awstats-icon/other/vh.png" height="91" width="4" alt='Zugriffe: 7' title='Zugriffe: 7' /><img align="bottom" src="/awstats-icon/other/vk.png" height="91" width="4" alt='Bytes: 33.64 KB' title='Bytes: 33.64 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="1" width="4" alt='Anzahl der Besuche: 0' title='Anzahl der Besuche: 0' /><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="4" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="4" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="4" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="31" width="4" alt='Anzahl der Besuche: 2' title='Anzahl der Besuche: 2' /><img align="bottom" src="/awstats-icon/other/vp.png" height="39" width="4" alt='Seiten: 3' title='Seiten: 3' /><img align="bottom" src="/awstats-icon/other/vh.png" height="39" width="4" alt='Zugriffe: 3' title='Zugriffe: 3' /><img align="bottom" src="/awstats-icon/other/vk.png" height="40" width="4" alt='Bytes: 14.87 KB' title='Bytes: 14.87 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="31" width="4" alt='Anzahl der Besuche: 2' title='Anzahl der Besuche: 2' /><img align="bottom" src="/awstats-icon/other/vp.png" height="52" width="4" alt='Seiten: 4' title='Seiten: 4' /><img align="bottom" src="/awstats-icon/other/vh.png" height="52" width="4" alt='Zugriffe: 4' title='Zugriffe: 4' /><img align="bottom" src="/awstats-icon/other/vk.png" height="52" width="4" alt='Bytes: 19.32 KB' title='Bytes: 19.32 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="31" width="4" alt='Anzahl der Besuche: 2' title='Anzahl der Besuche: 2' /><img align="bottom" src="/awstats-icon/other/vp.png" height="39" width="4" alt='Seiten: 3' title='Seiten: 3' /><img align="bottom" src="/awstats-icon/other/vh.png" height="39" width="4" alt='Zugriffe: 3' title='Zugriffe: 3' /><img align="bottom" src="/awstats-icon/other/vk.png" height="41" width="4" alt='Bytes: 15.32 KB' title='Bytes: 15.32 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="16" width="4" alt='Anzahl der Besuche: 1' title='Anzahl der Besuche: 1' /><img align="bottom" src="/awstats-icon/other/vp.png" height="26" width="4" alt='Seiten: 2' title='Seiten: 2' /><img align="bottom" src="/awstats-icon/other/vh.png" height="26" width="4" alt='Zugriffe: 2' title='Zugriffe: 2' /><img align="bottom" src="/awstats-icon/other/vk.png" height="28" width="4" alt='Bytes: 10.34 KB' title='Bytes: 10.34 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="46" width="4" alt='Anzahl der Besuche: 3' title='Anzahl der Besuche: 3' /><img align="bottom" src="/awstats-icon/other/vp.png" height="39" width="4" alt='Seiten: 3' title='Seiten: 3' /><img align="bottom" src="/awstats-icon/other/vh.png" height="39" width="4" alt='Zugriffe: 3' title='Zugriffe: 3' /><img align="bottom" src="/awstats-icon/other/vk.png" height="44" width="4" alt='Bytes: 16.08 KB' title='Bytes: 16.08 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="31" width="4" alt='Anzahl der Besuche: 2' title='Anzahl der Besuche: 2' /><img align="bottom" src="/awstats-icon/other/vp.png" height="26" width="4" alt='Seiten: 2' title='Seiten: 2' /><img align="bottom" src="/awstats-icon/other/vh.png" height="26" width="4" alt='Zugriffe: 2' title='Zugriffe: 2' /><img align="bottom" src="/awstats-icon/other/vk.png" height="28" width="4" alt='Bytes: 10.42 KB' title='Bytes: 10.42 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="31" width="4" alt='Anzahl der Besuche: 2' title='Anzahl der Besuche: 2' /><img align="bottom" src="/awstats-icon/other/vp.png" height="26" width="4" alt='Seiten: 2' title='Seiten: 2' /><img align="bottom" src="/awstats-icon/other/vh.png" height="26" width="4" alt='Zugriffe: 2' title='Zugriffe: 2' /><img align="bottom" src="/awstats-icon/other/vk.png" height="28" width="4" alt='Bytes: 10.42 KB' title='Bytes: 10.42 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="1" width="4" alt='Anzahl der Besuche: 0' title='Anzahl der Besuche: 0' /><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="4" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="4" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="4" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="31" width="4" alt='Anzahl der Besuche: 2' title='Anzahl der Besuche: 2' /><img align="bottom" src="/awstats-icon/other/vp.png" height="26" width="4" alt='Seiten: 2' title='Seiten: 2' /><img align="bottom" src="/awstats-icon/other/vh.png" height="26" width="4" alt='Zugriffe: 2' title='Zugriffe: 2' /><img align="bottom" src="/awstats-icon/other/vk.png" height="28" width="4" alt='Bytes: 10.42 KB' title='Bytes: 10.42 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="31" width="4" alt='Anzahl der Besuche: 2' title='Anzahl der Besuche: 2' /><img align="bottom" src="/awstats-icon/other/vp.png" height="26" width="4" alt='Seiten: 2' title='Seiten: 2' /><img align="bottom" src="/awstats-icon/other/vh.png" height="26" width="4" alt='Zugriffe: 2' title='Zugriffe: 2' /><img align="bottom" src="/awstats-icon/other/vk.png" height="28" width="4" alt='Bytes: 10.42 KB' title='Bytes: 10.42 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="31" width="4" alt='Anzahl der Besuche: 2' title='Anzahl der Besuche: 2' /><img align="bottom" src="/awstats-icon/other/vp.png" height="26" width="4" alt='Seiten: 2' title='Seiten: 2' /><img align="bottom" src="/awstats-icon/other/vh.png" height="26" width="4" alt='Zugriffe: 2' title='Zugriffe: 2' /><img align="bottom" src="/awstats-icon/other/vk.png" height="28" width="4" alt='Bytes: 10.42 KB' title='Bytes: 10.42 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="1" width="4" alt='Anzahl der Besuche: 0' title='Anzahl der Besuche: 0' /><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="4" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="4" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="4" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="46" width="4" alt='Anzahl der Besuche: 3' title='Anzahl der Besuche: 3' /><img align="bottom" src="/awstats-icon/other/vp.png" height="39" width="4" alt='Seiten: 3' title='Seiten: 3' /><img align="bottom" src="/awstats-icon/other/vh.png" height="39" width="4" alt='Zugriffe: 3' title='Zugriffe: 3' /><img align="bottom" src="/awstats-icon/other/vk.png" height="42" width="4" alt='Bytes: 15.64 KB' title='Bytes: 15.64 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="31" width="4" alt='Anzahl der Besuche: 2' title='Anzahl der Besuche: 2' /><img align="bottom" src="/awstats-icon/other/vp.png" height="26" width="4" alt='Seiten: 2' title='Seiten: 2' /><img align="bottom" src="/awstats-icon/other/vh.png" height="26" width="4" alt='Zugriffe: 2' title='Zugriffe: 2' /><img align="bottom" src="/awstats-icon/other/vk.png" height="18" width="4" alt='Bytes: 6.46 KB' title='Bytes: 6.46 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="91" width="4" alt='Anzahl der Besuche: 6' title='Anzahl der Besuche: 6' /><img align="bottom" src="/awstats-icon/other/vp.png" height="78" width="4" alt='Seiten: 6' title='Seiten: 6' /><img align="bottom" src="/awstats-icon/other/vh.png" height="78" width="4" alt='Zugriffe: 6' title='Zugriffe: 6' /><img align="bottom" src="/awstats-icon/other/vk.png" height="84" width="4" alt='Bytes: 31.17 KB' title='Bytes: 31.17 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="16" width="4" alt='Anzahl der Besuche: 1' title='Anzahl der Besuche: 1' /><img align="bottom" src="/awstats-icon/other/vp.png" height="13" width="4" alt='Seiten: 1' title='Seiten: 1' /><img align="bottom" src="/awstats-icon/other/vh.png" height="13" width="4" alt='Zugriffe: 1' title='Zugriffe: 1' /><img align="bottom" src="/awstats-icon/other/vk.png" height="14" width="4" alt='Bytes: 5.21 KB' title='Bytes: 5.21 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="31" width="4" alt='Anzahl der Besuche: 2' title='Anzahl der Besuche: 2' /><img align="bottom" src="/awstats-icon/other/vp.png" height="26" width="4" alt='Seiten: 2' title='Seiten: 2' /><img align="bottom" src="/awstats-icon/other/vh.png" height="26" width="4" alt='Zugriffe: 2' title='Zugriffe: 2' /><img align="bottom" src="/awstats-icon/other/vk.png" height="28" width="4" alt='Bytes: 10.42 KB' title='Bytes: 10.42 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="31" width="4" alt='Anzahl der Besuche: 2' title='Anzahl der Besuche: 2' /><img align="bottom" src="/awstats-icon/other/vp.png" height="26" width="4" alt='Seiten: 2' title='Seiten: 2' /><img align="bottom" src="/awstats-icon/other/vh.png" height="26" width="4" alt='Zugriffe: 2' title='Zugriffe: 2' /><img align="bottom" src="/awstats-icon/other/vk.png" height="28" width="4" alt='Bytes: 10.42 KB' title='Bytes: 10.42 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="1" width="4" alt='Anzahl der Besuche: 0' title='Anzahl der Besuche: 0' /><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="4" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="4" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="4" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="31" width="4" alt='Anzahl der Besuche: 2' title='Anzahl der Besuche: 2' /><img align="bottom" src="/awstats-icon/other/vp.png" height="26" width="4" alt='Seiten: 2' title='Seiten: 2' /><img align="bottom" src="/awstats-icon/other/vh.png" height="26" width="4" alt='Zugriffe: 2' title='Zugriffe: 2' /><img align="bottom" src="/awstats-icon/other/vk.png" height="28" width="4" alt='Bytes: 10.10 KB' title='Bytes: 10.10 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="16" width="4" alt='Anzahl der Besuche: 1' title='Anzahl der Besuche: 1' /><img align="bottom" src="/awstats-icon/other/vp.png" height="13" width="4" alt='Seiten: 1' title='Seiten: 1' /><img align="bottom" src="/awstats-icon/other/vh.png" height="13" width="4" alt='Zugriffe: 1' title='Zugriffe: 1' /><img align="bottom" src="/awstats-icon/other/vk.png" height="14" width="4" alt='Bytes: 5.21 KB' title='Bytes: 5.21 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="46" width="4" alt='Anzahl der Besuche: 3' title='Anzahl der Besuche: 3' /><img align="bottom" src="/awstats-icon/other/vp.png" height="39" width="4" alt='Seiten: 3' title='Seiten: 3' /><img align="bottom" src="/awstats-icon/other/vh.png" height="39" width="4" alt='Zugriffe: 3' title='Zugriffe: 3' /><img align="bottom" src="/awstats-icon/other/vk.png" height="38" width="4" alt='Bytes: 14.10 KB' title='Bytes: 14.10 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="46" width="4" alt='Anzahl der Besuche: 3' title='Anzahl der Besuche: 3' /><img align="bottom" src="/awstats-icon/other/vp.png" height="39" width="4" alt='Seiten: 3' title='Seiten: 3' /><img align="bottom" src="/awstats-icon/other/vh.png" height="39" width="4" alt='Zugriffe: 3' title='Zugriffe: 3' /><img align="bottom" src="/awstats-icon/other/vk.png" height="38" width="4" alt='Bytes: 14.10 KB' title='Bytes: 14.10 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="31" width="4" alt='Anzahl der Besuche: 2' title='Anzahl der Besuche: 2' /><img align="bottom" src="/awstats-icon/other/vp.png" height="26" width="4" alt='Seiten: 2' title='Seiten: 2' /><img align="bottom" src="/awstats-icon/other/vh.png" height="26" width="4" alt='Zugriffe: 2' title='Zugriffe: 2' /><img align="bottom" src="/awstats-icon/other/vk.png" height="28" width="4" alt='Bytes: 10.10 KB' title='Bytes: 10.10 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="31" width="4" alt='Anzahl der Besuche: 2' title='Anzahl der Besuche: 2' /><img align="bottom" src="/awstats-icon/other/vp.png" height="26" width="4" alt='Seiten: 2' title='Seiten: 2' /><img align="bottom" src="/awstats-icon/other/vh.png" height="26" width="4" alt='Zugriffe: 2' title='Zugriffe: 2' /><img align="bottom" src="/awstats-icon/other/vk.png" height="28" width="4" alt='Bytes: 10.42 KB' title='Bytes: 10.42 KB' /></td>
|
||||||
|
<td> </td><td><img align="bottom" src="/awstats-icon/other/vv.png" height="28" width="4" alt='Anzahl der Besuche: 1.84' title='Anzahl der Besuche: 1.84' /><img align="bottom" src="/awstats-icon/other/vp.png" height="27" width="4" alt='Seiten: 2.06' title='Seiten: 2.06' /><img align="bottom" src="/awstats-icon/other/vh.png" height="27" width="4" alt='Zugriffe: 2.06' title='Zugriffe: 2.06' /><img align="bottom" src="/awstats-icon/other/vk.png" height="27" width="4" alt='Bytes: 10300.13' title='Bytes: 10300.13' /></td>
|
||||||
|
</tr>
|
||||||
|
<tr valign="middle"><td>01<br /><span style="font-size: 9px;">Dez</span></td>
|
||||||
|
<td bgcolor="#EAEAEA">02<br /><span style="font-size: 9px;">Dez</span></td>
|
||||||
|
<td bgcolor="#EAEAEA">03<br /><span style="font-size: 9px;">Dez</span></td>
|
||||||
|
<td>04<br /><span style="font-size: 9px;">Dez</span></td>
|
||||||
|
<td>05<br /><span style="font-size: 9px;">Dez</span></td>
|
||||||
|
<td>06<br /><span style="font-size: 9px;">Dez</span></td>
|
||||||
|
<td>07<br /><span style="font-size: 9px;">Dez</span></td>
|
||||||
|
<td>08<br /><span style="font-size: 9px;">Dez</span></td>
|
||||||
|
<td bgcolor="#EAEAEA">09<br /><span style="font-size: 9px;">Dez</span></td>
|
||||||
|
<td bgcolor="#EAEAEA">10<br /><span style="font-size: 9px;">Dez</span></td>
|
||||||
|
<td>11<br /><span style="font-size: 9px;">Dez</span></td>
|
||||||
|
<td>12<br /><span style="font-size: 9px;">Dez</span></td>
|
||||||
|
<td>13<br /><span style="font-size: 9px;">Dez</span></td>
|
||||||
|
<td>14<br /><span style="font-size: 9px;">Dez</span></td>
|
||||||
|
<td>15<br /><span style="font-size: 9px;">Dez</span></td>
|
||||||
|
<td bgcolor="#EAEAEA">16<br /><span style="font-size: 9px;">Dez</span></td>
|
||||||
|
<td bgcolor="#EAEAEA">17<br /><span style="font-size: 9px;">Dez</span></td>
|
||||||
|
<td>18<br /><span style="font-size: 9px;">Dez</span></td>
|
||||||
|
<td>19<br /><span style="font-size: 9px;">Dez</span></td>
|
||||||
|
<td>20<br /><span style="font-size: 9px;">Dez</span></td>
|
||||||
|
<td>21<br /><span style="font-size: 9px;">Dez</span></td>
|
||||||
|
<td>22<br /><span style="font-size: 9px;">Dez</span></td>
|
||||||
|
<td bgcolor="#EAEAEA">23<br /><span style="font-size: 9px;">Dez</span></td>
|
||||||
|
<td bgcolor="#EAEAEA">24<br /><span style="font-size: 9px;">Dez</span></td>
|
||||||
|
<td>25<br /><span style="font-size: 9px;">Dez</span></td>
|
||||||
|
<td>26<br /><span style="font-size: 9px;">Dez</span></td>
|
||||||
|
<td>27<br /><span style="font-size: 9px;">Dez</span></td>
|
||||||
|
<td>28<br /><span style="font-size: 9px;">Dez</span></td>
|
||||||
|
<td>29<br /><span style="font-size: 9px;">Dez</span></td>
|
||||||
|
<td bgcolor="#EAEAEA">30<br /><span style="font-size: 9px;">Dez</span></td>
|
||||||
|
<td bgcolor="#EAEAEA">31<br /><span style="font-size: 9px;">Dez</span></td>
|
||||||
|
<td> </td><td valign="middle">Durchschnitt</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
<br />
|
||||||
|
<table>
|
||||||
|
<tr><td width="80" bgcolor="#ECECEC">Tag</td><td width="80" bgcolor="#F4F090">Anzahl der Besuche</td><td width="80" bgcolor="#4477DD">Seiten</td><td width="80" bgcolor="#66DDEE">Zugriffe</td><td width="80" bgcolor="#2EA495">Bytes</td></tr><tr><td>01.12.2017</td><td>1</td><td>1</td><td>1</td><td>4.45 KB</td></tr>
|
||||||
|
<tr bgcolor="#EAEAEA"><td>02.12.2017</td><td>0</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr bgcolor="#EAEAEA"><td>03.12.2017</td><td>1</td><td>2</td><td>2</td><td>2.33 KB</td></tr>
|
||||||
|
<tr><td>04.12.2017</td><td>0</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr><td>05.12.2017</td><td>6</td><td>7</td><td>7</td><td>33.64 KB</td></tr>
|
||||||
|
<tr><td>06.12.2017</td><td>0</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr><td>07.12.2017</td><td>2</td><td>3</td><td>3</td><td>14.87 KB</td></tr>
|
||||||
|
<tr><td>08.12.2017</td><td>2</td><td>4</td><td>4</td><td>19.32 KB</td></tr>
|
||||||
|
<tr bgcolor="#EAEAEA"><td>09.12.2017</td><td>2</td><td>3</td><td>3</td><td>15.32 KB</td></tr>
|
||||||
|
<tr bgcolor="#EAEAEA"><td>10.12.2017</td><td>1</td><td>2</td><td>2</td><td>10.34 KB</td></tr>
|
||||||
|
<tr><td>11.12.2017</td><td>3</td><td>3</td><td>3</td><td>16.08 KB</td></tr>
|
||||||
|
<tr><td>12.12.2017</td><td>2</td><td>2</td><td>2</td><td>10.42 KB</td></tr>
|
||||||
|
<tr><td>13.12.2017</td><td>2</td><td>2</td><td>2</td><td>10.42 KB</td></tr>
|
||||||
|
<tr><td>14.12.2017</td><td>0</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr><td>15.12.2017</td><td>2</td><td>2</td><td>2</td><td>10.42 KB</td></tr>
|
||||||
|
<tr bgcolor="#EAEAEA"><td>16.12.2017</td><td>2</td><td>2</td><td>2</td><td>10.42 KB</td></tr>
|
||||||
|
<tr bgcolor="#EAEAEA"><td>17.12.2017</td><td>2</td><td>2</td><td>2</td><td>10.42 KB</td></tr>
|
||||||
|
<tr><td>18.12.2017</td><td>0</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr><td>19.12.2017</td><td>3</td><td>3</td><td>3</td><td>15.64 KB</td></tr>
|
||||||
|
<tr><td>20.12.2017</td><td>2</td><td>2</td><td>2</td><td>6.46 KB</td></tr>
|
||||||
|
<tr><td>21.12.2017</td><td>6</td><td>6</td><td>6</td><td>31.17 KB</td></tr>
|
||||||
|
<tr><td>22.12.2017</td><td>1</td><td>1</td><td>1</td><td>5.21 KB</td></tr>
|
||||||
|
<tr bgcolor="#EAEAEA"><td>23.12.2017</td><td>2</td><td>2</td><td>2</td><td>10.42 KB</td></tr>
|
||||||
|
<tr bgcolor="#EAEAEA"><td>24.12.2017</td><td>2</td><td>2</td><td>2</td><td>10.42 KB</td></tr>
|
||||||
|
<tr><td>25.12.2017</td><td>0</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr><td>26.12.2017</td><td>2</td><td>2</td><td>2</td><td>10.10 KB</td></tr>
|
||||||
|
<tr><td>27.12.2017</td><td>1</td><td>1</td><td>1</td><td>5.21 KB</td></tr>
|
||||||
|
<tr><td>28.12.2017</td><td>3</td><td>3</td><td>3</td><td>14.10 KB</td></tr>
|
||||||
|
<tr><td>29.12.2017</td><td>3</td><td>3</td><td>3</td><td>14.10 KB</td></tr>
|
||||||
|
<tr bgcolor="#EAEAEA"><td>30.12.2017</td><td>2</td><td>2</td><td>2</td><td>10.10 KB</td></tr>
|
||||||
|
<tr bgcolor="#EAEAEA"><td>31.12.2017</td><td>2</td><td>2</td><td>2</td><td>10.42 KB</td></tr>
|
||||||
|
<tr bgcolor="#ECECEC"><td>Durchschnitt</td><td>1</td><td>2</td><td>2</td><td>10.06 KB</td></tr>
|
||||||
|
<tr bgcolor="#ECECEC"><td>Total</td><td>57</td><td>64</td><td>64</td><td>311.82 KB</td></tr>
|
||||||
|
</table>
|
||||||
|
<br /></center>
|
||||||
|
</td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<a name="daysofweek"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Wochentage </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td align="center"><center>
|
||||||
|
<table>
|
||||||
|
<tr valign="bottom">
|
||||||
|
<td valign="bottom"><img align="bottom" src="/awstats-icon/other/vp.png" height="20" width="6" alt='Seiten: 0.75' title='Seiten: 0.75' /><img align="bottom" src="/awstats-icon/other/vh.png" height="20" width="6" alt='Zugriffe: 0.75' title='Zugriffe: 0.75' /><img align="bottom" src="/awstats-icon/other/vk.png" height="21" width="6" alt='Bytes: 4.02 KB' title='Bytes: 4.02 KB' /></td>
|
||||||
|
<td valign="bottom"><img align="bottom" src="/awstats-icon/other/vp.png" height="91" width="6" alt='Seiten: 3.50' title='Seiten: 3.50' /><img align="bottom" src="/awstats-icon/other/vh.png" height="91" width="6" alt='Zugriffe: 3.50' title='Zugriffe: 3.50' /><img align="bottom" src="/awstats-icon/other/vk.png" height="91" width="6" alt='Bytes: 17.45 KB' title='Bytes: 17.45 KB' /></td>
|
||||||
|
<td valign="bottom"><img align="bottom" src="/awstats-icon/other/vp.png" height="33" width="6" alt='Seiten: 1.25' title='Seiten: 1.25' /><img align="bottom" src="/awstats-icon/other/vh.png" height="33" width="6" alt='Zugriffe: 1.25' title='Zugriffe: 1.25' /><img align="bottom" src="/awstats-icon/other/vk.png" height="29" width="6" alt='Bytes: 5.52 KB' title='Bytes: 5.52 KB' /></td>
|
||||||
|
<td valign="bottom"><img align="bottom" src="/awstats-icon/other/vp.png" height="78" width="6" alt='Seiten: 3' title='Seiten: 3' /><img align="bottom" src="/awstats-icon/other/vh.png" height="78" width="6" alt='Zugriffe: 3' title='Zugriffe: 3' /><img align="bottom" src="/awstats-icon/other/vk.png" height="78" width="6" alt='Bytes: 15.04 KB' title='Bytes: 15.04 KB' /></td>
|
||||||
|
<td valign="bottom"><img align="bottom" src="/awstats-icon/other/vp.png" height="57" width="6" alt='Seiten: 2.20' title='Seiten: 2.20' /><img align="bottom" src="/awstats-icon/other/vh.png" height="57" width="6" alt='Zugriffe: 2.20' title='Zugriffe: 2.20' /><img align="bottom" src="/awstats-icon/other/vk.png" height="56" width="6" alt='Bytes: 10.70 KB' title='Bytes: 10.70 KB' /></td>
|
||||||
|
<td valign="bottom"><img align="bottom" src="/awstats-icon/other/vp.png" height="47" width="6" alt='Seiten: 1.80' title='Seiten: 1.80' /><img align="bottom" src="/awstats-icon/other/vh.png" height="47" width="6" alt='Zugriffe: 1.80' title='Zugriffe: 1.80' /><img align="bottom" src="/awstats-icon/other/vk.png" height="48" width="6" alt='Bytes: 9.25 KB' title='Bytes: 9.25 KB' /></td>
|
||||||
|
<td valign="bottom"><img align="bottom" src="/awstats-icon/other/vp.png" height="52" width="6" alt='Seiten: 2' title='Seiten: 2' /><img align="bottom" src="/awstats-icon/other/vh.png" height="52" width="6" alt='Zugriffe: 2' title='Zugriffe: 2' /><img align="bottom" src="/awstats-icon/other/vk.png" height="46" width="6" alt='Bytes: 8.79 KB' title='Bytes: 8.79 KB' /></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Mo</td><td>Di</td><td>Mi</td><td>Do</td><td>Fr</td><td bgcolor="#EAEAEA">Sa</td><td bgcolor="#EAEAEA">So</td></tr>
|
||||||
|
</table>
|
||||||
|
<br />
|
||||||
|
<table>
|
||||||
|
<tr><td width="80" bgcolor="#ECECEC">Tag</td><td width="80" bgcolor="#4477DD">Seiten</td><td width="80" bgcolor="#66DDEE">Zugriffe</td><td width="80" bgcolor="#2EA495">Bytes</td></tr><tr><td>Mo</td><td>0</td><td>0</td><td>4.02 KB</td></tr>
|
||||||
|
<tr><td>Di</td><td>3</td><td>3</td><td>17.45 KB</td></tr>
|
||||||
|
<tr><td>Mi</td><td>1</td><td>1</td><td>5.52 KB</td></tr>
|
||||||
|
<tr><td>Do</td><td>3</td><td>3</td><td>15.04 KB</td></tr>
|
||||||
|
<tr><td>Fr</td><td>2</td><td>2</td><td>10.70 KB</td></tr>
|
||||||
|
<tr bgcolor="#EAEAEA"><td>Sa</td><td>1</td><td>1</td><td>9.25 KB</td></tr>
|
||||||
|
<tr bgcolor="#EAEAEA"><td>So</td><td>2</td><td>2</td><td>8.79 KB</td></tr>
|
||||||
|
</table>
|
||||||
|
<br />
|
||||||
|
</center></td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<a name="hours"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Stunden (Serverzeit) </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td align="center">
|
||||||
|
<center>
|
||||||
|
<table>
|
||||||
|
<tr valign="bottom">
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="34" width="6" alt='Seiten: 3' title='Seiten: 3' /><img align="bottom" src="/awstats-icon/other/vh.png" height="34" width="6" alt='Zugriffe: 3' title='Zugriffe: 3' /><img align="bottom" src="/awstats-icon/other/vk.png" height="36" width="6" alt='Bytes: 15.64 KB' title='Bytes: 15.64 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="34" width="6" alt='Seiten: 3' title='Seiten: 3' /><img align="bottom" src="/awstats-icon/other/vh.png" height="34" width="6" alt='Zugriffe: 3' title='Zugriffe: 3' /><img align="bottom" src="/awstats-icon/other/vk.png" height="36" width="6" alt='Bytes: 15.64 KB' title='Bytes: 15.64 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="23" width="6" alt='Seiten: 2' title='Seiten: 2' /><img align="bottom" src="/awstats-icon/other/vh.png" height="23" width="6" alt='Zugriffe: 2' title='Zugriffe: 2' /><img align="bottom" src="/awstats-icon/other/vk.png" height="24" width="6" alt='Bytes: 10.42 KB' title='Bytes: 10.42 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="23" width="6" alt='Seiten: 2' title='Seiten: 2' /><img align="bottom" src="/awstats-icon/other/vh.png" height="23" width="6" alt='Zugriffe: 2' title='Zugriffe: 2' /><img align="bottom" src="/awstats-icon/other/vk.png" height="21" width="6" alt='Bytes: 8.89 KB' title='Bytes: 8.89 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="23" width="6" alt='Seiten: 2' title='Seiten: 2' /><img align="bottom" src="/awstats-icon/other/vh.png" height="23" width="6" alt='Zugriffe: 2' title='Zugriffe: 2' /><img align="bottom" src="/awstats-icon/other/vk.png" height="22" width="6" alt='Bytes: 9.66 KB' title='Bytes: 9.66 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="6" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="6" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="6" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="34" width="6" alt='Seiten: 3' title='Seiten: 3' /><img align="bottom" src="/awstats-icon/other/vh.png" height="34" width="6" alt='Zugriffe: 3' title='Zugriffe: 3' /><img align="bottom" src="/awstats-icon/other/vk.png" height="36" width="6" alt='Bytes: 15.64 KB' title='Bytes: 15.64 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="34" width="6" alt='Seiten: 3' title='Seiten: 3' /><img align="bottom" src="/awstats-icon/other/vh.png" height="34" width="6" alt='Zugriffe: 3' title='Zugriffe: 3' /><img align="bottom" src="/awstats-icon/other/vk.png" height="34" width="6" alt='Bytes: 14.87 KB' title='Bytes: 14.87 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="12" width="6" alt='Seiten: 1' title='Seiten: 1' /><img align="bottom" src="/awstats-icon/other/vh.png" height="12" width="6" alt='Zugriffe: 1' title='Zugriffe: 1' /><img align="bottom" src="/awstats-icon/other/vk.png" height="12" width="6" alt='Bytes: 5.21 KB' title='Bytes: 5.21 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="34" width="6" alt='Seiten: 3' title='Seiten: 3' /><img align="bottom" src="/awstats-icon/other/vh.png" height="34" width="6" alt='Zugriffe: 3' title='Zugriffe: 3' /><img align="bottom" src="/awstats-icon/other/vk.png" height="36" width="6" alt='Bytes: 15.64 KB' title='Bytes: 15.64 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="34" width="6" alt='Seiten: 3' title='Seiten: 3' /><img align="bottom" src="/awstats-icon/other/vh.png" height="34" width="6" alt='Zugriffe: 3' title='Zugriffe: 3' /><img align="bottom" src="/awstats-icon/other/vk.png" height="38" width="6" alt='Bytes: 16.52 KB' title='Bytes: 16.52 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="23" width="6" alt='Seiten: 2' title='Seiten: 2' /><img align="bottom" src="/awstats-icon/other/vh.png" height="23" width="6" alt='Zugriffe: 2' title='Zugriffe: 2' /><img align="bottom" src="/awstats-icon/other/vk.png" height="25" width="6" alt='Bytes: 10.65 KB' title='Bytes: 10.65 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="91" width="6" alt='Seiten: 8' title='Seiten: 8' /><img align="bottom" src="/awstats-icon/other/vh.png" height="91" width="6" alt='Zugriffe: 8' title='Zugriffe: 8' /><img align="bottom" src="/awstats-icon/other/vk.png" height="91" width="6" alt='Bytes: 39.69 KB' title='Bytes: 39.69 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="23" width="6" alt='Seiten: 2' title='Seiten: 2' /><img align="bottom" src="/awstats-icon/other/vh.png" height="23" width="6" alt='Zugriffe: 2' title='Zugriffe: 2' /><img align="bottom" src="/awstats-icon/other/vk.png" height="24" width="6" alt='Bytes: 10.34 KB' title='Bytes: 10.34 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="34" width="6" alt='Seiten: 3' title='Seiten: 3' /><img align="bottom" src="/awstats-icon/other/vh.png" height="34" width="6" alt='Zugriffe: 3' title='Zugriffe: 3' /><img align="bottom" src="/awstats-icon/other/vk.png" height="32" width="6" alt='Bytes: 13.81 KB' title='Bytes: 13.81 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="12" width="6" alt='Seiten: 1' title='Seiten: 1' /><img align="bottom" src="/awstats-icon/other/vh.png" height="12" width="6" alt='Zugriffe: 1' title='Zugriffe: 1' /><img align="bottom" src="/awstats-icon/other/vk.png" height="11" width="6" alt='Bytes: 4.45 KB' title='Bytes: 4.45 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="6" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="6" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="6" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="34" width="6" alt='Seiten: 3' title='Seiten: 3' /><img align="bottom" src="/awstats-icon/other/vh.png" height="34" width="6" alt='Zugriffe: 3' title='Zugriffe: 3' /><img align="bottom" src="/awstats-icon/other/vk.png" height="27" width="6" alt='Bytes: 11.59 KB' title='Bytes: 11.59 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="46" width="6" alt='Seiten: 4' title='Seiten: 4' /><img align="bottom" src="/awstats-icon/other/vh.png" height="46" width="6" alt='Zugriffe: 4' title='Zugriffe: 4' /><img align="bottom" src="/awstats-icon/other/vk.png" height="39" width="6" alt='Bytes: 16.80 KB' title='Bytes: 16.80 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="34" width="6" alt='Seiten: 3' title='Seiten: 3' /><img align="bottom" src="/awstats-icon/other/vh.png" height="34" width="6" alt='Zugriffe: 3' title='Zugriffe: 3' /><img align="bottom" src="/awstats-icon/other/vk.png" height="27" width="6" alt='Bytes: 11.89 KB' title='Bytes: 11.89 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="34" width="6" alt='Seiten: 3' title='Seiten: 3' /><img align="bottom" src="/awstats-icon/other/vh.png" height="34" width="6" alt='Zugriffe: 3' title='Zugriffe: 3' /><img align="bottom" src="/awstats-icon/other/vk.png" height="35" width="6" alt='Bytes: 15.32 KB' title='Bytes: 15.32 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="12" width="6" alt='Seiten: 1' title='Seiten: 1' /><img align="bottom" src="/awstats-icon/other/vh.png" height="12" width="6" alt='Zugriffe: 1' title='Zugriffe: 1' /><img align="bottom" src="/awstats-icon/other/vk.png" height="12" width="6" alt='Bytes: 5.21 KB' title='Bytes: 5.21 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="68" width="6" alt='Seiten: 6' title='Seiten: 6' /><img align="bottom" src="/awstats-icon/other/vh.png" height="68" width="6" alt='Zugriffe: 6' title='Zugriffe: 6' /><img align="bottom" src="/awstats-icon/other/vk.png" height="67" width="6" alt='Bytes: 29.42 KB' title='Bytes: 29.42 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="34" width="6" alt='Seiten: 3' title='Seiten: 3' /><img align="bottom" src="/awstats-icon/other/vh.png" height="34" width="6" alt='Zugriffe: 3' title='Zugriffe: 3' /><img align="bottom" src="/awstats-icon/other/vk.png" height="33" width="6" alt='Bytes: 14.55 KB' title='Bytes: 14.55 KB' /></td>
|
||||||
|
</tr>
|
||||||
|
<tr><th width="19">0</th>
|
||||||
|
<th width="19">1</th>
|
||||||
|
<th width="19">2</th>
|
||||||
|
<th width="19">3</th>
|
||||||
|
<th width="19">4</th>
|
||||||
|
<th width="19">5</th>
|
||||||
|
<th width="19">6</th>
|
||||||
|
<th width="19">7</th>
|
||||||
|
<th width="19">8</th>
|
||||||
|
<th width="19">9</th>
|
||||||
|
<th width="19">10</th>
|
||||||
|
<th width="19">11</th>
|
||||||
|
<th width="19">12</th>
|
||||||
|
<th width="19">13</th>
|
||||||
|
<th width="19">14</th>
|
||||||
|
<th width="19">15</th>
|
||||||
|
<th width="19">16</th>
|
||||||
|
<th width="19">17</th>
|
||||||
|
<th width="19">18</th>
|
||||||
|
<th width="19">19</th>
|
||||||
|
<th width="19">20</th>
|
||||||
|
<th width="19">21</th>
|
||||||
|
<th width="19">22</th>
|
||||||
|
<th width="19">23</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><img src="/awstats-icon/clock/hr1.png" width="12" alt="0:00 - 1:00 am" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr2.png" width="12" alt="1:00 - 2:00 am" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr3.png" width="12" alt="2:00 - 3:00 am" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr4.png" width="12" alt="3:00 - 4:00 am" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr5.png" width="12" alt="4:00 - 5:00 am" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr6.png" width="12" alt="5:00 - 6:00 am" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr7.png" width="12" alt="6:00 - 7:00 am" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr8.png" width="12" alt="7:00 - 8:00 am" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr9.png" width="12" alt="8:00 - 9:00 am" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr10.png" width="12" alt="9:00 - 10:00 am" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr11.png" width="12" alt="10:00 - 11:00 am" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr12.png" width="12" alt="11:00 - 12:00 am" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr1.png" width="12" alt="0:00 - 1:00 pm" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr2.png" width="12" alt="1:00 - 2:00 pm" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr3.png" width="12" alt="2:00 - 3:00 pm" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr4.png" width="12" alt="3:00 - 4:00 pm" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr5.png" width="12" alt="4:00 - 5:00 pm" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr6.png" width="12" alt="5:00 - 6:00 pm" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr7.png" width="12" alt="6:00 - 7:00 pm" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr8.png" width="12" alt="7:00 - 8:00 pm" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr9.png" width="12" alt="8:00 - 9:00 pm" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr10.png" width="12" alt="9:00 - 10:00 pm" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr11.png" width="12" alt="10:00 - 11:00 pm" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr12.png" width="12" alt="11:00 - 12:00 pm" /></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
<br />
|
||||||
|
<table width="650"><tr>
|
||||||
|
<td align="center"><center>
|
||||||
|
<table>
|
||||||
|
<tr><td width="80" bgcolor="#ECECEC">Stunden (Serverzeit)</td><td width="80" bgcolor="#4477DD">Seiten</td><td width="80" bgcolor="#66DDEE">Zugriffe</td><td width="80" bgcolor="#2EA495">Bytes</td></tr><tr><td>00</td><td>3</td><td>3</td><td>15.64 KB</td></tr>
|
||||||
|
<tr><td>01</td><td>3</td><td>3</td><td>15.64 KB</td></tr>
|
||||||
|
<tr><td>02</td><td>2</td><td>2</td><td>10.42 KB</td></tr>
|
||||||
|
<tr><td>03</td><td>2</td><td>2</td><td>8.89 KB</td></tr>
|
||||||
|
<tr><td>04</td><td>2</td><td>2</td><td>9.66 KB</td></tr>
|
||||||
|
<tr><td>05</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr><td>06</td><td>3</td><td>3</td><td>15.64 KB</td></tr>
|
||||||
|
<tr><td>07</td><td>3</td><td>3</td><td>14.87 KB</td></tr>
|
||||||
|
<tr><td>08</td><td>1</td><td>1</td><td>5.21 KB</td></tr>
|
||||||
|
<tr><td>09</td><td>3</td><td>3</td><td>15.64 KB</td></tr>
|
||||||
|
<tr><td>10</td><td>3</td><td>3</td><td>16.52 KB</td></tr>
|
||||||
|
<tr><td>11</td><td>2</td><td>2</td><td>10.65 KB</td></tr>
|
||||||
|
</table>
|
||||||
|
</center></td><td width="10"> </td><td align="center"><center>
|
||||||
|
<table>
|
||||||
|
<tr><td width="80" bgcolor="#ECECEC">Stunden (Serverzeit)</td><td width="80" bgcolor="#4477DD">Seiten</td><td width="80" bgcolor="#66DDEE">Zugriffe</td><td width="80" bgcolor="#2EA495">Bytes</td></tr>
|
||||||
|
<tr><td>12</td><td>8</td><td>8</td><td>39.69 KB</td></tr>
|
||||||
|
<tr><td>13</td><td>2</td><td>2</td><td>10.34 KB</td></tr>
|
||||||
|
<tr><td>14</td><td>3</td><td>3</td><td>13.81 KB</td></tr>
|
||||||
|
<tr><td>15</td><td>1</td><td>1</td><td>4.45 KB</td></tr>
|
||||||
|
<tr><td>16</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr><td>17</td><td>3</td><td>3</td><td>11.59 KB</td></tr>
|
||||||
|
<tr><td>18</td><td>4</td><td>4</td><td>16.80 KB</td></tr>
|
||||||
|
<tr><td>19</td><td>3</td><td>3</td><td>11.89 KB</td></tr>
|
||||||
|
<tr><td>20</td><td>3</td><td>3</td><td>15.32 KB</td></tr>
|
||||||
|
<tr><td>21</td><td>1</td><td>1</td><td>5.21 KB</td></tr>
|
||||||
|
<tr><td>22</td><td>6</td><td>6</td><td>29.42 KB</td></tr>
|
||||||
|
<tr><td>23</td><td>3</td><td>3</td><td>14.55 KB</td></tr>
|
||||||
|
</table>
|
||||||
|
</center></td></tr></table>
|
||||||
|
<br />
|
||||||
|
</center></td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
|
||||||
|
<a name="who"> </a>
|
||||||
|
|
||||||
|
<a name="countries"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Domains/Länder der Besucher (Top 10) - <a href="awstats.mettcalc.de.alldomains.html" target="awstatsbis">Gesamte Liste</a> </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th width="32"> </th><th colspan="2">Domains/Länder</th><th bgcolor="#4477DD" width="80">Seiten</th><th bgcolor="#66DDEE" width="80">Zugriffe</th><th bgcolor="#2EA495" width="80">Bytes</th><th> </th></tr>
|
||||||
|
<tr><td width="32"><img src="/awstats-icon/flags/com.png" height="14" alt='com' title='com' /></td><td class="aws">Commercial</td><td>com</td><td>42</td><td>42</td><td>209.10 KB</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="261" height="5" alt='' title='' /><br />
|
||||||
|
<img src="/awstats-icon/other/hh.png" width="261" height="5" alt='' title='' /><br />
|
||||||
|
<img src="/awstats-icon/other/hk.png" width="261" height="5" alt='' title='' /></td></tr>
|
||||||
|
<tr><td width="32"><img src="/awstats-icon/flags/de.png" height="14" alt='de' title='de' /></td><td class="aws">Germany</td><td>de</td><td>16</td><td>16</td><td>73.33 KB</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="100" height="5" alt='' title='' /><br />
|
||||||
|
<img src="/awstats-icon/other/hh.png" width="100" height="5" alt='' title='' /><br />
|
||||||
|
<img src="/awstats-icon/other/hk.png" width="92" height="5" alt='' title='' /></td></tr>
|
||||||
|
<tr><td width="32"><img src="/awstats-icon/flags/ip.png" height="14" alt='Unbekannt' title='Unbekannt' /></td><td class="aws">Unbekannt</td><td>ip</td><td>5</td><td>5</td><td>24.49 KB</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="31" height="5" alt='' title='' /><br />
|
||||||
|
<img src="/awstats-icon/other/hh.png" width="31" height="5" alt='' title='' /><br />
|
||||||
|
<img src="/awstats-icon/other/hk.png" width="31" height="5" alt='' title='' /></td></tr>
|
||||||
|
<tr><td width="32"><img src="/awstats-icon/flags/it.png" height="14" alt='it' title='it' /></td><td class="aws">Italy</td><td>it</td><td>1</td><td>1</td><td>4.89 KB</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="7" height="5" alt='' title='' /><br />
|
||||||
|
<img src="/awstats-icon/other/hh.png" width="7" height="5" alt='' title='' /><br />
|
||||||
|
<img src="/awstats-icon/other/hk.png" width="7" height="5" alt='' title='' /></td></tr>
|
||||||
|
<tr><td width="32"> </td><td colspan="2" class="aws"><span style="color: #666688">Sonstige</span></td><td>0</td><td>0</td><td>0</td><td class="aws"> </td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<a name="visitors"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Rechner (Top 10) - <a href="awstats.mettcalc.de.allhosts.html" target="awstatsbis">Gesamte Liste</a> - <a href="awstats.mettcalc.de.lasthosts.html" target="awstatsbis">Letzter Zugriff</a> - <a href="awstats.mettcalc.de.unknownip.html" target="awstatsbis">Unaufgelöste IP Adressen</a> </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>Rechner : 13 Bekannte, 5 Unbekannte (IP konnte nicht aufgelöst werden )<br />18 Unterschiedliche Besucher</th><th bgcolor="#4477DD" width="80">Seiten</th><th bgcolor="#66DDEE" width="80">Zugriffe</th><th bgcolor="#2EA495" width="80">Bytes</th><th width="120">Letzter Zugriff</th></tr>
|
||||||
|
<tr><td class="aws">ec2-13-56-229-65.us-west-1.compute.amazonaws.com</td><td>21</td><td>21</td><td>109.45 KB</td><td nowrap="nowrap">31.12.2017 - 12:49</td></tr>
|
||||||
|
<tr><td class="aws">ec2-54-183-130-127.us-west-1.compute.amazonaws.com</td><td>15</td><td>15</td><td>78.18 KB</td><td nowrap="nowrap">31.12.2017 - 00:54</td></tr>
|
||||||
|
<tr><td class="aws">planetlab19.net.in.tum.de</td><td>9</td><td>9</td><td>40.02 KB</td><td nowrap="nowrap">29.12.2017 - 22:58</td></tr>
|
||||||
|
<tr><td class="aws">ec2-52-53-129-101.us-west-1.compute.amazonaws.com</td><td>2</td><td>2</td><td>2.33 KB</td><td nowrap="nowrap">03.12.2017 - 18:02</td></tr>
|
||||||
|
<tr><td class="aws">ip-5-146-195-59.unitymediagroup.de</td><td>2</td><td>2</td><td>10.34 KB</td><td nowrap="nowrap">10.12.2017 - 13:29</td></tr>
|
||||||
|
<tr><td class="aws">ip-176-198-101-52.hsi05.unitymediagroup.de</td><td>2</td><td>2</td><td>6.68 KB</td><td nowrap="nowrap">21.12.2017 - 19:10</td></tr>
|
||||||
|
<tr><td class="aws">ec2-54-185-215-73.us-west-2.compute.amazonaws.com</td><td>2</td><td>2</td><td>9.37 KB</td><td nowrap="nowrap">05.12.2017 - 14:22</td></tr>
|
||||||
|
<tr><td class="aws">38.130.177.202</td><td>1</td><td>1</td><td>4.71 KB</td><td nowrap="nowrap">05.12.2017 - 12:51</td></tr>
|
||||||
|
<tr><td class="aws">ec2-34-210-237-67.us-west-2.compute.amazonaws.com</td><td>1</td><td>1</td><td>4.89 KB</td><td nowrap="nowrap">30.12.2017 - 23:11</td></tr>
|
||||||
|
<tr><td class="aws">38.130.177.138</td><td>1</td><td>1</td><td>4.71 KB</td><td nowrap="nowrap">05.12.2017 - 12:52</td></tr>
|
||||||
|
<tr><td class="aws"><span style="color: #666688">Sonstige</span></td><td>8</td><td>8</td><td>41.15 KB</td><td> </td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<a name="robots"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Robots/Spiders (Suchmaschinen) (Top 10) - <a href="awstats.mettcalc.de.allrobots.html" target="awstatsbis">Gesamte Liste</a> - <a href="awstats.mettcalc.de.lastrobots.html" target="awstatsbis">Letzter Zugriff</a> </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>10 Zugriffe durch Suchmaschinen*</th><th bgcolor="#66DDEE" width="80">Zugriffe</th><th bgcolor="#2EA495" width="80">Bytes</th><th width="120">Letzter Zugriff</th></tr>
|
||||||
|
<tr><td class="aws">MJ12bot</td><td>2.330+17</td><td>15.69 MB</td><td>21.12.2017 - 05:34</td></tr>
|
||||||
|
<tr><td class="aws">linkdexbot</td><td>68+2</td><td>629.97 KB</td><td>26.12.2017 - 16:28</td></tr>
|
||||||
|
<tr><td class="aws">Googlebot</td><td>28+32</td><td>271.48 KB</td><td>30.12.2017 - 14:03</td></tr>
|
||||||
|
<tr><td class="aws">Firefox version 10 and lower - various robots</td><td>1+13</td><td>46.34 KB</td><td>24.12.2017 - 07:17</td></tr>
|
||||||
|
<tr><td class="aws">netcraft</td><td>12</td><td>74.29 KB</td><td>10.12.2017 - 04:13</td></tr>
|
||||||
|
<tr><td class="aws">Baiduspider</td><td>10</td><td>28.01 KB</td><td>24.12.2017 - 14:47</td></tr>
|
||||||
|
<tr><td class="aws">empty user agent string</td><td>4</td><td>1.10 KB</td><td>05.12.2017 - 09:39</td></tr>
|
||||||
|
<tr><td class="aws">spider</td><td>2+2</td><td>16.93 KB</td><td>20.12.2017 - 13:24</td></tr>
|
||||||
|
<tr><td class="aws">SurveyBot</td><td>2</td><td>11.12 KB</td><td>12.12.2017 - 23:58</td></tr>
|
||||||
|
<tr><td class="aws">Googlebot-Image</td><td>1</td><td>5.42 KB</td><td>10.12.2017 - 01:51</td></tr>
|
||||||
|
</table></td></tr></table><span style="font: 11px verdana, arial, helvetica;">* Die Robots, die hier angezeigt werden, zeigen Treffer oder Traffic welchen Besucher "nicht gesehen" haben und sind in den übrigen Diagrammen nicht enthalten. Zahlen hinter + sind erfolgreiche Treffer auf die "robots.txt"-Datei</span><br />
|
||||||
|
<br />
|
||||||
|
|
||||||
|
|
||||||
|
<a name="how"> </a>
|
||||||
|
|
||||||
|
<a name="sessions"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Aufenthaltsdauer </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>Anzahl der Besuche: 57 - Durchschnitt: 104 s</th><th bgcolor="#8888DD" width="80">Anzahl der Besuche</th><th bgcolor="#8888DD" width="80">Prozent</th></tr>
|
||||||
|
<tr><td class="aws">0s-30s</td><td>50</td><td>87.7 %</td></tr>
|
||||||
|
<tr><td class="aws">30s-2mn</td><td> </td><td> </td></tr>
|
||||||
|
<tr><td class="aws">2mn-5mn</td><td> </td><td> </td></tr>
|
||||||
|
<tr><td class="aws">5mn-15mn</td><td>4</td><td>7 %</td></tr>
|
||||||
|
<tr><td class="aws">15mn-30mn</td><td>2</td><td>3.5 %</td></tr>
|
||||||
|
<tr><td class="aws">30mn-1h</td><td> </td><td> </td></tr>
|
||||||
|
<tr><td class="aws">1h+</td><td> </td><td> </td></tr>
|
||||||
|
<tr><td class="aws"><span style="color: #666688">Unbekannt</span></td><td>1</td><td>1.7 %</td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<a name="filetypes"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Datei-Typen </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th colspan="3">Datei-Typen</th><th bgcolor="#66DDEE" width="80">Zugriffe</th><th bgcolor="#66DDEE" width="80">Prozent</th><th bgcolor="#2EA495" width="80">Bytes</th><th bgcolor="#2EA495" width="80">Prozent</th></tr>
|
||||||
|
<tr><td width="32"><img src="/awstats-icon/mime/php.png" alt='' title='' /></td><td class="aws">php</td><td class="aws">Dynamic PHP Script file</td><td>64</td><td>100 %</td><td nowrap="nowrap">311.82 KB</td><td>100 %</td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<a name="downloads"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Downloads (Top 10) - <a href="awstats.mettcalc.de.downloads.html" target="awstatsbis">Gesamte Liste</a> </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th colspan="2">Downloads: 1</th><th bgcolor="#66DDEE" width="80">Zugriffe</th><th bgcolor="#66DDEE" width="80">206 Zugriffe</th><th bgcolor="#2EA495" width="80">Bytes</th><th bgcolor="#2EA495" width="80">durchschnitt. Größe</th></tr>
|
||||||
|
<tr><td width="32"><img src="/awstats-icon/mime/text.png" alt='' title='' /></td><td class="aws"><a href="http://mettcalc.de/.well-known/acme-challenge/le-5a265b2618475.txt" target="url" rel="nofollow">/.well-known/acme-challenge/le-5a265b2618475.txt</a></td><td>4</td><td>0</td><td>1.10 KB</td><td>281 Bytes</td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<a name="urls"> </a><a name="entry"> </a><a name="exit"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Seiten-URL (Top 10) - <a href="awstats.mettcalc.de.urldetail.html" target="awstatsbis">Gesamte Liste</a> - <a href="awstats.mettcalc.de.urlentry.html" target="awstatsbis">Einstiegsseiten</a> - <a href="awstats.mettcalc.de.urlexit.html" target="awstatsbis">Exit Seiten</a> </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>1 Unterschiedliche Seiten</th><th bgcolor="#4477DD" width="80">Zugriffe</th><th bgcolor="#2EA495" width="80">durchschnitt. Größe</th><th bgcolor="#CEC2E8" width="80">Einstiegsseiten</th><th bgcolor="#C1B2E2" width="80">Exit Seiten</th><th> </th></tr>
|
||||||
|
<tr><td class="aws"><a href="http://mettcalc.de/" target="url" rel="nofollow">/</a></td><td>64</td><td>4.87 KB</td><td>57</td><td>56</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="261" height="4" alt='' title='' /><br /><img src="/awstats-icon/other/hk.png" width="261" height="4" alt='' title='' /><br /><img src="/awstats-icon/other/he.png" width="232" height="4" alt='' title='' /><br /><img src="/awstats-icon/other/hx.png" width="228" height="4" alt='' title='' /></td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<a name="os"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Betriebssysteme (Top 10) - <a href="awstats.mettcalc.de.osdetail.html" target="awstatsbis">Gesamte Liste/Versionen</a> - <a href="awstats.mettcalc.de.unknownos.html" target="awstatsbis">Unbekannt</a> </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th width="32"> </th><th>Betriebssysteme</th><th bgcolor="#4477DD" width="80">Seiten</th><th bgcolor="#4477DD" width="80">Prozent</th><th bgcolor="#66DDEE" width="80">Zugriffe</th><th bgcolor="#66DDEE" width="80">Prozent</th></tr>
|
||||||
|
<tr><td width="32"><img src="/awstats-icon/os/mac.png" alt='' title='' /></td><td class="aws"><b>Macintosh</b></td><td>38</td><td>59.3 %</td><td>38</td><td>59.3 %</td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/os/win.png" alt='' title='' /></td><td class="aws"><b>Windows</b></td><td>19</td><td>29.6 %</td><td>19</td><td>29.6 %</td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/os/linux.png" alt='' title='' /></td><td class="aws"><b>Linux</b></td><td>6</td><td>9.3 %</td><td>6</td><td>9.3 %</td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/os/unknown.png" alt='' title='' /></td><td class="aws"><span style="color: #666688">Unbekannt</span></td><td>1</td><td>1.5 %</td><td>1</td><td>1.5 %</td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<a name="browsers"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Browser (Top 10) - <a href="awstats.mettcalc.de.browserdetail.html" target="awstatsbis">Gesamte Liste/Versionen</a> - <a href="awstats.mettcalc.de.unknownbrowser.html" target="awstatsbis">Unbekannt</a> </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th width="32"> </th><th>Browser</th><th width="80">Grabber</th><th bgcolor="#4477DD" width="80">Seiten</th><th bgcolor="#4477DD" width="80">Prozent</th><th bgcolor="#66DDEE" width="80">Zugriffe</th><th bgcolor="#66DDEE" width="80">Prozent</th></tr>
|
||||||
|
<tr><td width="32"><img src="/awstats-icon/browser/chrome.png" alt='' title='' /></td><td class="aws"><b>Google Chrome</b></td><td>Nein</td><td>53</td><td>82.8 %</td><td>53</td><td>82.8 %</td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/browser/firefox.png" alt='' title='' /></td><td class="aws"><b>Firefox</b></td><td>Nein</td><td>6</td><td>9.3 %</td><td>6</td><td>9.3 %</td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/browser/msie.png" alt='' title='' /></td><td class="aws"><b>MS Internet Explorer</b></td><td>Nein</td><td>3</td><td>4.6 %</td><td>3</td><td>4.6 %</td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/browser/unknown.png" alt='' title='' /></td><td class="aws"><span style="color: #666688">Unbekannt</span></td><td width="80">?</td><td>1</td><td>1.5 %</td><td>1</td><td>1.5 %</td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/browser/safari.png" alt='' title='' /></td><td class="aws"><b>Safari</b></td><td>Nein</td><td>1</td><td>1.5 %</td><td>1</td><td>1.5 %</td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
|
||||||
|
<a name="refering"> </a>
|
||||||
|
|
||||||
|
<a name="referer"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Woher die Besucher kamen </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>Herkunft</th><th bgcolor="#4477DD" width="80">Seiten</th><th bgcolor="#4477DD" width="80">Prozent</th><th bgcolor="#66DDEE" width="80">Zugriffe</th><th bgcolor="#66DDEE" width="80">Prozent</th></tr>
|
||||||
|
<tr><td class="aws"><b>Direkter Zugriff/Bookmarks</b></td><td>43</td><td>100 %</td><td>43</td><td>100 %</td></tr>
|
||||||
|
<tr><td class="aws"><b>Links von einer Internet-Suchmaschine</b> - <a href="awstats.mettcalc.de.refererse.html" target="awstatsbis">Gesamte Liste</a><br />
|
||||||
|
</td>
|
||||||
|
<td valign="top"> </td><td valign="top"> </td><td valign="top"> </td><td valign="top"> </td></tr>
|
||||||
|
<tr><td class="aws"><b>Links von einer externen Seite (keine Suchmaschinen)</b> - <a href="awstats.mettcalc.de.refererpages.html" target="awstatsbis">Gesamte Liste</a><br />
|
||||||
|
</td>
|
||||||
|
<td valign="top"> </td><td valign="top"> </td><td valign="top"> </td><td valign="top"> </td></tr>
|
||||||
|
<tr><td class="aws"><b>Herkunft unbekannt</b></td><td> </td><td> </td><td> </td><td> </td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
|
||||||
|
<a name="keys"> </a>
|
||||||
|
|
||||||
|
<a name="keyphrases"> </a><a name="keywords"> </a><br />
|
||||||
|
<table width="100%" cellpadding="0" cellspacing="0"><tr><td width="50%" valign="top">
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="95%">Suchausdrücke (Top 10)<br /><a href="awstats.mettcalc.de.keyphrases.html" target="awstatsbis">Gesamte Liste</a> </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>0 verschiedene Suchbegriffe</th><th bgcolor="#8888DD" width="80">Häufigkeit</th><th bgcolor="#8888DD" width="80">Prozent</th></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
</td>
|
||||||
|
<td> </td><td width="50%" valign="top">
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="95%">Suchbegriffe (Top 10)<br /><a href="awstats.mettcalc.de.keywords.html" target="awstatsbis">Gesamte Liste</a> </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>0 Suchbegriffe</th><th bgcolor="#8888DD" width="80">Häufigkeit</th><th bgcolor="#8888DD" width="80">Prozent</th></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
</td>
|
||||||
|
</tr></table>
|
||||||
|
|
||||||
|
<a name="other"> </a>
|
||||||
|
|
||||||
|
<a name="misc"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Verschiedenes </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>Verschiedenes</th><th width="100"> </th><th width="100"> </th></tr>
|
||||||
|
<tr><td class="aws">Zu Favoriten hinzugefügt (Schätzung)</td><td>14 / 18 Besucher</td><td>77.7 %</td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<a name="errors"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">HTTP Fehlercodes </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th colspan="2">HTTP Fehlercodes*</th><th bgcolor="#66DDEE" width="80">Zugriffe</th><th bgcolor="#66DDEE" width="80">Prozent</th><th bgcolor="#2EA495" width="80">Bytes</th></tr>
|
||||||
|
<tr><td><a href="awstats.mettcalc.de.errors404.html" target="awstatsbis">404</a></td><td class="aws">Document Not Found (hits on favicon excluded)</td><td>210</td><td>54.1 %</td><td>891.75 KB</td></tr>
|
||||||
|
<tr><td valign="top">301</td><td class="aws">Moved permanently (redirect)</td><td>178</td><td>45.8 %</td><td>101.03 KB</td></tr>
|
||||||
|
</table></td></tr></table><span style="font: 11px verdana, arial, helvetica;">* Die Codes, die hier angezeigt werden, zeigen Treffer oder Traffic welchen Besucher "nicht gesehen" haben und sind in den übrigen Diagrammen nicht enthalten.</span><br />
|
||||||
|
<br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,90 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2017-12) - alldomains">
|
||||||
|
<title>Statistik für mettcalc.de (2017-12) - alldomains</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=alldomains" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.01.2018 - 00:00</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Dez 2017</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="domains"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Domains/Länder der Besucher </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th width="32"> </th><th colspan="2">Domains/Länder</th><th bgcolor="#4477DD" width="80">Seiten</th><th bgcolor="#66DDEE" width="80">Zugriffe</th><th class="datasize" bgcolor="#2EA495" width="80">Bytes</th><th> </th></tr>
|
||||||
|
<tr><td width="32"><img src="/awstats-icon/flags/com.png" height="14" alt='com' title='com' /></td><td class="aws">Commercial</td><td>com</td><td>42</td><td>42</td><td>209.10 KB</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="261" height="5" alt='Seiten: 42' title='Seiten: 42' /><br />
|
||||||
|
<img src="/awstats-icon/other/hh.png" width="261" height="5" alt='Zugriffe: 42' title='Zugriffe: 42' /><br />
|
||||||
|
<img src="/awstats-icon/other/hk.png" width="261" height="5" alt='Bytes: 209.10 KB' title='Bytes: 209.10 KB' /></td></tr>
|
||||||
|
<tr><td width="32"><img src="/awstats-icon/flags/de.png" height="14" alt='de' title='de' /></td><td class="aws">Germany</td><td>de</td><td>16</td><td>16</td><td>73.33 KB</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="100" height="5" alt='Seiten: 16' title='Seiten: 16' /><br />
|
||||||
|
<img src="/awstats-icon/other/hh.png" width="100" height="5" alt='Zugriffe: 16' title='Zugriffe: 16' /><br />
|
||||||
|
<img src="/awstats-icon/other/hk.png" width="92" height="5" alt='Bytes: 73.33 KB' title='Bytes: 73.33 KB' /></td></tr>
|
||||||
|
<tr><td width="32"><img src="/awstats-icon/flags/ip.png" height="14" alt='Unbekannt' title='Unbekannt' /></td><td class="aws">Unbekannt</td><td>ip</td><td>5</td><td>5</td><td>24.49 KB</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="31" height="5" alt='Seiten: 5' title='Seiten: 5' /><br />
|
||||||
|
<img src="/awstats-icon/other/hh.png" width="31" height="5" alt='Zugriffe: 5' title='Zugriffe: 5' /><br />
|
||||||
|
<img src="/awstats-icon/other/hk.png" width="31" height="5" alt='Bytes: 24.49 KB' title='Bytes: 24.49 KB' /></td></tr>
|
||||||
|
<tr><td width="32"><img src="/awstats-icon/flags/it.png" height="14" alt='it' title='it' /></td><td class="aws">Italy</td><td>it</td><td>1</td><td>1</td><td>4.89 KB</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="7" height="5" alt='Seiten: 1' title='Seiten: 1' /><br />
|
||||||
|
<img src="/awstats-icon/other/hh.png" width="7" height="5" alt='Zugriffe: 1' title='Zugriffe: 1' /><br />
|
||||||
|
<img src="/awstats-icon/other/hk.png" width="7" height="5" alt='Bytes: 4.89 KB' title='Bytes: 4.89 KB' /></td></tr>
|
||||||
|
<tr><td width="32"> </td><td colspan="2" class="aws"><span style="color: #666688">Sonstige</span></td><td>0</td><td>0</td><td>0</td><td class="aws"> </td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,95 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2017-12) - allhosts">
|
||||||
|
<title>Statistik für mettcalc.de (2017-12) - allhosts</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=allhosts" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.01.2018 - 00:00</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Dez 2017</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="hosts"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Rechner </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>Total : 13 Bekannte, 5 Unbekannte (IP konnte nicht aufgelöst werden ) - 18 Unterschiedliche Besucher</th><th bgcolor="#4477DD" width="80">Seiten</th><th bgcolor="#66DDEE" width="80">Zugriffe</th><th class="datasize" bgcolor="#2EA495" width="80">Bytes</th><th width="120">Letzter Zugriff</th></tr>
|
||||||
|
<tr><td class="aws">ec2-13-56-229-65.us-west-1.compute.amazonaws.com</td><td>21</td><td>21</td><td>109.45 KB</td><td>31.12.2017 - 12:49</td></tr>
|
||||||
|
<tr><td class="aws">ec2-54-183-130-127.us-west-1.compute.amazonaws.com</td><td>15</td><td>15</td><td>78.18 KB</td><td>31.12.2017 - 00:54</td></tr>
|
||||||
|
<tr><td class="aws">planetlab19.net.in.tum.de</td><td>9</td><td>9</td><td>40.02 KB</td><td>29.12.2017 - 22:58</td></tr>
|
||||||
|
<tr><td class="aws">ec2-54-185-215-73.us-west-2.compute.amazonaws.com</td><td>2</td><td>2</td><td>9.37 KB</td><td>05.12.2017 - 14:22</td></tr>
|
||||||
|
<tr><td class="aws">ip-176-198-101-52.hsi05.unitymediagroup.de</td><td>2</td><td>2</td><td>6.68 KB</td><td>21.12.2017 - 19:10</td></tr>
|
||||||
|
<tr><td class="aws">ec2-52-53-129-101.us-west-1.compute.amazonaws.com</td><td>2</td><td>2</td><td>2.33 KB</td><td>03.12.2017 - 18:02</td></tr>
|
||||||
|
<tr><td class="aws">ip-5-146-195-59.unitymediagroup.de</td><td>2</td><td>2</td><td>10.34 KB</td><td>10.12.2017 - 13:29</td></tr>
|
||||||
|
<tr><td class="aws">ec2-34-210-237-67.us-west-2.compute.amazonaws.com</td><td>1</td><td>1</td><td>4.89 KB</td><td>30.12.2017 - 23:11</td></tr>
|
||||||
|
<tr><td class="aws">38.130.177.138</td><td>1</td><td>1</td><td>4.71 KB</td><td>05.12.2017 - 12:52</td></tr>
|
||||||
|
<tr><td class="aws">ec2-34-212-238-71.us-west-2.compute.amazonaws.com</td><td>1</td><td>1</td><td>4.89 KB</td><td>26.12.2017 - 22:55</td></tr>
|
||||||
|
<tr><td class="aws">eq4.rathje.it</td><td>1</td><td>1</td><td>4.89 KB</td><td>09.12.2017 - 20:08</td></tr>
|
||||||
|
<tr><td class="aws">x2f7f04b.dyn.telefonica.de</td><td>1</td><td>1</td><td>5.43 KB</td><td>21.12.2017 - 10:35</td></tr>
|
||||||
|
<tr><td class="aws">38.130.177.202</td><td>1</td><td>1</td><td>4.71 KB</td><td>05.12.2017 - 12:51</td></tr>
|
||||||
|
<tr><td class="aws">38.130.186.83</td><td>1</td><td>1</td><td>4.71 KB</td><td>05.12.2017 - 12:42</td></tr>
|
||||||
|
<tr><td class="aws">p54b2ec92.dip0.t-ipconnect.de</td><td>1</td><td>1</td><td>5.43 KB</td><td>05.12.2017 - 11:34</td></tr>
|
||||||
|
<tr><td class="aws">173.208.148.219</td><td>1</td><td>1</td><td>5.65 KB</td><td>11.12.2017 - 10:34</td></tr>
|
||||||
|
<tr><td class="aws">38.130.177.49</td><td>1</td><td>1</td><td>4.71 KB</td><td>05.12.2017 - 12:44</td></tr>
|
||||||
|
<tr><td class="aws">x2f7f373.dyn.telefonica.de</td><td>1</td><td>1</td><td>5.43 KB</td><td>21.12.2017 - 10:32</td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,88 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2017-12) - allrobots">
|
||||||
|
<title>Statistik für mettcalc.de (2017-12) - allrobots</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=allrobots" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.01.2018 - 00:00</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Dez 2017</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="robots"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Robots/Spiders (Suchmaschinen) </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>10 Zugriffe durch Suchmaschinen</th><th bgcolor="#66DDEE" width="80">Zugriffe</th><th class="datasize" bgcolor="#2EA495" width="80">Bytes</th><th width="120">Letzter Zugriff</th></tr>
|
||||||
|
<tr><td class="aws">MJ12bot</td><td>2.330+17</td><td>15.69 MB</td><td>21.12.2017 - 05:34</td></tr>
|
||||||
|
<tr><td class="aws">linkdexbot</td><td>68+2</td><td>629.97 KB</td><td>26.12.2017 - 16:28</td></tr>
|
||||||
|
<tr><td class="aws">Googlebot</td><td>28+32</td><td>271.48 KB</td><td>30.12.2017 - 14:03</td></tr>
|
||||||
|
<tr><td class="aws">Firefox version 10 and lower - various robots</td><td>1+13</td><td>46.34 KB</td><td>24.12.2017 - 07:17</td></tr>
|
||||||
|
<tr><td class="aws">netcraft</td><td>12</td><td>74.29 KB</td><td>10.12.2017 - 04:13</td></tr>
|
||||||
|
<tr><td class="aws">Baiduspider</td><td>10</td><td>28.01 KB</td><td>24.12.2017 - 14:47</td></tr>
|
||||||
|
<tr><td class="aws">spider</td><td>2+2</td><td>16.93 KB</td><td>20.12.2017 - 13:24</td></tr>
|
||||||
|
<tr><td class="aws">empty user agent string</td><td>4</td><td>1.10 KB</td><td>05.12.2017 - 09:39</td></tr>
|
||||||
|
<tr><td class="aws">SurveyBot</td><td>2</td><td>11.12 KB</td><td>12.12.2017 - 23:58</td></tr>
|
||||||
|
<tr><td class="aws">Googlebot-Image</td><td>1</td><td>5.42 KB</td><td>10.12.2017 - 01:51</td></tr>
|
||||||
|
</table></td></tr></table><span style="font: 11px verdana, arial, helvetica;">* Die Robots, die hier angezeigt werden, zeigen Treffer oder Traffic welchen Besucher "nicht gesehen" haben und sind in den übrigen Diagrammen nicht enthalten. Zahlen hinter + sind erfolgreiche Treffer auf die "robots.txt"-Datei</span><br />
|
||||||
|
<br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,95 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2017-12) - browserdetail">
|
||||||
|
<title>Statistik für mettcalc.de (2017-12) - browserdetail</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=browserdetail" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.01.2018 - 00:00</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Dez 2017</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="browsersversions"> </a><br /><table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Browser </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th colspan="2">Versionen</th><th width="80">Grabber</th><th bgcolor="#4477DD" width="80">Seiten</th><th bgcolor="#4477DD" width="80">Prozent</th><th bgcolor="#66DDEE" width="80">Zugriffe</th><th bgcolor="#66DDEE" width="80">Prozent</th><th> </th></tr>
|
||||||
|
<tr bgcolor="#F6F6F6"><td class="aws" colspan="2"><b>MSIE</b></td><td> </td><td><b>3</b></td><td><b>4.6 %</b></td><td><b>3</b></td><td><b>4.6 %</b></td><td> </td></tr>
|
||||||
|
<tr><td width="32"><img src="/awstats-icon/browser/msie.png" alt='' title='' /></td><td class="aws">Msie 10.0</td><td>Nein</td><td>2</td><td>3.1 %</td><td>2</td><td>3.1 %</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="14" height="5" /><br /><img src="/awstats-icon/other/hh.png" width="14" height="5" /><br /></td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/browser/msie.png" alt='' title='' /></td><td class="aws">Msie 9.0</td><td>Nein</td><td>1</td><td>1.5 %</td><td>1</td><td>1.5 %</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="7" height="5" /><br /><img src="/awstats-icon/other/hh.png" width="7" height="5" /><br /></td></tr>
|
||||||
|
<tr bgcolor="#F6F6F6"><td class="aws" colspan="2"><b>FIREFOX</b></td><td> </td><td><b>6</b></td><td><b>9.3 %</b></td><td><b>6</b></td><td><b>9.3 %</b></td><td> </td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/browser/firefox.png" alt='' title='' /></td><td class="aws">Firefox 57.0</td><td>Nein</td><td>3</td><td>4.6 %</td><td>3</td><td>4.6 %</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="20" height="5" /><br /><img src="/awstats-icon/other/hh.png" width="20" height="5" /><br /></td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/browser/firefox.png" alt='' title='' /></td><td class="aws">Firefox 54.0</td><td>Nein</td><td>1</td><td>1.5 %</td><td>1</td><td>1.5 %</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="7" height="5" /><br /><img src="/awstats-icon/other/hh.png" width="7" height="5" /><br /></td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/browser/firefox.png" alt='' title='' /></td><td class="aws">Firefox 47.0</td><td>Nein</td><td>1</td><td>1.5 %</td><td>1</td><td>1.5 %</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="7" height="5" /><br /><img src="/awstats-icon/other/hh.png" width="7" height="5" /><br /></td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/browser/firefox.png" alt='' title='' /></td><td class="aws">Firefox 36.0</td><td>Nein</td><td>1</td><td>1.5 %</td><td>1</td><td>1.5 %</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="7" height="5" /><br /><img src="/awstats-icon/other/hh.png" width="7" height="5" /><br /></td></tr>
|
||||||
|
<tr bgcolor="#F6F6F6"><td class="aws" colspan="2"><b>SAFARI</b></td><td> </td><td><b>1</b></td><td><b>1.5 %</b></td><td><b>1</b></td><td><b>1.5 %</b></td><td> </td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/browser/safari.png" alt='' title='' /></td><td class="aws">Safari ?</td><td>Nein</td><td>1</td><td>1.5 %</td><td>1</td><td>1.5 %</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="7" height="5" /><br /><img src="/awstats-icon/other/hh.png" width="7" height="5" /><br /></td></tr>
|
||||||
|
<tr bgcolor="#F6F6F6"><td class="aws" colspan="2"><b>CHROME</b></td><td> </td><td><b>53</b></td><td><b>82.8 %</b></td><td><b>53</b></td><td><b>82.8 %</b></td><td> </td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/browser/chrome.png" alt='' title='' /></td><td class="aws">Chrome 63.0.3239.111</td><td>Nein</td><td>1</td><td>1.5 %</td><td>1</td><td>1.5 %</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="7" height="5" /><br /><img src="/awstats-icon/other/hh.png" width="7" height="5" /><br /></td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/browser/chrome.png" alt='' title='' /></td><td class="aws">Chrome 62.0.3202.94</td><td>Nein</td><td>1</td><td>1.5 %</td><td>1</td><td>1.5 %</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="7" height="5" /><br /><img src="/awstats-icon/other/hh.png" width="7" height="5" /><br /></td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/browser/chrome.png" alt='' title='' /></td><td class="aws">Chrome 61.0.3163.100</td><td>Nein</td><td>40</td><td>62.5 %</td><td>40</td><td>62.5 %</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="261" height="5" /><br /><img src="/awstats-icon/other/hh.png" width="261" height="5" /><br /></td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/browser/chrome.png" alt='' title='' /></td><td class="aws">Chrome 58.0.3029.83</td><td>Nein</td><td>1</td><td>1.5 %</td><td>1</td><td>1.5 %</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="7" height="5" /><br /><img src="/awstats-icon/other/hh.png" width="7" height="5" /><br /></td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/browser/chrome.png" alt='' title='' /></td><td class="aws">Chrome 41.0.2228.0</td><td>Nein</td><td>1</td><td>1.5 %</td><td>1</td><td>1.5 %</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="7" height="5" /><br /><img src="/awstats-icon/other/hh.png" width="7" height="5" /><br /></td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/browser/chrome.png" alt='' title='' /></td><td class="aws">Chrome 40.0.2214.85</td><td>Nein</td><td>9</td><td>14 %</td><td>9</td><td>14 %</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="59" height="5" /><br /><img src="/awstats-icon/other/hh.png" width="59" height="5" /><br /></td></tr>
|
||||||
|
<tr bgcolor="#F6F6F6"><td class="aws" colspan="2"><b>Sonstige</b></td><td> </td><td><b>1</b></td><td><b>1.5 %</b></td><td><b>1</b></td><td><b>1.5 %</b></td><td> </td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/browser/unknown.png" alt='' title='' /></td><td class="aws"><span style="color: #666688">Unbekannt</span></td><td width="80">?</td><td>1</td><td>1.5 %</td><td>1</td><td>1.5 %</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="7" height="5" /><br /><img src="/awstats-icon/other/hh.png" width="7" height="5" /><br /></td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,78 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2017-12) - downloads">
|
||||||
|
<title>Statistik für mettcalc.de (2017-12) - downloads</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=downloads" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.01.2018 - 00:00</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Dez 2017</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="downloads"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Downloads </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th colspan="2">Downloads</th><th bgcolor="#66DDEE" width="80">Zugriffe</th><th bgcolor="#66DDEE" width="80">206 Zugriffe</th><th bgcolor="#2EA495" width="80">Bytes</th><th bgcolor="#2EA495" width="80">durchschnitt. Größe</th></tr>
|
||||||
|
<tr><td width="32"><img src="/awstats-icon/mime/text.png" alt='' title='' /></td><td class="aws"><a href="http://mettcalc.de/.well-known/acme-challenge/le-5a265b2618475.txt" target="url" rel="nofollow">/.well-known/acme-challenge/le-5a265b2618475.txt</a></td><td>4</td><td>0</td><td>1.10 KB</td><td>281 Bytes</td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,77 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2017-12) - errors400">
|
||||||
|
<title>Statistik für mettcalc.de (2017-12) - errors400</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=errors400" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.01.2018 - 00:00</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Dez 2017</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="errors400"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Bad Request urls (HTTP code 400) </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>URL (0)</th><th bgcolor="#66DDEE">Fehlerhafte Zugriffe</th><th bgcolor="#4477DD" width="80">Verweise</th></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,77 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2017-12) - errors403">
|
||||||
|
<title>Statistik für mettcalc.de (2017-12) - errors403</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=errors403" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.01.2018 - 00:00</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Dez 2017</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="errors403"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Forbidden urls (HTTP code 403) </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>URL (0)</th><th bgcolor="#66DDEE">Fehlerhafte Zugriffe</th><th bgcolor="#4477DD" width="80">Verweise</th></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,181 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2017-12) - errors404">
|
||||||
|
<title>Statistik für mettcalc.de (2017-12) - errors404</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=errors404" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.01.2018 - 00:00</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Dez 2017</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="errors404"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Nicht auffindbare Seiten (Fehler 404) </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>URL (104)</th><th bgcolor="#66DDEE">Fehlerhafte Zugriffe</th><th bgcolor="#4477DD" width="80">Verweise</th></tr>
|
||||||
|
<tr><td class="aws">/google708dc0575fc6f7f0.html</td><td>38</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/google5c7ec119215182a4.html</td><td>37</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/impressum.html</td><td>18</td><td class="aws">https://www.google.de/</td></tr>
|
||||||
|
<tr><td class="aws">/.git/config</td><td>7</td><td class="aws">http://mettcalc.de/.git/config</td></tr>
|
||||||
|
<tr><td class="aws">/boilerplate.css</td><td>6</td><td class="aws">https://mettcalc.de/</td></tr>
|
||||||
|
<tr><td class="aws">/style.css</td><td>6</td><td class="aws">https://mettcalc.de/</td></tr>
|
||||||
|
<tr><td class="aws">/manual/fr/misc/descriptors.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/ko/mod/mod_auth_dbm.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/zh-cn/mod/env.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/zh-cn/ru/new_features_2_0.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/da/mod/mod_example.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/2.0/mod/mod_auth_dbm.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/de/ru/new_features_2_0.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/ko/faq/error.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/zh-cn/mod/mod_example.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/ja/mod/mod_access.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/ja/mod/mod_auth_ldap.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/ja/mod/directive-dist.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/ko/mod/mod_auth_anon.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/en/mod/env.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/fr/mod/mod_nss.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/ko/misc/rewriteguide.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/ja/faq/background.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/impressum.php</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/ja/mod/threadpool.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/pt-br/mod/mod_auth_ldap.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/de/mod/threadpool.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/ko/mod/leader.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/es/misc/rewriteguide.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/fr/mod/mod_authnnz_ldap.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/ko/mod/mod_auth.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/ko/mod/env.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/de/mod/mod_example.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/da/ru/new_features_2_0.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/zh-cn/mod/setenv.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/de/mod/env.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/ja/faq/error.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/es/ru/new_features_2_0.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/ja/misc/rewriteguide.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/tr/vhosts/name-%20%20%20%20%20%20%20based.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/tr/mod/mod_example.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/ja/mod/setenv.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/ja/mod/mod_perl.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/ja/mod/mod_cache_dist.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/en/mod/setenv.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/en/mod/mod_example.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/fr/ru/new_features_2_0.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/ko/mod/mod_spelling.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/ja/mod/mod_so.c.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/tr/mod/setenv.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/es/mod/beos.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/de/mod/leader.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/ja/mod/core.c.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/pt-br/mod/setenv.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/ja/mod/mod_authn_default.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/ko/mod/mod_mem_cache.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/pt-br/mod/mod_auth_dbm.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/es/faq/error.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/ko/mod/setenv.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/ko/mod/mod_perl.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/ko/mod/threadpool.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/ko/faq/support.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/fr/mod/env.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/ko/mod/beos.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/da/mod/env.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/ko/mod/mod_access.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/ja/mod/beos.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/ja/vhost/name-based.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/ko/mod/mod_so.c.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/fr/mod/mod_disk_cache.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/en/ru/new_features_2_0.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/es/faq/support.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/fr/mod/setenv.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/ja/mod/mod_mem_cache.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/ja/mod/autoindex.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/es/mod/perchild.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/es/mod/mod_example.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/fr/mod/mod_example.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/ja/mod/mod_authz_default.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/ja/ru/new_features_2_0.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/fr/mod/mod_auto_index.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/de/mod/setenv.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/ja/mod/perchild.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/de/mod/perchild.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/ja/mod/leader.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/da/mod/setenv.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/pt-br/mod/mod_example.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/ja/mod/mod_auth_dbm.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/ja/mod/env.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/tr/mod/env.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/ko/mod/mod_log_referer.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/de/mod/beos.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/ko/mod/mod_example.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/tr/ru/new_features_2_0.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/fr/new_features_2_0.html.fr</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/ja/mod/mod_example.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/ja/faq/support.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/ko/mod/perchild.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/es/mod/env.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/pt-br/mod/env.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/es/mod/setenv.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/ko/mod/mod_auth_ldap.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/ko/ru/new_features_2_0.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
<tr><td class="aws">/manual/pt-br/ru/new_features_2_0.html</td><td>1</td><td class="aws">-</td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,77 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2017-12) - keyphrases">
|
||||||
|
<title>Statistik für mettcalc.de (2017-12) - keyphrases</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=keyphrases" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.01.2018 - 00:00</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Dez 2017</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="keyphrases"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Suchausdrücke (Suchmaschinen) </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>0 verschiedene Suchbegriffe</th><th bgcolor="#8888DD" width="80">Häufigkeit</th><th bgcolor="#8888DD" width="80">Prozent</th></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,77 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2017-12) - keywords">
|
||||||
|
<title>Statistik für mettcalc.de (2017-12) - keywords</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=keywords" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.01.2018 - 00:00</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Dez 2017</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="keywords"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Suchbegriffe (Suchmaschinen) </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>0 Suchbegriffe</th><th bgcolor="#8888DD" width="80">Häufigkeit</th><th bgcolor="#8888DD" width="80">Prozent</th></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,95 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2017-12) - lasthosts">
|
||||||
|
<title>Statistik für mettcalc.de (2017-12) - lasthosts</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=lasthosts" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.01.2018 - 00:00</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Dez 2017</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="hosts"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Letzter Zugriff </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>Total : 13 Bekannte, 5 Unbekannte (IP konnte nicht aufgelöst werden ) - 18 Unterschiedliche Besucher</th><th bgcolor="#4477DD" width="80">Seiten</th><th bgcolor="#66DDEE" width="80">Zugriffe</th><th class="datasize" bgcolor="#2EA495" width="80">Bytes</th><th width="120">Letzter Zugriff</th></tr>
|
||||||
|
<tr><td class="aws">ec2-13-56-229-65.us-west-1.compute.amazonaws.com</td><td>21</td><td>21</td><td>109.45 KB</td><td>31.12.2017 - 12:49</td></tr>
|
||||||
|
<tr><td class="aws">ec2-54-183-130-127.us-west-1.compute.amazonaws.com</td><td>15</td><td>15</td><td>78.18 KB</td><td>31.12.2017 - 00:54</td></tr>
|
||||||
|
<tr><td class="aws">ec2-34-210-237-67.us-west-2.compute.amazonaws.com</td><td>1</td><td>1</td><td>4.89 KB</td><td>30.12.2017 - 23:11</td></tr>
|
||||||
|
<tr><td class="aws">planetlab19.net.in.tum.de</td><td>9</td><td>9</td><td>40.02 KB</td><td>29.12.2017 - 22:58</td></tr>
|
||||||
|
<tr><td class="aws">ec2-34-212-238-71.us-west-2.compute.amazonaws.com</td><td>1</td><td>1</td><td>4.89 KB</td><td>26.12.2017 - 22:55</td></tr>
|
||||||
|
<tr><td class="aws">ip-176-198-101-52.hsi05.unitymediagroup.de</td><td>2</td><td>2</td><td>6.68 KB</td><td>21.12.2017 - 19:10</td></tr>
|
||||||
|
<tr><td class="aws">x2f7f04b.dyn.telefonica.de</td><td>1</td><td>1</td><td>5.43 KB</td><td>21.12.2017 - 10:35</td></tr>
|
||||||
|
<tr><td class="aws">x2f7f373.dyn.telefonica.de</td><td>1</td><td>1</td><td>5.43 KB</td><td>21.12.2017 - 10:32</td></tr>
|
||||||
|
<tr><td class="aws">173.208.148.219</td><td>1</td><td>1</td><td>5.65 KB</td><td>11.12.2017 - 10:34</td></tr>
|
||||||
|
<tr><td class="aws">ip-5-146-195-59.unitymediagroup.de</td><td>2</td><td>2</td><td>10.34 KB</td><td>10.12.2017 - 13:29</td></tr>
|
||||||
|
<tr><td class="aws">eq4.rathje.it</td><td>1</td><td>1</td><td>4.89 KB</td><td>09.12.2017 - 20:08</td></tr>
|
||||||
|
<tr><td class="aws">ec2-54-185-215-73.us-west-2.compute.amazonaws.com</td><td>2</td><td>2</td><td>9.37 KB</td><td>05.12.2017 - 14:22</td></tr>
|
||||||
|
<tr><td class="aws">38.130.177.138</td><td>1</td><td>1</td><td>4.71 KB</td><td>05.12.2017 - 12:52</td></tr>
|
||||||
|
<tr><td class="aws">38.130.177.202</td><td>1</td><td>1</td><td>4.71 KB</td><td>05.12.2017 - 12:51</td></tr>
|
||||||
|
<tr><td class="aws">38.130.177.49</td><td>1</td><td>1</td><td>4.71 KB</td><td>05.12.2017 - 12:44</td></tr>
|
||||||
|
<tr><td class="aws">38.130.186.83</td><td>1</td><td>1</td><td>4.71 KB</td><td>05.12.2017 - 12:42</td></tr>
|
||||||
|
<tr><td class="aws">p54b2ec92.dip0.t-ipconnect.de</td><td>1</td><td>1</td><td>5.43 KB</td><td>05.12.2017 - 11:34</td></tr>
|
||||||
|
<tr><td class="aws">ec2-52-53-129-101.us-west-1.compute.amazonaws.com</td><td>2</td><td>2</td><td>2.33 KB</td><td>03.12.2017 - 18:02</td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,88 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2017-12) - lastrobots">
|
||||||
|
<title>Statistik für mettcalc.de (2017-12) - lastrobots</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=lastrobots" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.01.2018 - 00:00</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Dez 2017</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="robots"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Letzter Zugriff </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>10 Zugriffe durch Suchmaschinen</th><th bgcolor="#66DDEE" width="80">Zugriffe</th><th class="datasize" bgcolor="#2EA495" width="80">Bytes</th><th width="120">Letzter Zugriff</th></tr>
|
||||||
|
<tr><td class="aws">Googlebot</td><td>28+32</td><td>271.48 KB</td><td>30.12.2017 - 14:03</td></tr>
|
||||||
|
<tr><td class="aws">linkdexbot</td><td>68+2</td><td>629.97 KB</td><td>26.12.2017 - 16:28</td></tr>
|
||||||
|
<tr><td class="aws">Baiduspider</td><td>10</td><td>28.01 KB</td><td>24.12.2017 - 14:47</td></tr>
|
||||||
|
<tr><td class="aws">Firefox version 10 and lower - various robots</td><td>1+13</td><td>46.34 KB</td><td>24.12.2017 - 07:17</td></tr>
|
||||||
|
<tr><td class="aws">MJ12bot</td><td>2.330+17</td><td>15.69 MB</td><td>21.12.2017 - 05:34</td></tr>
|
||||||
|
<tr><td class="aws">spider</td><td>2+2</td><td>16.93 KB</td><td>20.12.2017 - 13:24</td></tr>
|
||||||
|
<tr><td class="aws">SurveyBot</td><td>2</td><td>11.12 KB</td><td>12.12.2017 - 23:58</td></tr>
|
||||||
|
<tr><td class="aws">netcraft</td><td>12</td><td>74.29 KB</td><td>10.12.2017 - 04:13</td></tr>
|
||||||
|
<tr><td class="aws">Googlebot-Image</td><td>1</td><td>5.42 KB</td><td>10.12.2017 - 01:51</td></tr>
|
||||||
|
<tr><td class="aws">empty user agent string</td><td>4</td><td>1.10 KB</td><td>05.12.2017 - 09:39</td></tr>
|
||||||
|
</table></td></tr></table><span style="font: 11px verdana, arial, helvetica;">* Die Robots, die hier angezeigt werden, zeigen Treffer oder Traffic welchen Besucher "nicht gesehen" haben und sind in den übrigen Diagrammen nicht enthalten. Zahlen hinter + sind erfolgreiche Treffer auf die "robots.txt"-Datei</span><br />
|
||||||
|
<br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,88 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2017-12) - osdetail">
|
||||||
|
<title>Statistik für mettcalc.de (2017-12) - osdetail</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=osdetail" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.01.2018 - 00:00</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Dez 2017</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="osversions"> </a><br /><table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Betriebssysteme </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th colspan="2">Versionen</th><th bgcolor="#4477DD" width="80">Seiten</th><th bgcolor="#4477DD" width="80">Prozent</th><th bgcolor="#66DDEE" width="80">Zugriffe</th><th bgcolor="#66DDEE" width="80">Prozent</th></tr>
|
||||||
|
<tr bgcolor="#F6F6F6"><td class="aws" colspan="2"><b>Macintosh</b></td><td><b>38</b></td><td><b>59.3 %</b></td><td><b>38</b></td><td><b>59.3 %</b></td><td> </td></tr>
|
||||||
|
<tr><td width="32"><img src="/awstats-icon/os/macosx12.png" alt='' title='' /></td><td class="aws"><a href="http://www.apple.com/macosx/" title="Mac OS X home page [new window]" target="_blank">Mac OS X 10.12 Sierra</a></td><td>38</td><td>59.3 %</td><td>38</td><td>59.3 %</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="261" height="5" /><br /><img src="/awstats-icon/other/hh.png" width="261" height="5" /><br /></td></tr>
|
||||||
|
<tr bgcolor="#F6F6F6"><td class="aws" colspan="2"><b>Windows</b></td><td><b>19</b></td><td><b>29.6 %</b></td><td><b>19</b></td><td><b>29.6 %</b></td><td> </td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/os/win8.1.png" alt='' title='' /></td><td class="aws"><a href="http://www.microsoft.com/windows8/" title="Windows 8.1 home page [new window]" target="_blank">Windows 8.1</a></td><td>1</td><td>1.5 %</td><td>1</td><td>1.5 %</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="7" height="5" /><br /><img src="/awstats-icon/other/hh.png" width="7" height="5" /><br /></td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/os/win7.png" alt='' title='' /></td><td class="aws"><a href="http://windows.microsoft.com/en-US/windows7/products/home/" title="Windows 7 home page [new window]" target="_blank">Windows 7</a></td><td>13</td><td>20.3 %</td><td>13</td><td>20.3 %</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="89" height="5" /><br /><img src="/awstats-icon/other/hh.png" width="89" height="5" /><br /></td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/os/win16.png" alt='' title='' /></td><td class="aws"><a href="http://www.microsoft.com/windows/WinHistoryDesktop.mspx#E1B" title="Windows 3.xx history page [new window]" target="_blank">Windows 3.xx</a></td><td>1</td><td>1.5 %</td><td>1</td><td>1.5 %</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="7" height="5" /><br /><img src="/awstats-icon/other/hh.png" width="7" height="5" /><br /></td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/os/win10.png" alt='' title='' /></td><td class="aws"><a href="http://www.microsoft.com/windows10/" title="Windows 10 home page [new window]" target="_blank">Windows 10</a></td><td>4</td><td>6.2 %</td><td>4</td><td>6.2 %</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="28" height="5" /><br /><img src="/awstats-icon/other/hh.png" width="28" height="5" /><br /></td></tr>
|
||||||
|
<tr bgcolor="#F6F6F6"><td class="aws" colspan="2"><b>Linux</b></td><td><b>6</b></td><td><b>9.3 %</b></td><td><b>6</b></td><td><b>9.3 %</b></td><td> </td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/os/linuxandroid.png" alt='' title='' /></td><td class="aws"><a href="http://code.google.com/android/" title="Google Android home page [new window]" target="_blank">Google Android</a></td><td>2</td><td>3.1 %</td><td>2</td><td>3.1 %</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="14" height="5" /><br /><img src="/awstats-icon/other/hh.png" width="14" height="5" /><br /></td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/os/linux.png" alt='' title='' /></td><td class="aws">GNU Linux (Unknown or unspecified distribution)</td><td>4</td><td>6.2 %</td><td>4</td><td>6.2 %</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="28" height="5" /><br /><img src="/awstats-icon/other/hh.png" width="28" height="5" /><br /></td></tr>
|
||||||
|
<tr bgcolor="#F6F6F6"><td class="aws" colspan="2"><b>Sonstige</b></td><td><b>1</b></td><td><b>1.5 %</b></td><td><b>1</b></td><td><b>1.5 %</b></td><td> </td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/browser/unknown.png" alt='' title='' /></td><td class="aws"><span style="color: #666688">Unbekannt</span></td><td>1</td><td>1.5 %</td><td>1</td><td>1.5 %</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="7" height="5" /><br /><img src="/awstats-icon/other/hh.png" width="7" height="5" /><br /></td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,77 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2017-12) - refererpages">
|
||||||
|
<title>Statistik für mettcalc.de (2017-12) - refererpages</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=refererpages" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.01.2018 - 00:00</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Dez 2017</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="refererpages"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Links von einer externen Seite (keine Suchmaschinen) </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>Total: 0 Unterschiedliche Seiten</th><th bgcolor="#4477DD" width="80">Seiten</th><th bgcolor="#4477DD" width="80">Prozent</th><th bgcolor="#66DDEE" width="80">Zugriffe</th><th bgcolor="#66DDEE" width="80">Prozent</th></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,77 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2017-12) - refererse">
|
||||||
|
<title>Statistik für mettcalc.de (2017-12) - refererse</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=refererse" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.01.2018 - 00:00</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Dez 2017</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="refererse"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Links von einer Internet-Suchmaschine </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>0 Suchmaschinen</th><th bgcolor="#4477DD" width="80">Seiten</th><th bgcolor="#4477DD" width="80">Prozent</th><th bgcolor="#66DDEE" width="80">Zugriffe</th><th bgcolor="#66DDEE" width="80">Prozent</th></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,63 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2017-12) - session">
|
||||||
|
<title>Statistik für mettcalc.de (2017-12) - session</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=session" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.01.2018 - 00:00</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Dez 2017</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
@@ -0,0 +1,78 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2017-12) - unknownbrowser">
|
||||||
|
<title>Statistik für mettcalc.de (2017-12) - unknownbrowser</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=unknownbrowser" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.01.2018 - 00:00</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Dez 2017</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="unknownbrowser"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Unbekannter Browser </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>User agent (1)</th><th>Letzter Zugriff</th></tr>
|
||||||
|
<tr><td class="aws">WhatsApp/2.17.427_A</td><td nowrap="nowrap">10.12.2017 - 13:29</td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,83 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2017-12) - unknownip">
|
||||||
|
<title>Statistik für mettcalc.de (2017-12) - unknownip</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=unknownip" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.01.2018 - 00:00</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Dez 2017</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="unknownip"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Unaufgelöste IP Adressen </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>5 Unbekannte (IP konnte nicht aufgelöst werden )</th><th bgcolor="#4477DD" width="80">Seiten</th><th bgcolor="#66DDEE" width="80">Zugriffe</th><th class="datasize" bgcolor="#2EA495" width="80">Bytes</th><th width="120">Letzter Zugriff</th></tr>
|
||||||
|
<tr><td class="aws">173.208.148.219</td><td>1</td><td>1</td><td>5.65 KB</td><td>11.12.2017 - 10:34</td></tr>
|
||||||
|
<tr><td class="aws">38.130.186.83</td><td>1</td><td>1</td><td>4.71 KB</td><td>05.12.2017 - 12:42</td></tr>
|
||||||
|
<tr><td class="aws">38.130.177.138</td><td>1</td><td>1</td><td>4.71 KB</td><td>05.12.2017 - 12:52</td></tr>
|
||||||
|
<tr><td class="aws">38.130.177.202</td><td>1</td><td>1</td><td>4.71 KB</td><td>05.12.2017 - 12:51</td></tr>
|
||||||
|
<tr><td class="aws">38.130.177.49</td><td>1</td><td>1</td><td>4.71 KB</td><td>05.12.2017 - 12:44</td></tr>
|
||||||
|
<tr><td class="aws"><span style="color: #666688">Bekannte</span></td><td>59</td><td>59</td><td>287.33 KB</td><td> </td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,78 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2017-12) - unknownos">
|
||||||
|
<title>Statistik für mettcalc.de (2017-12) - unknownos</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=unknownos" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.01.2018 - 00:00</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Dez 2017</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="unknownos"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Unbekanntes Betriebssystem </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>User agent (1)</th><th>Letzter Zugriff</th></tr>
|
||||||
|
<tr><td class="aws">WhatsApp/2.17.427_A</td><td nowrap="nowrap">10.12.2017 - 13:29</td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,78 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2017-12) - urldetail">
|
||||||
|
<title>Statistik für mettcalc.de (2017-12) - urldetail</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=urldetail" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.01.2018 - 00:00</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Dez 2017</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="urls"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Seiten-URL </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>Total: 1 Unterschiedliche Seiten</th><th bgcolor="#4477DD" width="80">Zugriffe</th><th class="datasize" bgcolor="#2EA495" width="80">durchschnitt. Größe</th><th bgcolor="#CEC2E8" width="80">Einstiegsseiten</th><th bgcolor="#C1B2E2" width="80">Exit Seiten</th><th> </th></tr>
|
||||||
|
<tr><td class="aws"><a href="http://mettcalc.de/" target="url" rel="nofollow">/</a></td><td>64</td><td>4.87 KB</td><td>57</td><td>56</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="261" height="4" /><br /><img src="/awstats-icon/other/hk.png" width="261" height="4" /><br /><img src="/awstats-icon/other/he.png" width="232" height="4" /><br /><img src="/awstats-icon/other/hx.png" width="228" height="4" /></td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,78 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2017-12) - urlentry">
|
||||||
|
<title>Statistik für mettcalc.de (2017-12) - urlentry</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=urlentry" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.01.2018 - 00:00</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Dez 2017</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="urls"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Einstiegsseiten </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>Total: 1 Unterschiedliche Seiten</th><th bgcolor="#4477DD" width="80">Zugriffe</th><th class="datasize" bgcolor="#2EA495" width="80">durchschnitt. Größe</th><th bgcolor="#CEC2E8" width="80">Einstiegsseiten</th><th bgcolor="#C1B2E2" width="80">Exit Seiten</th><th> </th></tr>
|
||||||
|
<tr><td class="aws"><a href="http://mettcalc.de/" target="url" rel="nofollow">/</a></td><td>64</td><td>4.87 KB</td><td>57</td><td>56</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="261" height="4" /><br /><img src="/awstats-icon/other/hk.png" width="261" height="4" /><br /><img src="/awstats-icon/other/he.png" width="232" height="4" /><br /><img src="/awstats-icon/other/hx.png" width="228" height="4" /></td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,78 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2017-12) - urlexit">
|
||||||
|
<title>Statistik für mettcalc.de (2017-12) - urlexit</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=urlexit" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.01.2018 - 00:00</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Dez 2017</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="urls"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Exit Seiten </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>Total: 1 Unterschiedliche Seiten</th><th bgcolor="#4477DD" width="80">Zugriffe</th><th class="datasize" bgcolor="#2EA495" width="80">durchschnitt. Größe</th><th bgcolor="#CEC2E8" width="80">Einstiegsseiten</th><th bgcolor="#C1B2E2" width="80">Exit Seiten</th><th> </th></tr>
|
||||||
|
<tr><td class="aws"><a href="http://mettcalc.de/" target="url" rel="nofollow">/</a></td><td>64</td><td>4.87 KB</td><td>57</td><td>56</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="261" height="4" /><br /><img src="/awstats-icon/other/hk.png" width="261" height="4" /><br /><img src="/awstats-icon/other/he.png" width="232" height="4" /><br /><img src="/awstats-icon/other/hx.png" width="228" height="4" /></td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,645 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2018-10) - main">
|
||||||
|
<title>Statistik für mettcalc.de (2018-10) - main</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.11.2018 - 00:01</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Okt 2018</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="awsm" width="150" valign="top"><b>Wann:</b></td>
|
||||||
|
<td class="awsm"><a href="#month">Monatliche Historie</a> <a href="#daysofmonth">Tage im Monat</a> <a href="#daysofweek">Wochentage</a> <a href="#hours">Stunden (Serverzeit)</a> </td></tr>
|
||||||
|
<tr><td class="awsm" width="150" valign="top"><b>Wer:</b></td>
|
||||||
|
<td class="awsm"><a href="#countries">Länder</a> <a href="awstats.mettcalc.de.alldomains.html" target="awstatsbis">Gesamte Liste</a>
|
||||||
|
<a href="#visitors">Rechner</a> <a href="awstats.mettcalc.de.allhosts.html" target="awstatsbis">Gesamte Liste</a>
|
||||||
|
<a href="awstats.mettcalc.de.lasthosts.html" target="awstatsbis">Letzter Zugriff</a>
|
||||||
|
<a href="awstats.mettcalc.de.unknownip.html" target="awstatsbis">Unaufgelöste IP Adressen</a>
|
||||||
|
<a href="#robots">Robots/Spiders (Suchmaschinen)</a> <a href="awstats.mettcalc.de.allrobots.html" target="awstatsbis">Gesamte Liste</a>
|
||||||
|
<a href="awstats.mettcalc.de.lastrobots.html" target="awstatsbis">Letzter Zugriff</a>
|
||||||
|
</td></tr>
|
||||||
|
<tr><td class="awsm" valign="top"><b>Navigation:</b></td>
|
||||||
|
<td class="awsm"><a href="#sessions">Aufenthaltsdauer</a> <a href="#filetypes">Datei-Typen</a> <a href="#downloads">Downloads</a> <a href="awstats.mettcalc.de.downloads.html" target="awstatsbis">Gesamte Liste</a>
|
||||||
|
<a href="#urls">Zugriffe</a>
|
||||||
|
<a href="awstats.mettcalc.de.urldetail.html" target="awstatsbis">Gesamte Liste</a>
|
||||||
|
<a href="awstats.mettcalc.de.urlentry.html" target="awstatsbis">Einstiegsseiten</a>
|
||||||
|
<a href="awstats.mettcalc.de.urlexit.html" target="awstatsbis">Exit Seiten</a>
|
||||||
|
<a href="#os">Betriebssysteme</a> <a href="awstats.mettcalc.de.osdetail.html" target="awstatsbis">Versionen</a>
|
||||||
|
<a href="awstats.mettcalc.de.unknownos.html" target="awstatsbis">Unbekannt</a>
|
||||||
|
<a href="#browsers">Browser</a> <a href="awstats.mettcalc.de.browserdetail.html" target="awstatsbis">Versionen</a>
|
||||||
|
<a href="awstats.mettcalc.de.unknownbrowser.html" target="awstatsbis">Unbekannt</a>
|
||||||
|
</td></tr>
|
||||||
|
<tr><td class="awsm" width="150" valign="top"><b>Verweise:</b></td>
|
||||||
|
<td class="awsm"><a href="#referer">Herkunft</a> <a href="awstats.mettcalc.de.refererse.html" target="awstatsbis">Suchmaschinen</a>
|
||||||
|
<a href="awstats.mettcalc.de.refererpages.html" target="awstatsbis">Websites</a>
|
||||||
|
<a href="#keys">Häufigkeit</a> <a href="awstats.mettcalc.de.keyphrases.html" target="awstatsbis">Suchausdrücke</a>
|
||||||
|
<a href="awstats.mettcalc.de.keywords.html" target="awstatsbis">Suchbegriffe</a>
|
||||||
|
</td></tr>
|
||||||
|
<tr><td class="awsm" width="150" valign="top"><b>Sonstige:</b></td>
|
||||||
|
<td class="awsm"><a href="#misc">Verschiedenes</a> <a href="#errors">HTTP Fehlercodes</a> <a href="awstats.mettcalc.de.errors400.html" target="awstatsbis">Fehlerhafte Zugriffe (400)</a>
|
||||||
|
<a href="awstats.mettcalc.de.errors403.html" target="awstatsbis">Fehlerhafte Zugriffe (403)</a>
|
||||||
|
<a href="awstats.mettcalc.de.errors404.html" target="awstatsbis">Fehlerhafte Zugriffe (404)</a>
|
||||||
|
</td></tr>
|
||||||
|
</table>
|
||||||
|
<br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Zusammenfassung </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><td class="aws"><b>Zeitraum</b></td><td class="aws" colspan="5">
|
||||||
|
Monat Okt 2018</td></tr>
|
||||||
|
<tr bgcolor="#ECECEC"><td class="aws"><b>Erster Zugriff</b></td>
|
||||||
|
<td class="aws" colspan="5">01.10.2018 - 20:22</td></tr>
|
||||||
|
<tr bgcolor="#ECECEC"><td class="aws"><b>Letzter Zugriff</b></td>
|
||||||
|
<td class="aws" colspan="5">31.10.2018 - 21:57</td>
|
||||||
|
</tr>
|
||||||
|
<tr><td bgcolor="#CCCCDD"> </td><td width="17%" bgcolor="#FFAA66">Unterschiedliche Besucher</td><td width="17%" bgcolor="#F4F090">Anzahl der Besuche</td><td width="17%" bgcolor="#4477DD">Seiten</td><td width="17%" bgcolor="#66DDEE">Zugriffe</td><td width="17%" bgcolor="#2EA495">Bytes</td></tr>
|
||||||
|
<tr><td class="aws">gesehener Traffic *</td><td><b>21</b><br /> </td><td><b>86</b><br />(4.09 Besuche/Besucher)</td><td><b>91</b><br />(1.05 Seiten/Besuch)</td><td><b>97</b><br />(1.12 Zugriffe/Besuch)</td><td><b>509.01 KB</b><br />(5.91 KB/Besuch)</td></tr>
|
||||||
|
<tr><td class="aws">nicht gesehener Traffic *</td><td colspan="2"> <br /> </td>
|
||||||
|
<td><b>337</b></td><td><b>487</b></td><td><b>1.62 MB</b></td></tr>
|
||||||
|
</table></td></tr></table><span style="font: 11px verdana, arial, helvetica;">* Nicht gesehener Traffic ist Traffic, welcher von Robots, Würmern oder Antworten mit speziellem HTTP-Statuscode</span><br />
|
||||||
|
<br />
|
||||||
|
|
||||||
|
<a name="month"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Monatliche Historie </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td align="center">
|
||||||
|
<center>
|
||||||
|
<table>
|
||||||
|
<tr valign="bottom"><td> </td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vu.png" height="6" width="6" alt='Unterschiedliche Besucher: 9' title='Unterschiedliche Besucher: 9' /><img align="bottom" src="/awstats-icon/other/vv.png" height="26" width="6" alt='Anzahl der Besuche: 44' title='Anzahl der Besuche: 44' /><img align="bottom" src="/awstats-icon/other/vp.png" height="20" width="6" alt='Seiten: 45' title='Seiten: 45' /><img align="bottom" src="/awstats-icon/other/vh.png" height="20" width="6" alt='Zugriffe: 45' title='Zugriffe: 45' /><img align="bottom" src="/awstats-icon/other/vk.png" height="24" width="6" alt='Bytes: 231.88 KB' title='Bytes: 231.88 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vu.png" height="6" width="6" alt='Unterschiedliche Besucher: 10' title='Unterschiedliche Besucher: 10' /><img align="bottom" src="/awstats-icon/other/vv.png" height="28" width="6" alt='Anzahl der Besuche: 48' title='Anzahl der Besuche: 48' /><img align="bottom" src="/awstats-icon/other/vp.png" height="24" width="6" alt='Seiten: 54' title='Seiten: 54' /><img align="bottom" src="/awstats-icon/other/vh.png" height="24" width="6" alt='Zugriffe: 54' title='Zugriffe: 54' /><img align="bottom" src="/awstats-icon/other/vk.png" height="27" width="6" alt='Bytes: 255.70 KB' title='Bytes: 255.70 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vu.png" height="63" width="6" alt='Unterschiedliche Besucher: 109' title='Unterschiedliche Besucher: 109' /><img align="bottom" src="/awstats-icon/other/vv.png" height="91" width="6" alt='Anzahl der Besuche: 156' title='Anzahl der Besuche: 156' /><img align="bottom" src="/awstats-icon/other/vp.png" height="78" width="6" alt='Seiten: 177' title='Seiten: 177' /><img align="bottom" src="/awstats-icon/other/vh.png" height="89" width="6" alt='Zugriffe: 201' title='Zugriffe: 201' /><img align="bottom" src="/awstats-icon/other/vk.png" height="91" width="6" alt='Bytes: 884.50 KB' title='Bytes: 884.50 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vu.png" height="10" width="6" alt='Unterschiedliche Besucher: 16' title='Unterschiedliche Besucher: 16' /><img align="bottom" src="/awstats-icon/other/vv.png" height="31" width="6" alt='Anzahl der Besuche: 52' title='Anzahl der Besuche: 52' /><img align="bottom" src="/awstats-icon/other/vp.png" height="26" width="6" alt='Seiten: 57' title='Seiten: 57' /><img align="bottom" src="/awstats-icon/other/vh.png" height="26" width="6" alt='Zugriffe: 58' title='Zugriffe: 58' /><img align="bottom" src="/awstats-icon/other/vk.png" height="27" width="6" alt='Bytes: 257.63 KB' title='Bytes: 257.63 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vu.png" height="47" width="6" alt='Unterschiedliche Besucher: 80' title='Unterschiedliche Besucher: 80' /><img align="bottom" src="/awstats-icon/other/vv.png" height="78" width="6" alt='Anzahl der Besuche: 135' title='Anzahl der Besuche: 135' /><img align="bottom" src="/awstats-icon/other/vp.png" height="62" width="6" alt='Seiten: 141' title='Seiten: 141' /><img align="bottom" src="/awstats-icon/other/vh.png" height="91" width="6" alt='Zugriffe: 205' title='Zugriffe: 205' /><img align="bottom" src="/awstats-icon/other/vk.png" height="78" width="6" alt='Bytes: 763.33 KB' title='Bytes: 763.33 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vu.png" height="24" width="6" alt='Unterschiedliche Besucher: 40' title='Unterschiedliche Besucher: 40' /><img align="bottom" src="/awstats-icon/other/vv.png" height="50" width="6" alt='Anzahl der Besuche: 85' title='Anzahl der Besuche: 85' /><img align="bottom" src="/awstats-icon/other/vp.png" height="40" width="6" alt='Seiten: 90' title='Seiten: 90' /><img align="bottom" src="/awstats-icon/other/vh.png" height="45" width="6" alt='Zugriffe: 101' title='Zugriffe: 101' /><img align="bottom" src="/awstats-icon/other/vk.png" height="43" width="6" alt='Bytes: 416.76 KB' title='Bytes: 416.76 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vu.png" height="9" width="6" alt='Unterschiedliche Besucher: 15' title='Unterschiedliche Besucher: 15' /><img align="bottom" src="/awstats-icon/other/vv.png" height="45" width="6" alt='Anzahl der Besuche: 77' title='Anzahl der Besuche: 77' /><img align="bottom" src="/awstats-icon/other/vp.png" height="38" width="6" alt='Seiten: 86' title='Seiten: 86' /><img align="bottom" src="/awstats-icon/other/vh.png" height="39" width="6" alt='Zugriffe: 87' title='Zugriffe: 87' /><img align="bottom" src="/awstats-icon/other/vk.png" height="43" width="6" alt='Bytes: 415.58 KB' title='Bytes: 415.58 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vu.png" height="13" width="6" alt='Unterschiedliche Besucher: 21' title='Unterschiedliche Besucher: 21' /><img align="bottom" src="/awstats-icon/other/vv.png" height="48" width="6" alt='Anzahl der Besuche: 83' title='Anzahl der Besuche: 83' /><img align="bottom" src="/awstats-icon/other/vp.png" height="42" width="6" alt='Seiten: 94' title='Seiten: 94' /><img align="bottom" src="/awstats-icon/other/vh.png" height="45" width="6" alt='Zugriffe: 101' title='Zugriffe: 101' /><img align="bottom" src="/awstats-icon/other/vk.png" height="44" width="6" alt='Bytes: 425.21 KB' title='Bytes: 425.21 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vu.png" height="10" width="6" alt='Unterschiedliche Besucher: 17' title='Unterschiedliche Besucher: 17' /><img align="bottom" src="/awstats-icon/other/vv.png" height="43" width="6" alt='Anzahl der Besuche: 73' title='Anzahl der Besuche: 73' /><img align="bottom" src="/awstats-icon/other/vp.png" height="34" width="6" alt='Seiten: 76' title='Seiten: 76' /><img align="bottom" src="/awstats-icon/other/vh.png" height="35" width="6" alt='Zugriffe: 78' title='Zugriffe: 78' /><img align="bottom" src="/awstats-icon/other/vk.png" height="41" width="6" alt='Bytes: 399.32 KB' title='Bytes: 399.32 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vu.png" height="13" width="6" alt='Unterschiedliche Besucher: 21' title='Unterschiedliche Besucher: 21' /><img align="bottom" src="/awstats-icon/other/vv.png" height="50" width="6" alt='Anzahl der Besuche: 86' title='Anzahl der Besuche: 86' /><img align="bottom" src="/awstats-icon/other/vp.png" height="40" width="6" alt='Seiten: 91' title='Seiten: 91' /><img align="bottom" src="/awstats-icon/other/vh.png" height="43" width="6" alt='Zugriffe: 97' title='Zugriffe: 97' /><img align="bottom" src="/awstats-icon/other/vk.png" height="52" width="6" alt='Bytes: 509.01 KB' title='Bytes: 509.01 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vu.png" height="1" width="6" alt='Unterschiedliche Besucher: 0' title='Unterschiedliche Besucher: 0' /><img align="bottom" src="/awstats-icon/other/vv.png" height="1" width="6" alt='Anzahl der Besuche: 0' title='Anzahl der Besuche: 0' /><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="6" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="6" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="6" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vu.png" height="1" width="6" alt='Unterschiedliche Besucher: 0' title='Unterschiedliche Besucher: 0' /><img align="bottom" src="/awstats-icon/other/vv.png" height="1" width="6" alt='Anzahl der Besuche: 0' title='Anzahl der Besuche: 0' /><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="6" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="6" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="6" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td> </td></tr>
|
||||||
|
<tr valign="middle"><td> </td><td>Jan<br />2018</td><td>Feb<br />2018</td><td>März<br />2018</td><td>Apr<br />2018</td><td>Mai<br />2018</td><td>Juni<br />2018</td><td>Juli<br />2018</td><td>Aug<br />2018</td><td>Sep<br />2018</td><td>Okt<br />2018</td><td>Nov<br />2018</td><td>Dez<br />2018</td><td> </td></tr>
|
||||||
|
</table>
|
||||||
|
<br />
|
||||||
|
<table>
|
||||||
|
<tr><td width="80" bgcolor="#ECECEC">Monat</td><td width="80" bgcolor="#FFAA66">Unterschiedliche Besucher</td><td width="80" bgcolor="#F4F090">Anzahl der Besuche</td><td width="80" bgcolor="#4477DD">Seiten</td><td width="80" bgcolor="#66DDEE">Zugriffe</td><td width="80" bgcolor="#2EA495">Bytes</td></tr>
|
||||||
|
<tr><td>Jan 2018</td><td>9</td><td>44</td><td>45</td><td>45</td><td>231.88 KB</td></tr>
|
||||||
|
<tr><td>Feb 2018</td><td>10</td><td>48</td><td>54</td><td>54</td><td>255.70 KB</td></tr>
|
||||||
|
<tr><td>März 2018</td><td>109</td><td>156</td><td>177</td><td>201</td><td>884.50 KB</td></tr>
|
||||||
|
<tr><td>Apr 2018</td><td>16</td><td>52</td><td>57</td><td>58</td><td>257.63 KB</td></tr>
|
||||||
|
<tr><td>Mai 2018</td><td>80</td><td>135</td><td>141</td><td>205</td><td>763.33 KB</td></tr>
|
||||||
|
<tr><td>Juni 2018</td><td>40</td><td>85</td><td>90</td><td>101</td><td>416.76 KB</td></tr>
|
||||||
|
<tr><td>Juli 2018</td><td>15</td><td>77</td><td>86</td><td>87</td><td>415.58 KB</td></tr>
|
||||||
|
<tr><td>Aug 2018</td><td>21</td><td>83</td><td>94</td><td>101</td><td>425.21 KB</td></tr>
|
||||||
|
<tr><td>Sep 2018</td><td>17</td><td>73</td><td>76</td><td>78</td><td>399.32 KB</td></tr>
|
||||||
|
<tr><td>Okt 2018</td><td>21</td><td>86</td><td>91</td><td>97</td><td>509.01 KB</td></tr>
|
||||||
|
<tr><td>Nov 2018</td><td>0</td><td>0</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr><td>Dez 2018</td><td>0</td><td>0</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr><td bgcolor="#ECECEC">Total</td><td bgcolor="#ECECEC">338</td><td bgcolor="#ECECEC">839</td><td bgcolor="#ECECEC">911</td><td bgcolor="#ECECEC">1.027</td><td bgcolor="#ECECEC">4.45 MB</td></tr>
|
||||||
|
</table>
|
||||||
|
<br />
|
||||||
|
</center>
|
||||||
|
</td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
|
||||||
|
<a name="when"> </a>
|
||||||
|
|
||||||
|
<a name="daysofmonth"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Tage im Monat </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td align="center">
|
||||||
|
<center>
|
||||||
|
<table>
|
||||||
|
<tr valign="bottom">
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="13" width="4" alt='Anzahl der Besuche: 1' title='Anzahl der Besuche: 1' /><img align="bottom" src="/awstats-icon/other/vp.png" height="12" width="4" alt='Seiten: 1' title='Seiten: 1' /><img align="bottom" src="/awstats-icon/other/vh.png" height="12" width="4" alt='Zugriffe: 1' title='Zugriffe: 1' /><img align="bottom" src="/awstats-icon/other/vk.png" height="12" width="4" alt='Bytes: 5.50 KB' title='Bytes: 5.50 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="78" width="4" alt='Anzahl der Besuche: 6' title='Anzahl der Besuche: 6' /><img align="bottom" src="/awstats-icon/other/vp.png" height="79" width="4" alt='Seiten: 7' title='Seiten: 7' /><img align="bottom" src="/awstats-icon/other/vh.png" height="91" width="4" alt='Zugriffe: 8' title='Zugriffe: 8' /><img align="bottom" src="/awstats-icon/other/vk.png" height="81" width="4" alt='Bytes: 38.25 KB' title='Bytes: 38.25 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="1" width="4" alt='Anzahl der Besuche: 0' title='Anzahl der Besuche: 0' /><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="4" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="4" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="4" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="78" width="4" alt='Anzahl der Besuche: 6' title='Anzahl der Besuche: 6' /><img align="bottom" src="/awstats-icon/other/vp.png" height="68" width="4" alt='Seiten: 6' title='Seiten: 6' /><img align="bottom" src="/awstats-icon/other/vh.png" height="91" width="4" alt='Zugriffe: 8' title='Zugriffe: 8' /><img align="bottom" src="/awstats-icon/other/vk.png" height="72" width="4" alt='Bytes: 33.96 KB' title='Bytes: 33.96 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="91" width="4" alt='Anzahl der Besuche: 7' title='Anzahl der Besuche: 7' /><img align="bottom" src="/awstats-icon/other/vp.png" height="91" width="4" alt='Seiten: 8' title='Seiten: 8' /><img align="bottom" src="/awstats-icon/other/vh.png" height="91" width="4" alt='Zugriffe: 8' title='Zugriffe: 8' /><img align="bottom" src="/awstats-icon/other/vk.png" height="91" width="4" alt='Bytes: 42.54 KB' title='Bytes: 42.54 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="26" width="4" alt='Anzahl der Besuche: 2' title='Anzahl der Besuche: 2' /><img align="bottom" src="/awstats-icon/other/vp.png" height="23" width="4" alt='Seiten: 2' title='Seiten: 2' /><img align="bottom" src="/awstats-icon/other/vh.png" height="23" width="4" alt='Zugriffe: 2' title='Zugriffe: 2' /><img align="bottom" src="/awstats-icon/other/vk.png" height="24" width="4" alt='Bytes: 10.99 KB' title='Bytes: 10.99 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="26" width="4" alt='Anzahl der Besuche: 2' title='Anzahl der Besuche: 2' /><img align="bottom" src="/awstats-icon/other/vp.png" height="34" width="4" alt='Seiten: 3' title='Seiten: 3' /><img align="bottom" src="/awstats-icon/other/vh.png" height="57" width="4" alt='Zugriffe: 5' title='Zugriffe: 5' /><img align="bottom" src="/awstats-icon/other/vk.png" height="40" width="4" alt='Bytes: 18.81 KB' title='Bytes: 18.81 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="39" width="4" alt='Anzahl der Besuche: 3' title='Anzahl der Besuche: 3' /><img align="bottom" src="/awstats-icon/other/vp.png" height="34" width="4" alt='Seiten: 3' title='Seiten: 3' /><img align="bottom" src="/awstats-icon/other/vh.png" height="34" width="4" alt='Zugriffe: 3' title='Zugriffe: 3' /><img align="bottom" src="/awstats-icon/other/vk.png" height="35" width="4" alt='Bytes: 16.49 KB' title='Bytes: 16.49 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="1" width="4" alt='Anzahl der Besuche: 0' title='Anzahl der Besuche: 0' /><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="4" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="4" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="4" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="39" width="4" alt='Anzahl der Besuche: 3' title='Anzahl der Besuche: 3' /><img align="bottom" src="/awstats-icon/other/vp.png" height="34" width="4" alt='Seiten: 3' title='Seiten: 3' /><img align="bottom" src="/awstats-icon/other/vh.png" height="34" width="4" alt='Zugriffe: 3' title='Zugriffe: 3' /><img align="bottom" src="/awstats-icon/other/vk.png" height="35" width="4" alt='Bytes: 16.18 KB' title='Bytes: 16.18 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="52" width="4" alt='Anzahl der Besuche: 4' title='Anzahl der Besuche: 4' /><img align="bottom" src="/awstats-icon/other/vp.png" height="46" width="4" alt='Seiten: 4' title='Seiten: 4' /><img align="bottom" src="/awstats-icon/other/vh.png" height="46" width="4" alt='Zugriffe: 4' title='Zugriffe: 4' /><img align="bottom" src="/awstats-icon/other/vk.png" height="46" width="4" alt='Bytes: 21.38 KB' title='Bytes: 21.38 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="39" width="4" alt='Anzahl der Besuche: 3' title='Anzahl der Besuche: 3' /><img align="bottom" src="/awstats-icon/other/vp.png" height="34" width="4" alt='Seiten: 3' title='Seiten: 3' /><img align="bottom" src="/awstats-icon/other/vh.png" height="34" width="4" alt='Zugriffe: 3' title='Zugriffe: 3' /><img align="bottom" src="/awstats-icon/other/vk.png" height="71" width="4" alt='Bytes: 33.30 KB' title='Bytes: 33.30 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="52" width="4" alt='Anzahl der Besuche: 4' title='Anzahl der Besuche: 4' /><img align="bottom" src="/awstats-icon/other/vp.png" height="46" width="4" alt='Seiten: 4' title='Seiten: 4' /><img align="bottom" src="/awstats-icon/other/vh.png" height="46" width="4" alt='Zugriffe: 4' title='Zugriffe: 4' /><img align="bottom" src="/awstats-icon/other/vk.png" height="47" width="4" alt='Bytes: 21.98 KB' title='Bytes: 21.98 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="1" width="4" alt='Anzahl der Besuche: 0' title='Anzahl der Besuche: 0' /><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="4" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="4" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="4" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="39" width="4" alt='Anzahl der Besuche: 3' title='Anzahl der Besuche: 3' /><img align="bottom" src="/awstats-icon/other/vp.png" height="46" width="4" alt='Seiten: 4' title='Seiten: 4' /><img align="bottom" src="/awstats-icon/other/vh.png" height="57" width="4" alt='Zugriffe: 5' title='Zugriffe: 5' /><img align="bottom" src="/awstats-icon/other/vk.png" height="40" width="4" alt='Bytes: 18.47 KB' title='Bytes: 18.47 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="26" width="4" alt='Anzahl der Besuche: 2' title='Anzahl der Besuche: 2' /><img align="bottom" src="/awstats-icon/other/vp.png" height="23" width="4" alt='Seiten: 2' title='Seiten: 2' /><img align="bottom" src="/awstats-icon/other/vh.png" height="23" width="4" alt='Zugriffe: 2' title='Zugriffe: 2' /><img align="bottom" src="/awstats-icon/other/vk.png" height="24" width="4" alt='Bytes: 10.99 KB' title='Bytes: 10.99 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="26" width="4" alt='Anzahl der Besuche: 2' title='Anzahl der Besuche: 2' /><img align="bottom" src="/awstats-icon/other/vp.png" height="23" width="4" alt='Seiten: 2' title='Seiten: 2' /><img align="bottom" src="/awstats-icon/other/vh.png" height="23" width="4" alt='Zugriffe: 2' title='Zugriffe: 2' /><img align="bottom" src="/awstats-icon/other/vk.png" height="24" width="4" alt='Bytes: 10.99 KB' title='Bytes: 10.99 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="39" width="4" alt='Anzahl der Besuche: 3' title='Anzahl der Besuche: 3' /><img align="bottom" src="/awstats-icon/other/vp.png" height="34" width="4" alt='Seiten: 3' title='Seiten: 3' /><img align="bottom" src="/awstats-icon/other/vh.png" height="34" width="4" alt='Zugriffe: 3' title='Zugriffe: 3' /><img align="bottom" src="/awstats-icon/other/vk.png" height="34" width="4" alt='Bytes: 15.88 KB' title='Bytes: 15.88 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="39" width="4" alt='Anzahl der Besuche: 3' title='Anzahl der Besuche: 3' /><img align="bottom" src="/awstats-icon/other/vp.png" height="34" width="4" alt='Seiten: 3' title='Seiten: 3' /><img align="bottom" src="/awstats-icon/other/vh.png" height="34" width="4" alt='Zugriffe: 3' title='Zugriffe: 3' /><img align="bottom" src="/awstats-icon/other/vk.png" height="34" width="4" alt='Bytes: 15.88 KB' title='Bytes: 15.88 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="26" width="4" alt='Anzahl der Besuche: 2' title='Anzahl der Besuche: 2' /><img align="bottom" src="/awstats-icon/other/vp.png" height="23" width="4" alt='Seiten: 2' title='Seiten: 2' /><img align="bottom" src="/awstats-icon/other/vh.png" height="23" width="4" alt='Zugriffe: 2' title='Zugriffe: 2' /><img align="bottom" src="/awstats-icon/other/vk.png" height="24" width="4" alt='Bytes: 10.99 KB' title='Bytes: 10.99 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="13" width="4" alt='Anzahl der Besuche: 1' title='Anzahl der Besuche: 1' /><img align="bottom" src="/awstats-icon/other/vp.png" height="12" width="4" alt='Seiten: 1' title='Seiten: 1' /><img align="bottom" src="/awstats-icon/other/vh.png" height="12" width="4" alt='Zugriffe: 1' title='Zugriffe: 1' /><img align="bottom" src="/awstats-icon/other/vk.png" height="12" width="4" alt='Bytes: 5.50 KB' title='Bytes: 5.50 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="39" width="4" alt='Anzahl der Besuche: 3' title='Anzahl der Besuche: 3' /><img align="bottom" src="/awstats-icon/other/vp.png" height="34" width="4" alt='Seiten: 3' title='Seiten: 3' /><img align="bottom" src="/awstats-icon/other/vh.png" height="34" width="4" alt='Zugriffe: 3' title='Zugriffe: 3' /><img align="bottom" src="/awstats-icon/other/vk.png" height="35" width="4" alt='Bytes: 16.49 KB' title='Bytes: 16.49 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="1" width="4" alt='Anzahl der Besuche: 0' title='Anzahl der Besuche: 0' /><img align="bottom" src="/awstats-icon/other/vp.png" height="1" width="4" alt='Seiten: 0' title='Seiten: 0' /><img align="bottom" src="/awstats-icon/other/vh.png" height="1" width="4" alt='Zugriffe: 0' title='Zugriffe: 0' /><img align="bottom" src="/awstats-icon/other/vk.png" height="1" width="4" alt='Bytes: 0' title='Bytes: 0' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="39" width="4" alt='Anzahl der Besuche: 3' title='Anzahl der Besuche: 3' /><img align="bottom" src="/awstats-icon/other/vp.png" height="34" width="4" alt='Seiten: 3' title='Seiten: 3' /><img align="bottom" src="/awstats-icon/other/vh.png" height="34" width="4" alt='Zugriffe: 3' title='Zugriffe: 3' /><img align="bottom" src="/awstats-icon/other/vk.png" height="35" width="4" alt='Bytes: 16.49 KB' title='Bytes: 16.49 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="52" width="4" alt='Anzahl der Besuche: 4' title='Anzahl der Besuche: 4' /><img align="bottom" src="/awstats-icon/other/vp.png" height="46" width="4" alt='Seiten: 4' title='Seiten: 4' /><img align="bottom" src="/awstats-icon/other/vh.png" height="46" width="4" alt='Zugriffe: 4' title='Zugriffe: 4' /><img align="bottom" src="/awstats-icon/other/vk.png" height="45" width="4" alt='Bytes: 21.08 KB' title='Bytes: 21.08 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="65" width="4" alt='Anzahl der Besuche: 5' title='Anzahl der Besuche: 5' /><img align="bottom" src="/awstats-icon/other/vp.png" height="68" width="4" alt='Seiten: 6' title='Seiten: 6' /><img align="bottom" src="/awstats-icon/other/vh.png" height="68" width="4" alt='Zugriffe: 6' title='Zugriffe: 6' /><img align="bottom" src="/awstats-icon/other/vk.png" height="67" width="4" alt='Bytes: 31.55 KB' title='Bytes: 31.55 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="39" width="4" alt='Anzahl der Besuche: 3' title='Anzahl der Besuche: 3' /><img align="bottom" src="/awstats-icon/other/vp.png" height="34" width="4" alt='Seiten: 3' title='Seiten: 3' /><img align="bottom" src="/awstats-icon/other/vh.png" height="34" width="4" alt='Zugriffe: 3' title='Zugriffe: 3' /><img align="bottom" src="/awstats-icon/other/vk.png" height="35" width="4" alt='Bytes: 16.49 KB' title='Bytes: 16.49 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="26" width="4" alt='Anzahl der Besuche: 2' title='Anzahl der Besuche: 2' /><img align="bottom" src="/awstats-icon/other/vp.png" height="23" width="4" alt='Seiten: 2' title='Seiten: 2' /><img align="bottom" src="/awstats-icon/other/vh.png" height="23" width="4" alt='Zugriffe: 2' title='Zugriffe: 2' /><img align="bottom" src="/awstats-icon/other/vk.png" height="22" width="4" alt='Bytes: 10.35 KB' title='Bytes: 10.35 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="26" width="4" alt='Anzahl der Besuche: 2' title='Anzahl der Besuche: 2' /><img align="bottom" src="/awstats-icon/other/vp.png" height="23" width="4" alt='Seiten: 2' title='Seiten: 2' /><img align="bottom" src="/awstats-icon/other/vh.png" height="23" width="4" alt='Zugriffe: 2' title='Zugriffe: 2' /><img align="bottom" src="/awstats-icon/other/vk.png" height="24" width="4" alt='Bytes: 10.99 KB' title='Bytes: 10.99 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="52" width="4" alt='Anzahl der Besuche: 4' title='Anzahl der Besuche: 4' /><img align="bottom" src="/awstats-icon/other/vp.png" height="46" width="4" alt='Seiten: 4' title='Seiten: 4' /><img align="bottom" src="/awstats-icon/other/vh.png" height="46" width="4" alt='Zugriffe: 4' title='Zugriffe: 4' /><img align="bottom" src="/awstats-icon/other/vk.png" height="46" width="4" alt='Bytes: 21.34 KB' title='Bytes: 21.34 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vv.png" height="39" width="4" alt='Anzahl der Besuche: 3' title='Anzahl der Besuche: 3' /><img align="bottom" src="/awstats-icon/other/vp.png" height="34" width="4" alt='Seiten: 3' title='Seiten: 3' /><img align="bottom" src="/awstats-icon/other/vh.png" height="34" width="4" alt='Zugriffe: 3' title='Zugriffe: 3' /><img align="bottom" src="/awstats-icon/other/vk.png" height="35" width="4" alt='Bytes: 16.18 KB' title='Bytes: 16.18 KB' /></td>
|
||||||
|
<td> </td><td><img align="bottom" src="/awstats-icon/other/vv.png" height="36" width="4" alt='Anzahl der Besuche: 2.77' title='Anzahl der Besuche: 2.77' /><img align="bottom" src="/awstats-icon/other/vp.png" height="34" width="4" alt='Seiten: 2.94' title='Seiten: 2.94' /><img align="bottom" src="/awstats-icon/other/vh.png" height="36" width="4" alt='Zugriffe: 3.13' title='Zugriffe: 3.13' /><img align="bottom" src="/awstats-icon/other/vk.png" height="35" width="4" alt='Bytes: 16813.65' title='Bytes: 16813.65' /></td>
|
||||||
|
</tr>
|
||||||
|
<tr valign="middle"><td>01<br /><span style="font-size: 9px;">Okt</span></td>
|
||||||
|
<td>02<br /><span style="font-size: 9px;">Okt</span></td>
|
||||||
|
<td>03<br /><span style="font-size: 9px;">Okt</span></td>
|
||||||
|
<td>04<br /><span style="font-size: 9px;">Okt</span></td>
|
||||||
|
<td>05<br /><span style="font-size: 9px;">Okt</span></td>
|
||||||
|
<td bgcolor="#EAEAEA">06<br /><span style="font-size: 9px;">Okt</span></td>
|
||||||
|
<td bgcolor="#EAEAEA">07<br /><span style="font-size: 9px;">Okt</span></td>
|
||||||
|
<td>08<br /><span style="font-size: 9px;">Okt</span></td>
|
||||||
|
<td>09<br /><span style="font-size: 9px;">Okt</span></td>
|
||||||
|
<td>10<br /><span style="font-size: 9px;">Okt</span></td>
|
||||||
|
<td>11<br /><span style="font-size: 9px;">Okt</span></td>
|
||||||
|
<td>12<br /><span style="font-size: 9px;">Okt</span></td>
|
||||||
|
<td bgcolor="#EAEAEA">13<br /><span style="font-size: 9px;">Okt</span></td>
|
||||||
|
<td bgcolor="#EAEAEA">14<br /><span style="font-size: 9px;">Okt</span></td>
|
||||||
|
<td>15<br /><span style="font-size: 9px;">Okt</span></td>
|
||||||
|
<td>16<br /><span style="font-size: 9px;">Okt</span></td>
|
||||||
|
<td>17<br /><span style="font-size: 9px;">Okt</span></td>
|
||||||
|
<td>18<br /><span style="font-size: 9px;">Okt</span></td>
|
||||||
|
<td>19<br /><span style="font-size: 9px;">Okt</span></td>
|
||||||
|
<td bgcolor="#EAEAEA">20<br /><span style="font-size: 9px;">Okt</span></td>
|
||||||
|
<td bgcolor="#EAEAEA">21<br /><span style="font-size: 9px;">Okt</span></td>
|
||||||
|
<td>22<br /><span style="font-size: 9px;">Okt</span></td>
|
||||||
|
<td>23<br /><span style="font-size: 9px;">Okt</span></td>
|
||||||
|
<td>24<br /><span style="font-size: 9px;">Okt</span></td>
|
||||||
|
<td>25<br /><span style="font-size: 9px;">Okt</span></td>
|
||||||
|
<td>26<br /><span style="font-size: 9px;">Okt</span></td>
|
||||||
|
<td bgcolor="#EAEAEA">27<br /><span style="font-size: 9px;">Okt</span></td>
|
||||||
|
<td bgcolor="#EAEAEA">28<br /><span style="font-size: 9px;">Okt</span></td>
|
||||||
|
<td>29<br /><span style="font-size: 9px;">Okt</span></td>
|
||||||
|
<td>30<br /><span style="font-size: 9px;">Okt</span></td>
|
||||||
|
<td>31<br /><span style="font-size: 9px;">Okt</span></td>
|
||||||
|
<td> </td><td valign="middle">Durchschnitt</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
<br />
|
||||||
|
<table>
|
||||||
|
<tr><td width="80" bgcolor="#ECECEC">Tag</td><td width="80" bgcolor="#F4F090">Anzahl der Besuche</td><td width="80" bgcolor="#4477DD">Seiten</td><td width="80" bgcolor="#66DDEE">Zugriffe</td><td width="80" bgcolor="#2EA495">Bytes</td></tr><tr><td>01.10.2018</td><td>1</td><td>1</td><td>1</td><td>5.50 KB</td></tr>
|
||||||
|
<tr><td>02.10.2018</td><td>6</td><td>7</td><td>8</td><td>38.25 KB</td></tr>
|
||||||
|
<tr><td>03.10.2018</td><td>0</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr><td>04.10.2018</td><td>6</td><td>6</td><td>8</td><td>33.96 KB</td></tr>
|
||||||
|
<tr><td>05.10.2018</td><td>7</td><td>8</td><td>8</td><td>42.54 KB</td></tr>
|
||||||
|
<tr bgcolor="#EAEAEA"><td>06.10.2018</td><td>2</td><td>2</td><td>2</td><td>10.99 KB</td></tr>
|
||||||
|
<tr bgcolor="#EAEAEA"><td>07.10.2018</td><td>2</td><td>3</td><td>5</td><td>18.81 KB</td></tr>
|
||||||
|
<tr><td>08.10.2018</td><td>3</td><td>3</td><td>3</td><td>16.49 KB</td></tr>
|
||||||
|
<tr><td>09.10.2018</td><td>0</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr><td>10.10.2018</td><td>3</td><td>3</td><td>3</td><td>16.18 KB</td></tr>
|
||||||
|
<tr><td>11.10.2018</td><td>4</td><td>4</td><td>4</td><td>21.38 KB</td></tr>
|
||||||
|
<tr><td>12.10.2018</td><td>3</td><td>3</td><td>3</td><td>33.30 KB</td></tr>
|
||||||
|
<tr bgcolor="#EAEAEA"><td>13.10.2018</td><td>4</td><td>4</td><td>4</td><td>21.98 KB</td></tr>
|
||||||
|
<tr bgcolor="#EAEAEA"><td>14.10.2018</td><td>0</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr><td>15.10.2018</td><td>3</td><td>4</td><td>5</td><td>18.47 KB</td></tr>
|
||||||
|
<tr><td>16.10.2018</td><td>2</td><td>2</td><td>2</td><td>10.99 KB</td></tr>
|
||||||
|
<tr><td>17.10.2018</td><td>2</td><td>2</td><td>2</td><td>10.99 KB</td></tr>
|
||||||
|
<tr><td>18.10.2018</td><td>3</td><td>3</td><td>3</td><td>15.88 KB</td></tr>
|
||||||
|
<tr><td>19.10.2018</td><td>3</td><td>3</td><td>3</td><td>15.88 KB</td></tr>
|
||||||
|
<tr bgcolor="#EAEAEA"><td>20.10.2018</td><td>2</td><td>2</td><td>2</td><td>10.99 KB</td></tr>
|
||||||
|
<tr bgcolor="#EAEAEA"><td>21.10.2018</td><td>1</td><td>1</td><td>1</td><td>5.50 KB</td></tr>
|
||||||
|
<tr><td>22.10.2018</td><td>3</td><td>3</td><td>3</td><td>16.49 KB</td></tr>
|
||||||
|
<tr><td>23.10.2018</td><td>0</td><td>0</td><td>0</td><td>0</td></tr>
|
||||||
|
<tr><td>24.10.2018</td><td>3</td><td>3</td><td>3</td><td>16.49 KB</td></tr>
|
||||||
|
<tr><td>25.10.2018</td><td>4</td><td>4</td><td>4</td><td>21.08 KB</td></tr>
|
||||||
|
<tr><td>26.10.2018</td><td>5</td><td>6</td><td>6</td><td>31.55 KB</td></tr>
|
||||||
|
<tr bgcolor="#EAEAEA"><td>27.10.2018</td><td>3</td><td>3</td><td>3</td><td>16.49 KB</td></tr>
|
||||||
|
<tr bgcolor="#EAEAEA"><td>28.10.2018</td><td>2</td><td>2</td><td>2</td><td>10.35 KB</td></tr>
|
||||||
|
<tr><td>29.10.2018</td><td>2</td><td>2</td><td>2</td><td>10.99 KB</td></tr>
|
||||||
|
<tr><td>30.10.2018</td><td>4</td><td>4</td><td>4</td><td>21.34 KB</td></tr>
|
||||||
|
<tr><td>31.10.2018</td><td>3</td><td>3</td><td>3</td><td>16.18 KB</td></tr>
|
||||||
|
<tr bgcolor="#ECECEC"><td>Durchschnitt</td><td>2</td><td>2</td><td>3</td><td>16.42 KB</td></tr>
|
||||||
|
<tr bgcolor="#ECECEC"><td>Total</td><td>86</td><td>91</td><td>97</td><td>509.01 KB</td></tr>
|
||||||
|
</table>
|
||||||
|
<br /></center>
|
||||||
|
</td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<a name="daysofweek"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Wochentage </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td align="center"><center>
|
||||||
|
<table>
|
||||||
|
<tr valign="bottom">
|
||||||
|
<td valign="bottom"><img align="bottom" src="/awstats-icon/other/vp.png" height="47" width="6" alt='Seiten: 2.60' title='Seiten: 2.60' /><img align="bottom" src="/awstats-icon/other/vh.png" height="51" width="6" alt='Zugriffe: 2.80' title='Zugriffe: 2.80' /><img align="bottom" src="/awstats-icon/other/vk.png" height="40" width="6" alt='Bytes: 13.58 KB' title='Bytes: 13.58 KB' /></td>
|
||||||
|
<td valign="bottom"><img align="bottom" src="/awstats-icon/other/vp.png" height="47" width="6" alt='Seiten: 2.60' title='Seiten: 2.60' /><img align="bottom" src="/awstats-icon/other/vh.png" height="51" width="6" alt='Zugriffe: 2.80' title='Zugriffe: 2.80' /><img align="bottom" src="/awstats-icon/other/vk.png" height="42" width="6" alt='Bytes: 14.11 KB' title='Bytes: 14.11 KB' /></td>
|
||||||
|
<td valign="bottom"><img align="bottom" src="/awstats-icon/other/vp.png" height="40" width="6" alt='Seiten: 2.20' title='Seiten: 2.20' /><img align="bottom" src="/awstats-icon/other/vh.png" height="40" width="6" alt='Zugriffe: 2.20' title='Zugriffe: 2.20' /><img align="bottom" src="/awstats-icon/other/vk.png" height="35" width="6" alt='Bytes: 11.97 KB' title='Bytes: 11.97 KB' /></td>
|
||||||
|
<td valign="bottom"><img align="bottom" src="/awstats-icon/other/vp.png" height="77" width="6" alt='Seiten: 4.25' title='Seiten: 4.25' /><img align="bottom" src="/awstats-icon/other/vh.png" height="86" width="6" alt='Zugriffe: 4.75' title='Zugriffe: 4.75' /><img align="bottom" src="/awstats-icon/other/vk.png" height="68" width="6" alt='Bytes: 23.07 KB' title='Bytes: 23.07 KB' /></td>
|
||||||
|
<td valign="bottom"><img align="bottom" src="/awstats-icon/other/vp.png" height="91" width="6" alt='Seiten: 5' title='Seiten: 5' /><img align="bottom" src="/awstats-icon/other/vh.png" height="91" width="6" alt='Zugriffe: 5' title='Zugriffe: 5' /><img align="bottom" src="/awstats-icon/other/vk.png" height="91" width="6" alt='Bytes: 30.82 KB' title='Bytes: 30.82 KB' /></td>
|
||||||
|
<td valign="bottom"><img align="bottom" src="/awstats-icon/other/vp.png" height="50" width="6" alt='Seiten: 2.75' title='Seiten: 2.75' /><img align="bottom" src="/awstats-icon/other/vh.png" height="50" width="6" alt='Zugriffe: 2.75' title='Zugriffe: 2.75' /><img align="bottom" src="/awstats-icon/other/vk.png" height="45" width="6" alt='Bytes: 15.11 KB' title='Bytes: 15.11 KB' /></td>
|
||||||
|
<td valign="bottom"><img align="bottom" src="/awstats-icon/other/vp.png" height="28" width="6" alt='Seiten: 1.50' title='Seiten: 1.50' /><img align="bottom" src="/awstats-icon/other/vh.png" height="37" width="6" alt='Zugriffe: 2' title='Zugriffe: 2' /><img align="bottom" src="/awstats-icon/other/vk.png" height="26" width="6" alt='Bytes: 8.66 KB' title='Bytes: 8.66 KB' /></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Mo</td><td>Di</td><td>Mi</td><td>Do</td><td>Fr</td><td bgcolor="#EAEAEA">Sa</td><td bgcolor="#EAEAEA">So</td></tr>
|
||||||
|
</table>
|
||||||
|
<br />
|
||||||
|
<table>
|
||||||
|
<tr><td width="80" bgcolor="#ECECEC">Tag</td><td width="80" bgcolor="#4477DD">Seiten</td><td width="80" bgcolor="#66DDEE">Zugriffe</td><td width="80" bgcolor="#2EA495">Bytes</td></tr><tr><td>Mo</td><td>2</td><td>2</td><td>13.58 KB</td></tr>
|
||||||
|
<tr><td>Di</td><td>2</td><td>2</td><td>14.11 KB</td></tr>
|
||||||
|
<tr><td>Mi</td><td>2</td><td>2</td><td>11.97 KB</td></tr>
|
||||||
|
<tr><td>Do</td><td>4</td><td>4</td><td>23.07 KB</td></tr>
|
||||||
|
<tr><td>Fr</td><td>5</td><td>5</td><td>30.82 KB</td></tr>
|
||||||
|
<tr bgcolor="#EAEAEA"><td>Sa</td><td>2</td><td>2</td><td>15.11 KB</td></tr>
|
||||||
|
<tr bgcolor="#EAEAEA"><td>So</td><td>1</td><td>2</td><td>8.66 KB</td></tr>
|
||||||
|
</table>
|
||||||
|
<br />
|
||||||
|
</center></td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<a name="hours"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Stunden (Serverzeit) </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td align="center">
|
||||||
|
<center>
|
||||||
|
<table>
|
||||||
|
<tr valign="bottom">
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="34" width="6" alt='Seiten: 3' title='Seiten: 3' /><img align="bottom" src="/awstats-icon/other/vh.png" height="34" width="6" alt='Zugriffe: 3' title='Zugriffe: 3' /><img align="bottom" src="/awstats-icon/other/vk.png" height="35" width="6" alt='Bytes: 16.18 KB' title='Bytes: 16.18 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="34" width="6" alt='Seiten: 3' title='Seiten: 3' /><img align="bottom" src="/awstats-icon/other/vh.png" height="34" width="6" alt='Zugriffe: 3' title='Zugriffe: 3' /><img align="bottom" src="/awstats-icon/other/vk.png" height="36" width="6" alt='Bytes: 16.49 KB' title='Bytes: 16.49 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="68" width="6" alt='Seiten: 6' title='Seiten: 6' /><img align="bottom" src="/awstats-icon/other/vh.png" height="68" width="6" alt='Zugriffe: 6' title='Zugriffe: 6' /><img align="bottom" src="/awstats-icon/other/vk.png" height="70" width="6" alt='Bytes: 32.58 KB' title='Bytes: 32.58 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="46" width="6" alt='Seiten: 4' title='Seiten: 4' /><img align="bottom" src="/awstats-icon/other/vh.png" height="57" width="6" alt='Zugriffe: 5' title='Zugriffe: 5' /><img align="bottom" src="/awstats-icon/other/vk.png" height="48" width="6" alt='Bytes: 22.22 KB' title='Bytes: 22.22 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="91" width="6" alt='Seiten: 8' title='Seiten: 8' /><img align="bottom" src="/awstats-icon/other/vh.png" height="91" width="6" alt='Zugriffe: 8' title='Zugriffe: 8' /><img align="bottom" src="/awstats-icon/other/vk.png" height="89" width="6" alt='Bytes: 41.33 KB' title='Bytes: 41.33 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="46" width="6" alt='Seiten: 4' title='Seiten: 4' /><img align="bottom" src="/awstats-icon/other/vh.png" height="46" width="6" alt='Zugriffe: 4' title='Zugriffe: 4' /><img align="bottom" src="/awstats-icon/other/vk.png" height="46" width="6" alt='Bytes: 21.34 KB' title='Bytes: 21.34 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="46" width="6" alt='Seiten: 4' title='Seiten: 4' /><img align="bottom" src="/awstats-icon/other/vh.png" height="46" width="6" alt='Zugriffe: 4' title='Zugriffe: 4' /><img align="bottom" src="/awstats-icon/other/vk.png" height="46" width="6" alt='Bytes: 21.34 KB' title='Bytes: 21.34 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="79" width="6" alt='Seiten: 7' title='Seiten: 7' /><img align="bottom" src="/awstats-icon/other/vh.png" height="79" width="6" alt='Zugriffe: 7' title='Zugriffe: 7' /><img align="bottom" src="/awstats-icon/other/vk.png" height="79" width="6" alt='Bytes: 36.62 KB' title='Bytes: 36.62 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="23" width="6" alt='Seiten: 2' title='Seiten: 2' /><img align="bottom" src="/awstats-icon/other/vh.png" height="23" width="6" alt='Zugriffe: 2' title='Zugriffe: 2' /><img align="bottom" src="/awstats-icon/other/vk.png" height="24" width="6" alt='Bytes: 10.99 KB' title='Bytes: 10.99 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="79" width="6" alt='Seiten: 7' title='Seiten: 7' /><img align="bottom" src="/awstats-icon/other/vh.png" height="79" width="6" alt='Zugriffe: 7' title='Zugriffe: 7' /><img align="bottom" src="/awstats-icon/other/vk.png" height="80" width="6" alt='Bytes: 37.22 KB' title='Bytes: 37.22 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="23" width="6" alt='Seiten: 2' title='Seiten: 2' /><img align="bottom" src="/awstats-icon/other/vh.png" height="23" width="6" alt='Zugriffe: 2' title='Zugriffe: 2' /><img align="bottom" src="/awstats-icon/other/vk.png" height="23" width="6" alt='Bytes: 10.69 KB' title='Bytes: 10.69 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="23" width="6" alt='Seiten: 2' title='Seiten: 2' /><img align="bottom" src="/awstats-icon/other/vh.png" height="23" width="6" alt='Zugriffe: 2' title='Zugriffe: 2' /><img align="bottom" src="/awstats-icon/other/vk.png" height="24" width="6" alt='Bytes: 10.99 KB' title='Bytes: 10.99 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="12" width="6" alt='Seiten: 1' title='Seiten: 1' /><img align="bottom" src="/awstats-icon/other/vh.png" height="12" width="6" alt='Zugriffe: 1' title='Zugriffe: 1' /><img align="bottom" src="/awstats-icon/other/vk.png" height="12" width="6" alt='Bytes: 5.50 KB' title='Bytes: 5.50 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="34" width="6" alt='Seiten: 3' title='Seiten: 3' /><img align="bottom" src="/awstats-icon/other/vh.png" height="34" width="6" alt='Zugriffe: 3' title='Zugriffe: 3' /><img align="bottom" src="/awstats-icon/other/vk.png" height="35" width="6" alt='Bytes: 16.18 KB' title='Bytes: 16.18 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="46" width="6" alt='Seiten: 4' title='Seiten: 4' /><img align="bottom" src="/awstats-icon/other/vh.png" height="46" width="6" alt='Zugriffe: 4' title='Zugriffe: 4' /><img align="bottom" src="/awstats-icon/other/vk.png" height="47" width="6" alt='Bytes: 21.59 KB' title='Bytes: 21.59 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="34" width="6" alt='Seiten: 3' title='Seiten: 3' /><img align="bottom" src="/awstats-icon/other/vh.png" height="34" width="6" alt='Zugriffe: 3' title='Zugriffe: 3' /><img align="bottom" src="/awstats-icon/other/vk.png" height="36" width="6" alt='Bytes: 16.49 KB' title='Bytes: 16.49 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="46" width="6" alt='Seiten: 4' title='Seiten: 4' /><img align="bottom" src="/awstats-icon/other/vh.png" height="68" width="6" alt='Zugriffe: 6' title='Zugriffe: 6' /><img align="bottom" src="/awstats-icon/other/vk.png" height="42" width="6" alt='Bytes: 19.63 KB' title='Bytes: 19.63 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="34" width="6" alt='Seiten: 3' title='Seiten: 3' /><img align="bottom" src="/awstats-icon/other/vh.png" height="34" width="6" alt='Zugriffe: 3' title='Zugriffe: 3' /><img align="bottom" src="/awstats-icon/other/vk.png" height="36" width="6" alt='Bytes: 16.40 KB' title='Bytes: 16.40 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="23" width="6" alt='Seiten: 2' title='Seiten: 2' /><img align="bottom" src="/awstats-icon/other/vh.png" height="23" width="6" alt='Zugriffe: 2' title='Zugriffe: 2' /><img align="bottom" src="/awstats-icon/other/vk.png" height="23" width="6" alt='Bytes: 10.69 KB' title='Bytes: 10.69 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="46" width="6" alt='Seiten: 4' title='Seiten: 4' /><img align="bottom" src="/awstats-icon/other/vh.png" height="68" width="6" alt='Zugriffe: 6' title='Zugriffe: 6' /><img align="bottom" src="/awstats-icon/other/vk.png" height="52" width="6" alt='Bytes: 24.30 KB' title='Bytes: 24.30 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="46" width="6" alt='Seiten: 4' title='Seiten: 4' /><img align="bottom" src="/awstats-icon/other/vh.png" height="46" width="6" alt='Zugriffe: 4' title='Zugriffe: 4' /><img align="bottom" src="/awstats-icon/other/vk.png" height="48" width="6" alt='Bytes: 21.98 KB' title='Bytes: 21.98 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="34" width="6" alt='Seiten: 3' title='Seiten: 3' /><img align="bottom" src="/awstats-icon/other/vh.png" height="34" width="6" alt='Zugriffe: 3' title='Zugriffe: 3' /><img align="bottom" src="/awstats-icon/other/vk.png" height="35" width="6" alt='Bytes: 16.18 KB' title='Bytes: 16.18 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="23" width="6" alt='Seiten: 2' title='Seiten: 2' /><img align="bottom" src="/awstats-icon/other/vh.png" height="23" width="6" alt='Zugriffe: 2' title='Zugriffe: 2' /><img align="bottom" src="/awstats-icon/other/vk.png" height="43" width="6" alt='Bytes: 20.02 KB' title='Bytes: 20.02 KB' /></td>
|
||||||
|
<td><img align="bottom" src="/awstats-icon/other/vp.png" height="68" width="6" alt='Seiten: 6' title='Seiten: 6' /><img align="bottom" src="/awstats-icon/other/vh.png" height="79" width="6" alt='Zugriffe: 7' title='Zugriffe: 7' /><img align="bottom" src="/awstats-icon/other/vk.png" height="91" width="6" alt='Bytes: 42.07 KB' title='Bytes: 42.07 KB' /></td>
|
||||||
|
</tr>
|
||||||
|
<tr><th width="19">0</th>
|
||||||
|
<th width="19">1</th>
|
||||||
|
<th width="19">2</th>
|
||||||
|
<th width="19">3</th>
|
||||||
|
<th width="19">4</th>
|
||||||
|
<th width="19">5</th>
|
||||||
|
<th width="19">6</th>
|
||||||
|
<th width="19">7</th>
|
||||||
|
<th width="19">8</th>
|
||||||
|
<th width="19">9</th>
|
||||||
|
<th width="19">10</th>
|
||||||
|
<th width="19">11</th>
|
||||||
|
<th width="19">12</th>
|
||||||
|
<th width="19">13</th>
|
||||||
|
<th width="19">14</th>
|
||||||
|
<th width="19">15</th>
|
||||||
|
<th width="19">16</th>
|
||||||
|
<th width="19">17</th>
|
||||||
|
<th width="19">18</th>
|
||||||
|
<th width="19">19</th>
|
||||||
|
<th width="19">20</th>
|
||||||
|
<th width="19">21</th>
|
||||||
|
<th width="19">22</th>
|
||||||
|
<th width="19">23</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><img src="/awstats-icon/clock/hr1.png" width="12" alt="0:00 - 1:00 am" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr2.png" width="12" alt="1:00 - 2:00 am" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr3.png" width="12" alt="2:00 - 3:00 am" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr4.png" width="12" alt="3:00 - 4:00 am" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr5.png" width="12" alt="4:00 - 5:00 am" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr6.png" width="12" alt="5:00 - 6:00 am" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr7.png" width="12" alt="6:00 - 7:00 am" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr8.png" width="12" alt="7:00 - 8:00 am" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr9.png" width="12" alt="8:00 - 9:00 am" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr10.png" width="12" alt="9:00 - 10:00 am" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr11.png" width="12" alt="10:00 - 11:00 am" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr12.png" width="12" alt="11:00 - 12:00 am" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr1.png" width="12" alt="0:00 - 1:00 pm" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr2.png" width="12" alt="1:00 - 2:00 pm" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr3.png" width="12" alt="2:00 - 3:00 pm" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr4.png" width="12" alt="3:00 - 4:00 pm" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr5.png" width="12" alt="4:00 - 5:00 pm" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr6.png" width="12" alt="5:00 - 6:00 pm" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr7.png" width="12" alt="6:00 - 7:00 pm" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr8.png" width="12" alt="7:00 - 8:00 pm" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr9.png" width="12" alt="8:00 - 9:00 pm" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr10.png" width="12" alt="9:00 - 10:00 pm" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr11.png" width="12" alt="10:00 - 11:00 pm" /></td>
|
||||||
|
<td><img src="/awstats-icon/clock/hr12.png" width="12" alt="11:00 - 12:00 pm" /></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
<br />
|
||||||
|
<table width="650"><tr>
|
||||||
|
<td align="center"><center>
|
||||||
|
<table>
|
||||||
|
<tr><td width="80" bgcolor="#ECECEC">Stunden (Serverzeit)</td><td width="80" bgcolor="#4477DD">Seiten</td><td width="80" bgcolor="#66DDEE">Zugriffe</td><td width="80" bgcolor="#2EA495">Bytes</td></tr><tr><td>00</td><td>3</td><td>3</td><td>16.18 KB</td></tr>
|
||||||
|
<tr><td>01</td><td>3</td><td>3</td><td>16.49 KB</td></tr>
|
||||||
|
<tr><td>02</td><td>6</td><td>6</td><td>32.58 KB</td></tr>
|
||||||
|
<tr><td>03</td><td>4</td><td>5</td><td>22.22 KB</td></tr>
|
||||||
|
<tr><td>04</td><td>8</td><td>8</td><td>41.33 KB</td></tr>
|
||||||
|
<tr><td>05</td><td>4</td><td>4</td><td>21.34 KB</td></tr>
|
||||||
|
<tr><td>06</td><td>4</td><td>4</td><td>21.34 KB</td></tr>
|
||||||
|
<tr><td>07</td><td>7</td><td>7</td><td>36.62 KB</td></tr>
|
||||||
|
<tr><td>08</td><td>2</td><td>2</td><td>10.99 KB</td></tr>
|
||||||
|
<tr><td>09</td><td>7</td><td>7</td><td>37.22 KB</td></tr>
|
||||||
|
<tr><td>10</td><td>2</td><td>2</td><td>10.69 KB</td></tr>
|
||||||
|
<tr><td>11</td><td>2</td><td>2</td><td>10.99 KB</td></tr>
|
||||||
|
</table>
|
||||||
|
</center></td><td width="10"> </td><td align="center"><center>
|
||||||
|
<table>
|
||||||
|
<tr><td width="80" bgcolor="#ECECEC">Stunden (Serverzeit)</td><td width="80" bgcolor="#4477DD">Seiten</td><td width="80" bgcolor="#66DDEE">Zugriffe</td><td width="80" bgcolor="#2EA495">Bytes</td></tr>
|
||||||
|
<tr><td>12</td><td>1</td><td>1</td><td>5.50 KB</td></tr>
|
||||||
|
<tr><td>13</td><td>3</td><td>3</td><td>16.18 KB</td></tr>
|
||||||
|
<tr><td>14</td><td>4</td><td>4</td><td>21.59 KB</td></tr>
|
||||||
|
<tr><td>15</td><td>3</td><td>3</td><td>16.49 KB</td></tr>
|
||||||
|
<tr><td>16</td><td>4</td><td>6</td><td>19.63 KB</td></tr>
|
||||||
|
<tr><td>17</td><td>3</td><td>3</td><td>16.40 KB</td></tr>
|
||||||
|
<tr><td>18</td><td>2</td><td>2</td><td>10.69 KB</td></tr>
|
||||||
|
<tr><td>19</td><td>4</td><td>6</td><td>24.30 KB</td></tr>
|
||||||
|
<tr><td>20</td><td>4</td><td>4</td><td>21.98 KB</td></tr>
|
||||||
|
<tr><td>21</td><td>3</td><td>3</td><td>16.18 KB</td></tr>
|
||||||
|
<tr><td>22</td><td>2</td><td>2</td><td>20.02 KB</td></tr>
|
||||||
|
<tr><td>23</td><td>6</td><td>7</td><td>42.07 KB</td></tr>
|
||||||
|
</table>
|
||||||
|
</center></td></tr></table>
|
||||||
|
<br />
|
||||||
|
</center></td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
|
||||||
|
<a name="who"> </a>
|
||||||
|
|
||||||
|
<a name="countries"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Domains/Länder der Besucher (Top 10) - <a href="awstats.mettcalc.de.alldomains.html" target="awstatsbis">Gesamte Liste</a> </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th width="32"> </th><th colspan="2">Domains/Länder</th><th bgcolor="#4477DD" width="80">Seiten</th><th bgcolor="#66DDEE" width="80">Zugriffe</th><th bgcolor="#2EA495" width="80">Bytes</th><th> </th></tr>
|
||||||
|
<tr><td width="32"><img src="/awstats-icon/flags/com.png" height="14" alt='com' title='com' /></td><td class="aws">Commercial</td><td>com</td><td>58</td><td>59</td><td>317.28 KB</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="256" height="5" alt='' title='' /><br />
|
||||||
|
<img src="/awstats-icon/other/hh.png" width="261" height="5" alt='' title='' /><br />
|
||||||
|
<img src="/awstats-icon/other/hk.png" width="261" height="5" alt='' title='' /></td></tr>
|
||||||
|
<tr><td width="32"><img src="/awstats-icon/flags/de.png" height="14" alt='de' title='de' /></td><td class="aws">Germany</td><td>de</td><td>21</td><td>24</td><td>109.08 KB</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="93" height="5" alt='' title='' /><br />
|
||||||
|
<img src="/awstats-icon/other/hh.png" width="106" height="5" alt='' title='' /><br />
|
||||||
|
<img src="/awstats-icon/other/hk.png" width="90" height="5" alt='' title='' /></td></tr>
|
||||||
|
<tr><td width="32"><img src="/awstats-icon/flags/ip.png" height="14" alt='Unbekannt' title='Unbekannt' /></td><td class="aws">Unbekannt</td><td>ip</td><td>7</td><td>9</td><td>47.74 KB</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="31" height="5" alt='' title='' /><br />
|
||||||
|
<img src="/awstats-icon/other/hh.png" width="40" height="5" alt='' title='' /><br />
|
||||||
|
<img src="/awstats-icon/other/hk.png" width="40" height="5" alt='' title='' /></td></tr>
|
||||||
|
<tr><td width="32"><img src="/awstats-icon/flags/ip.png" height="14" alt='Unbekannt' title='Unbekannt' /></td><td class="aws">Unbekannt</td><td>vds</td><td>2</td><td>2</td><td>10.05 KB</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="9" height="5" alt='' title='' /><br />
|
||||||
|
<img src="/awstats-icon/other/hh.png" width="9" height="5" alt='' title='' /><br />
|
||||||
|
<img src="/awstats-icon/other/hk.png" width="9" height="5" alt='' title='' /></td></tr>
|
||||||
|
<tr><td width="32"><img src="/awstats-icon/flags/sc.png" height="14" alt='sc' title='sc' /></td><td class="aws">Seychelles</td><td>sc</td><td>2</td><td>2</td><td>10.82 KB</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="9" height="5" alt='' title='' /><br />
|
||||||
|
<img src="/awstats-icon/other/hh.png" width="9" height="5" alt='' title='' /><br />
|
||||||
|
<img src="/awstats-icon/other/hk.png" width="9" height="5" alt='' title='' /></td></tr>
|
||||||
|
<tr><td width="32"><img src="/awstats-icon/flags/eu.png" height="14" alt='eu' title='eu' /></td><td class="aws">European country</td><td>eu</td><td>1</td><td>1</td><td>5.02 KB</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="5" height="5" alt='' title='' /><br />
|
||||||
|
<img src="/awstats-icon/other/hh.png" width="5" height="5" alt='' title='' /><br />
|
||||||
|
<img src="/awstats-icon/other/hk.png" width="5" height="5" alt='' title='' /></td></tr>
|
||||||
|
<tr><td width="32"> </td><td colspan="2" class="aws"><span style="color: #666688">Sonstige</span></td><td>0</td><td>0</td><td>9.03 KB</td><td class="aws"> </td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<a name="visitors"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Rechner (Top 10) - <a href="awstats.mettcalc.de.allhosts.html" target="awstatsbis">Gesamte Liste</a> - <a href="awstats.mettcalc.de.lasthosts.html" target="awstatsbis">Letzter Zugriff</a> - <a href="awstats.mettcalc.de.unknownip.html" target="awstatsbis">Unaufgelöste IP Adressen</a> </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>Rechner : 16 Bekannte, 7 Unbekannte (IP konnte nicht aufgelöst werden )<br />21 Unterschiedliche Besucher</th><th bgcolor="#4477DD" width="80">Seiten</th><th bgcolor="#66DDEE" width="80">Zugriffe</th><th bgcolor="#2EA495" width="80">Bytes</th><th width="120">Letzter Zugriff</th></tr>
|
||||||
|
<tr><td class="aws">ec2-52-53-201-78.us-west-1.compute.amazonaws.com</td><td>28</td><td>28</td><td>153.86 KB</td><td nowrap="nowrap">31.10.2018 - 15:45</td></tr>
|
||||||
|
<tr><td class="aws">ec2-13-57-233-99.us-west-1.compute.amazonaws.com</td><td>22</td><td>22</td><td>120.89 KB</td><td nowrap="nowrap">30.10.2018 - 20:38</td></tr>
|
||||||
|
<tr><td class="aws">planetlab5.net.in.tum.de</td><td>17</td><td>17</td><td>88.29 KB</td><td nowrap="nowrap">31.10.2018 - 21:57</td></tr>
|
||||||
|
<tr><td class="aws">104.222.39.8</td><td>2</td><td>2</td><td>10.07 KB</td><td nowrap="nowrap">02.10.2018 - 04:26</td></tr>
|
||||||
|
<tr><td class="aws">ip-109-40-66-209.web.vodafone.de</td><td>2</td><td>3</td><td>7.48 KB</td><td nowrap="nowrap">15.10.2018 - 16:31</td></tr>
|
||||||
|
<tr><td class="aws">ip-5-146-194-133.unitymediagroup.de</td><td>2</td><td>4</td><td>13.31 KB</td><td nowrap="nowrap">07.10.2018 - 19:40</td></tr>
|
||||||
|
<tr><td class="aws">demur191.vds</td><td>2</td><td>2</td><td>10.05 KB</td><td nowrap="nowrap">26.10.2018 - 07:32</td></tr>
|
||||||
|
<tr><td class="aws">64.246.187.42</td><td>2</td><td>2</td><td>10.82 KB</td><td nowrap="nowrap">26.10.2018 - 03:08</td></tr>
|
||||||
|
<tr><td class="aws">www.whois.sc</td><td>2</td><td>2</td><td>10.82 KB</td><td nowrap="nowrap">05.10.2018 - 17:32</td></tr>
|
||||||
|
<tr><td class="aws">62.72.78.66</td><td>1</td><td>2</td><td>6.66 KB</td><td nowrap="nowrap">02.10.2018 - 16:15</td></tr>
|
||||||
|
<tr><td class="aws"><span style="color: #666688">Sonstige</span></td><td>11</td><td>13</td><td>76.76 KB</td><td> </td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<a name="robots"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Robots/Spiders (Suchmaschinen) (Top 10) - <a href="awstats.mettcalc.de.allrobots.html" target="awstatsbis">Gesamte Liste</a> - <a href="awstats.mettcalc.de.lastrobots.html" target="awstatsbis">Letzter Zugriff</a> </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>9 Zugriffe durch Suchmaschinen*</th><th bgcolor="#66DDEE" width="80">Zugriffe</th><th bgcolor="#2EA495" width="80">Bytes</th><th width="120">Letzter Zugriff</th></tr>
|
||||||
|
<tr><td class="aws">Googlebot</td><td>89+47</td><td>674.33 KB</td><td>31.10.2018 - 23:42</td></tr>
|
||||||
|
<tr><td class="aws">Baiduspider</td><td>30</td><td>169.55 KB</td><td>31.10.2018 - 07:16</td></tr>
|
||||||
|
<tr><td class="aws">MJ12bot</td><td>15+9</td><td>126.45 KB</td><td>31.10.2018 - 04:53</td></tr>
|
||||||
|
<tr><td class="aws">linkdexbot</td><td>20+1</td><td>158.36 KB</td><td>17.10.2018 - 21:30</td></tr>
|
||||||
|
<tr><td class="aws">facebookexternalhit</td><td>10</td><td>30.01 KB</td><td>12.10.2018 - 23:33</td></tr>
|
||||||
|
<tr><td class="aws">Firefox version 10 and lower - various robots</td><td>0+9</td><td>44.04 KB</td><td>31.10.2018 - 07:13</td></tr>
|
||||||
|
<tr><td class="aws">netcraft</td><td>6</td><td>36.32 KB</td><td>09.10.2018 - 05:35</td></tr>
|
||||||
|
<tr><td class="aws">Unknown robot identified by bot\*</td><td>3</td><td>18.03 KB</td><td>28.10.2018 - 20:38</td></tr>
|
||||||
|
<tr><td class="aws">Unknown robot (identified by hit on robots.txt)</td><td>0+2</td><td>9.35 KB</td><td>19.10.2018 - 00:50</td></tr>
|
||||||
|
</table></td></tr></table><span style="font: 11px verdana, arial, helvetica;">* Die Robots, die hier angezeigt werden, zeigen Treffer oder Traffic welchen Besucher "nicht gesehen" haben und sind in den übrigen Diagrammen nicht enthalten. Zahlen hinter + sind erfolgreiche Treffer auf die "robots.txt"-Datei</span><br />
|
||||||
|
<br />
|
||||||
|
|
||||||
|
|
||||||
|
<a name="how"> </a>
|
||||||
|
|
||||||
|
<a name="sessions"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Aufenthaltsdauer </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>Anzahl der Besuche: 86 - Durchschnitt: 46 s</th><th bgcolor="#8888DD" width="80">Anzahl der Besuche</th><th bgcolor="#8888DD" width="80">Prozent</th></tr>
|
||||||
|
<tr><td class="aws">0s-30s</td><td>84</td><td>97.6 %</td></tr>
|
||||||
|
<tr><td class="aws">30s-2mn</td><td>1</td><td>1.1 %</td></tr>
|
||||||
|
<tr><td class="aws">2mn-5mn</td><td> </td><td> </td></tr>
|
||||||
|
<tr><td class="aws">5mn-15mn</td><td> </td><td> </td></tr>
|
||||||
|
<tr><td class="aws">15mn-30mn</td><td> </td><td> </td></tr>
|
||||||
|
<tr><td class="aws">30mn-1h</td><td>1</td><td>1.1 %</td></tr>
|
||||||
|
<tr><td class="aws">1h+</td><td> </td><td> </td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<a name="filetypes"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Datei-Typen </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th colspan="3">Datei-Typen</th><th bgcolor="#66DDEE" width="80">Zugriffe</th><th bgcolor="#66DDEE" width="80">Prozent</th><th bgcolor="#2EA495" width="80">Bytes</th><th bgcolor="#2EA495" width="80">Prozent</th></tr>
|
||||||
|
<tr><td width="32"><img src="/awstats-icon/mime/php.png" alt='' title='' /></td><td class="aws">php</td><td class="aws">Dynamic PHP Script file</td><td>91</td><td>93.8 %</td><td nowrap="nowrap">485.52 KB</td><td>98.8 %</td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/mime/jscript.png" alt='' title='' /></td><td class="aws">js</td><td class="aws">JavaScript file</td><td>6</td><td>6.1 %</td><td nowrap="nowrap">5.42 KB</td><td>1.1 %</td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<a name="downloads"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Downloads (Top 10) - <a href="awstats.mettcalc.de.downloads.html" target="awstatsbis">Gesamte Liste</a> </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th colspan="2">Downloads: 1</th><th bgcolor="#66DDEE" width="80">Zugriffe</th><th bgcolor="#66DDEE" width="80">206 Zugriffe</th><th bgcolor="#2EA495" width="80">Bytes</th><th bgcolor="#2EA495" width="80">durchschnitt. Größe</th></tr>
|
||||||
|
<tr><td width="32"><img src="/awstats-icon/mime/text.png" alt='' title='' /></td><td class="aws"><a href="http://mettcalc.de/robots.txt" target="url" rel="nofollow">/robots.txt</a></td><td>0</td><td>2</td><td>9.03 KB</td><td>4.52 KB</td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<a name="urls"> </a><a name="entry"> </a><a name="exit"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Seiten-URL (Top 10) - <a href="awstats.mettcalc.de.urldetail.html" target="awstatsbis">Gesamte Liste</a> - <a href="awstats.mettcalc.de.urlentry.html" target="awstatsbis">Einstiegsseiten</a> - <a href="awstats.mettcalc.de.urlexit.html" target="awstatsbis">Exit Seiten</a> </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>1 Unterschiedliche Seiten</th><th bgcolor="#4477DD" width="80">Zugriffe</th><th bgcolor="#2EA495" width="80">durchschnitt. Größe</th><th bgcolor="#CEC2E8" width="80">Einstiegsseiten</th><th bgcolor="#C1B2E2" width="80">Exit Seiten</th><th> </th></tr>
|
||||||
|
<tr><td class="aws"><a href="http://mettcalc.de/" target="url" rel="nofollow">/</a></td><td>91</td><td>5.34 KB</td><td>86</td><td>86</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="261" height="4" alt='' title='' /><br /><img src="/awstats-icon/other/hk.png" width="261" height="4" alt='' title='' /><br /><img src="/awstats-icon/other/he.png" width="246" height="4" alt='' title='' /><br /><img src="/awstats-icon/other/hx.png" width="246" height="4" alt='' title='' /></td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<a name="os"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Betriebssysteme (Top 10) - <a href="awstats.mettcalc.de.osdetail.html" target="awstatsbis">Gesamte Liste/Versionen</a> - <a href="awstats.mettcalc.de.unknownos.html" target="awstatsbis">Unbekannt</a> </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th width="32"> </th><th>Betriebssysteme</th><th bgcolor="#4477DD" width="80">Seiten</th><th bgcolor="#4477DD" width="80">Prozent</th><th bgcolor="#66DDEE" width="80">Zugriffe</th><th bgcolor="#66DDEE" width="80">Prozent</th></tr>
|
||||||
|
<tr><td width="32"><img src="/awstats-icon/os/mac.png" alt='' title='' /></td><td class="aws"><b>Macintosh</b></td><td>54</td><td>59.3 %</td><td>54</td><td>54.5 %</td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/os/win.png" alt='' title='' /></td><td class="aws"><b>Windows</b></td><td>24</td><td>26.3 %</td><td>27</td><td>27.2 %</td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/os/linux.png" alt='' title='' /></td><td class="aws"><b>Linux</b></td><td>12</td><td>13.1 %</td><td>14</td><td>14.1 %</td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/os/ios.png" alt='' title='' /></td><td class="aws"><b>iOS</b></td><td>1</td><td>1 %</td><td>2</td><td>2 %</td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/os/unknown.png" alt='' title='' /></td><td class="aws"><span style="color: #666688">Unbekannt</span></td><td>0</td><td>0 %</td><td>2</td><td>2 %</td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<a name="browsers"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Browser (Top 10) - <a href="awstats.mettcalc.de.browserdetail.html" target="awstatsbis">Gesamte Liste/Versionen</a> - <a href="awstats.mettcalc.de.unknownbrowser.html" target="awstatsbis">Unbekannt</a> </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th width="32"> </th><th>Browser</th><th width="80">Grabber</th><th bgcolor="#4477DD" width="80">Seiten</th><th bgcolor="#4477DD" width="80">Prozent</th><th bgcolor="#66DDEE" width="80">Zugriffe</th><th bgcolor="#66DDEE" width="80">Prozent</th></tr>
|
||||||
|
<tr><td width="32"><img src="/awstats-icon/browser/chrome.png" alt='' title='' /></td><td class="aws"><b>Google Chrome</b></td><td>Nein</td><td>77</td><td>84.6 %</td><td>79</td><td>79.7 %</td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/browser/firefox.png" alt='' title='' /></td><td class="aws"><b>Firefox</b></td><td>Nein</td><td>11</td><td>12 %</td><td>14</td><td>14.1 %</td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/browser/msie.png" alt='' title='' /></td><td class="aws"><b>MS Internet Explorer</b></td><td>Nein</td><td>2</td><td>2.1 %</td><td>2</td><td>2 %</td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/browser/safari.png" alt='' title='' /></td><td class="aws"><b>Safari</b></td><td>Nein</td><td>1</td><td>1 %</td><td>2</td><td>2 %</td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/browser/mozilla.png" alt='' title='' /></td><td class="aws">Mozilla</td><td>Nein</td><td>0</td><td>0 %</td><td>1</td><td>1 %</td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/browser/unknown.png" alt='' title='' /></td><td class="aws"><span style="color: #666688">Unbekannt</span></td><td width="80">?</td><td>0</td><td>0 %</td><td>1</td><td>1 %</td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
|
||||||
|
<a name="refering"> </a>
|
||||||
|
|
||||||
|
<a name="referer"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Woher die Besucher kamen </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>Herkunft</th><th bgcolor="#4477DD" width="80">Seiten</th><th bgcolor="#4477DD" width="80">Prozent</th><th bgcolor="#66DDEE" width="80">Zugriffe</th><th bgcolor="#66DDEE" width="80">Prozent</th></tr>
|
||||||
|
<tr><td class="aws"><b>Direkter Zugriff/Bookmarks</b></td><td>61</td><td>100 %</td><td>63</td><td>100 %</td></tr>
|
||||||
|
<tr><td class="aws"><b>Links von einer Internet-Suchmaschine</b> - <a href="awstats.mettcalc.de.refererse.html" target="awstatsbis">Gesamte Liste</a><br />
|
||||||
|
</td>
|
||||||
|
<td valign="top"> </td><td valign="top"> </td><td valign="top"> </td><td valign="top"> </td></tr>
|
||||||
|
<tr><td class="aws"><b>Links von einer externen Seite (keine Suchmaschinen)</b> - <a href="awstats.mettcalc.de.refererpages.html" target="awstatsbis">Gesamte Liste</a><br />
|
||||||
|
</td>
|
||||||
|
<td valign="top"> </td><td valign="top"> </td><td valign="top"> </td><td valign="top"> </td></tr>
|
||||||
|
<tr><td class="aws"><b>Herkunft unbekannt</b></td><td> </td><td> </td><td> </td><td> </td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
|
||||||
|
<a name="keys"> </a>
|
||||||
|
|
||||||
|
<a name="keyphrases"> </a><a name="keywords"> </a><br />
|
||||||
|
<table width="100%" cellpadding="0" cellspacing="0"><tr><td width="50%" valign="top">
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="95%">Suchausdrücke (Top 10)<br /><a href="awstats.mettcalc.de.keyphrases.html" target="awstatsbis">Gesamte Liste</a> </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>0 verschiedene Suchbegriffe</th><th bgcolor="#8888DD" width="80">Häufigkeit</th><th bgcolor="#8888DD" width="80">Prozent</th></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
</td>
|
||||||
|
<td> </td><td width="50%" valign="top">
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="95%">Suchbegriffe (Top 10)<br /><a href="awstats.mettcalc.de.keywords.html" target="awstatsbis">Gesamte Liste</a> </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>0 Suchbegriffe</th><th bgcolor="#8888DD" width="80">Häufigkeit</th><th bgcolor="#8888DD" width="80">Prozent</th></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
</td>
|
||||||
|
</tr></table>
|
||||||
|
|
||||||
|
<a name="other"> </a>
|
||||||
|
|
||||||
|
<a name="misc"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Verschiedenes </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>Verschiedenes</th><th width="100"> </th><th width="100"> </th></tr>
|
||||||
|
<tr><td class="aws">Zu Favoriten hinzugefügt (Schätzung)</td><td>13 / 21 Besucher</td><td>61.9 %</td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<a name="errors"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">HTTP Fehlercodes </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th colspan="2">HTTP Fehlercodes*</th><th bgcolor="#66DDEE" width="80">Zugriffe</th><th bgcolor="#66DDEE" width="80">Prozent</th><th bgcolor="#2EA495" width="80">Bytes</th></tr>
|
||||||
|
<tr><td valign="top">301</td><td class="aws">Moved permanently (redirect)</td><td>207</td><td>88.8 %</td><td>112.60 KB</td></tr>
|
||||||
|
<tr><td><a href="awstats.mettcalc.de.errors404.html" target="awstatsbis">404</a></td><td class="aws">Document Not Found (hits on favicon excluded)</td><td>26</td><td>11.1 %</td><td>173.81 KB</td></tr>
|
||||||
|
</table></td></tr></table><span style="font: 11px verdana, arial, helvetica;">* Die Codes, die hier angezeigt werden, zeigen Treffer oder Traffic welchen Besucher "nicht gesehen" haben und sind in den übrigen Diagrammen nicht enthalten.</span><br />
|
||||||
|
<br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,96 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2018-10) - alldomains">
|
||||||
|
<title>Statistik für mettcalc.de (2018-10) - alldomains</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=alldomains" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.11.2018 - 00:01</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Okt 2018</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="domains"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Domains/Länder der Besucher </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th width="32"> </th><th colspan="2">Domains/Länder</th><th bgcolor="#4477DD" width="80">Seiten</th><th bgcolor="#66DDEE" width="80">Zugriffe</th><th class="datasize" bgcolor="#2EA495" width="80">Bytes</th><th> </th></tr>
|
||||||
|
<tr><td width="32"><img src="/awstats-icon/flags/com.png" height="14" alt='com' title='com' /></td><td class="aws">Commercial</td><td>com</td><td>58</td><td>59</td><td>317.28 KB</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="256" height="5" alt='Seiten: 58' title='Seiten: 58' /><br />
|
||||||
|
<img src="/awstats-icon/other/hh.png" width="261" height="5" alt='Zugriffe: 59' title='Zugriffe: 59' /><br />
|
||||||
|
<img src="/awstats-icon/other/hk.png" width="261" height="5" alt='Bytes: 317.28 KB' title='Bytes: 317.28 KB' /></td></tr>
|
||||||
|
<tr><td width="32"><img src="/awstats-icon/flags/de.png" height="14" alt='de' title='de' /></td><td class="aws">Germany</td><td>de</td><td>21</td><td>24</td><td>109.08 KB</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="93" height="5" alt='Seiten: 21' title='Seiten: 21' /><br />
|
||||||
|
<img src="/awstats-icon/other/hh.png" width="106" height="5" alt='Zugriffe: 24' title='Zugriffe: 24' /><br />
|
||||||
|
<img src="/awstats-icon/other/hk.png" width="90" height="5" alt='Bytes: 109.08 KB' title='Bytes: 109.08 KB' /></td></tr>
|
||||||
|
<tr><td width="32"><img src="/awstats-icon/flags/ip.png" height="14" alt='Unbekannt' title='Unbekannt' /></td><td class="aws">Unbekannt</td><td>ip</td><td>7</td><td>9</td><td>47.74 KB</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="31" height="5" alt='Seiten: 7' title='Seiten: 7' /><br />
|
||||||
|
<img src="/awstats-icon/other/hh.png" width="40" height="5" alt='Zugriffe: 9' title='Zugriffe: 9' /><br />
|
||||||
|
<img src="/awstats-icon/other/hk.png" width="40" height="5" alt='Bytes: 47.74 KB' title='Bytes: 47.74 KB' /></td></tr>
|
||||||
|
<tr><td width="32"><img src="/awstats-icon/flags/sc.png" height="14" alt='sc' title='sc' /></td><td class="aws">Seychelles</td><td>sc</td><td>2</td><td>2</td><td>10.82 KB</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="9" height="5" alt='Seiten: 2' title='Seiten: 2' /><br />
|
||||||
|
<img src="/awstats-icon/other/hh.png" width="9" height="5" alt='Zugriffe: 2' title='Zugriffe: 2' /><br />
|
||||||
|
<img src="/awstats-icon/other/hk.png" width="9" height="5" alt='Bytes: 10.82 KB' title='Bytes: 10.82 KB' /></td></tr>
|
||||||
|
<tr><td width="32"><img src="/awstats-icon/flags/ip.png" height="14" alt='Unbekannt' title='Unbekannt' /></td><td class="aws">Unbekannt</td><td>vds</td><td>2</td><td>2</td><td>10.05 KB</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="9" height="5" alt='Seiten: 2' title='Seiten: 2' /><br />
|
||||||
|
<img src="/awstats-icon/other/hh.png" width="9" height="5" alt='Zugriffe: 2' title='Zugriffe: 2' /><br />
|
||||||
|
<img src="/awstats-icon/other/hk.png" width="9" height="5" alt='Bytes: 10.05 KB' title='Bytes: 10.05 KB' /></td></tr>
|
||||||
|
<tr><td width="32"><img src="/awstats-icon/flags/eu.png" height="14" alt='eu' title='eu' /></td><td class="aws">European country</td><td>eu</td><td>1</td><td>1</td><td>5.02 KB</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="5" height="5" alt='Seiten: 1' title='Seiten: 1' /><br />
|
||||||
|
<img src="/awstats-icon/other/hh.png" width="5" height="5" alt='Zugriffe: 1' title='Zugriffe: 1' /><br />
|
||||||
|
<img src="/awstats-icon/other/hk.png" width="5" height="5" alt='Bytes: 5.02 KB' title='Bytes: 5.02 KB' /></td></tr>
|
||||||
|
<tr><td width="32"> </td><td colspan="2" class="aws"><span style="color: #666688">Sonstige</span></td><td>0</td><td>0</td><td>9.03 KB</td><td class="aws"> </td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,101 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2018-10) - allhosts">
|
||||||
|
<title>Statistik für mettcalc.de (2018-10) - allhosts</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=allhosts" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.11.2018 - 00:01</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Okt 2018</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="hosts"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Rechner </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>Total : 16 Bekannte, 7 Unbekannte (IP konnte nicht aufgelöst werden ) - 21 Unterschiedliche Besucher</th><th bgcolor="#4477DD" width="80">Seiten</th><th bgcolor="#66DDEE" width="80">Zugriffe</th><th class="datasize" bgcolor="#2EA495" width="80">Bytes</th><th width="120">Letzter Zugriff</th></tr>
|
||||||
|
<tr><td class="aws">ec2-52-53-201-78.us-west-1.compute.amazonaws.com</td><td>28</td><td>28</td><td>153.86 KB</td><td>31.10.2018 - 15:45</td></tr>
|
||||||
|
<tr><td class="aws">ec2-13-57-233-99.us-west-1.compute.amazonaws.com</td><td>22</td><td>22</td><td>120.89 KB</td><td>30.10.2018 - 20:38</td></tr>
|
||||||
|
<tr><td class="aws">planetlab5.net.in.tum.de</td><td>17</td><td>17</td><td>88.29 KB</td><td>31.10.2018 - 21:57</td></tr>
|
||||||
|
<tr><td class="aws">64.246.187.42</td><td>2</td><td>2</td><td>10.82 KB</td><td>26.10.2018 - 03:08</td></tr>
|
||||||
|
<tr><td class="aws">104.222.39.8</td><td>2</td><td>2</td><td>10.07 KB</td><td>02.10.2018 - 04:26</td></tr>
|
||||||
|
<tr><td class="aws">www.whois.sc</td><td>2</td><td>2</td><td>10.82 KB</td><td>05.10.2018 - 17:32</td></tr>
|
||||||
|
<tr><td class="aws">ip-109-40-66-209.web.vodafone.de</td><td>2</td><td>3</td><td>7.48 KB</td><td>15.10.2018 - 16:31</td></tr>
|
||||||
|
<tr><td class="aws">demur191.vds</td><td>2</td><td>2</td><td>10.05 KB</td><td>26.10.2018 - 07:32</td></tr>
|
||||||
|
<tr><td class="aws">ip-5-146-194-133.unitymediagroup.de</td><td>2</td><td>4</td><td>13.31 KB</td><td>07.10.2018 - 19:40</td></tr>
|
||||||
|
<tr><td class="aws">ec2-34-244-69-71.eu-west-1.compute.amazonaws.com</td><td>1</td><td>1</td><td>5.17 KB</td><td>05.10.2018 - 09:30</td></tr>
|
||||||
|
<tr><td class="aws">tmo-114-244.customers.d1-online.com</td><td>1</td><td>2</td><td>6.47 KB</td><td>04.10.2018 - 23:30</td></tr>
|
||||||
|
<tr><td class="aws">ec2-50-112-168-28.us-west-2.compute.amazonaws.com</td><td>1</td><td>1</td><td>5.17 KB</td><td>28.10.2018 - 05:37</td></tr>
|
||||||
|
<tr><td class="aws">ec2-52-214-107-165.eu-west-1.compute.amazonaws.com</td><td>1</td><td>1</td><td>5.17 KB</td><td>28.10.2018 - 05:36</td></tr>
|
||||||
|
<tr><td class="aws">8.ip-46-105-30.eu</td><td>1</td><td>1</td><td>5.02 KB</td><td>12.10.2018 - 04:59</td></tr>
|
||||||
|
<tr><td class="aws">38.130.163.183</td><td>1</td><td>1</td><td>5.04 KB</td><td>02.10.2018 - 04:32</td></tr>
|
||||||
|
<tr><td class="aws">207.102.138.158</td><td>1</td><td>2</td><td>6.12 KB</td><td>04.10.2018 - 03:22</td></tr>
|
||||||
|
<tr><td class="aws">ec2-54-202-223-100.us-west-2.compute.amazonaws.com</td><td>1</td><td>1</td><td>5.17 KB</td><td>05.10.2018 - 09:30</td></tr>
|
||||||
|
<tr><td class="aws">ec2-54-153-85-18.us-west-1.compute.amazonaws.com</td><td>1</td><td>1</td><td>5.17 KB</td><td>30.10.2018 - 06:06</td></tr>
|
||||||
|
<tr><td class="aws">ec2-54-77-253-48.eu-west-1.compute.amazonaws.com</td><td>1</td><td>1</td><td>5.17 KB</td><td>30.10.2018 - 06:06</td></tr>
|
||||||
|
<tr><td class="aws">62.72.78.66</td><td>1</td><td>2</td><td>6.66 KB</td><td>02.10.2018 - 16:15</td></tr>
|
||||||
|
<tr><td class="aws">146-209-15-51.rev.cloud.scaleway.com</td><td>1</td><td>1</td><td>5.02 KB</td><td>12.10.2018 - 04:58</td></tr>
|
||||||
|
<tr><td class="aws">173.252.95.8</td><td> </td><td>1</td><td>4.52 KB</td><td>-</td></tr>
|
||||||
|
<tr><td class="aws">173.252.95.17</td><td> </td><td>1</td><td>4.52 KB</td><td>-</td></tr>
|
||||||
|
<tr><td class="aws"><span style="color: #666688">Sonstige</span></td><td> </td><td>-2</td><td>9.03 KB</td><td> </td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,87 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2018-10) - allrobots">
|
||||||
|
<title>Statistik für mettcalc.de (2018-10) - allrobots</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=allrobots" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.11.2018 - 00:01</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Okt 2018</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="robots"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Robots/Spiders (Suchmaschinen) </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>9 Zugriffe durch Suchmaschinen</th><th bgcolor="#66DDEE" width="80">Zugriffe</th><th class="datasize" bgcolor="#2EA495" width="80">Bytes</th><th width="120">Letzter Zugriff</th></tr>
|
||||||
|
<tr><td class="aws">Googlebot</td><td>89+47</td><td>674.33 KB</td><td>31.10.2018 - 23:42</td></tr>
|
||||||
|
<tr><td class="aws">Baiduspider</td><td>30</td><td>169.55 KB</td><td>31.10.2018 - 07:16</td></tr>
|
||||||
|
<tr><td class="aws">MJ12bot</td><td>15+9</td><td>126.45 KB</td><td>31.10.2018 - 04:53</td></tr>
|
||||||
|
<tr><td class="aws">linkdexbot</td><td>20+1</td><td>158.36 KB</td><td>17.10.2018 - 21:30</td></tr>
|
||||||
|
<tr><td class="aws">facebookexternalhit</td><td>10</td><td>30.01 KB</td><td>12.10.2018 - 23:33</td></tr>
|
||||||
|
<tr><td class="aws">Firefox version 10 and lower - various robots</td><td>0+9</td><td>44.04 KB</td><td>31.10.2018 - 07:13</td></tr>
|
||||||
|
<tr><td class="aws">netcraft</td><td>6</td><td>36.32 KB</td><td>09.10.2018 - 05:35</td></tr>
|
||||||
|
<tr><td class="aws">Unknown robot identified by bot\*</td><td>3</td><td>18.03 KB</td><td>28.10.2018 - 20:38</td></tr>
|
||||||
|
<tr><td class="aws">Unknown robot (identified by hit on robots.txt)</td><td>0+2</td><td>9.35 KB</td><td>19.10.2018 - 00:50</td></tr>
|
||||||
|
</table></td></tr></table><span style="font: 11px verdana, arial, helvetica;">* Die Robots, die hier angezeigt werden, zeigen Treffer oder Traffic welchen Besucher "nicht gesehen" haben und sind in den übrigen Diagrammen nicht enthalten. Zahlen hinter + sind erfolgreiche Treffer auf die "robots.txt"-Datei</span><br />
|
||||||
|
<br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,96 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2018-10) - browserdetail">
|
||||||
|
<title>Statistik für mettcalc.de (2018-10) - browserdetail</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=browserdetail" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.11.2018 - 00:01</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Okt 2018</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="browsersversions"> </a><br /><table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Browser </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th colspan="2">Versionen</th><th width="80">Grabber</th><th bgcolor="#4477DD" width="80">Seiten</th><th bgcolor="#4477DD" width="80">Prozent</th><th bgcolor="#66DDEE" width="80">Zugriffe</th><th bgcolor="#66DDEE" width="80">Prozent</th><th> </th></tr>
|
||||||
|
<tr bgcolor="#F6F6F6"><td class="aws" colspan="2"><b>MSIE</b></td><td> </td><td><b>2</b></td><td><b>2.1 %</b></td><td><b>2</b></td><td><b>2 %</b></td><td> </td></tr>
|
||||||
|
<tr><td width="32"><img src="/awstats-icon/browser/msie.png" alt='' title='' /></td><td class="aws">Msie 10.0</td><td>Nein</td><td>2</td><td>2.1 %</td><td>2</td><td>2 %</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="11" height="5" /><br /><img src="/awstats-icon/other/hh.png" width="11" height="5" /><br /></td></tr>
|
||||||
|
<tr bgcolor="#F6F6F6"><td class="aws" colspan="2"><b>FIREFOX</b></td><td> </td><td><b>11</b></td><td><b>12 %</b></td><td><b>14</b></td><td><b>14.1 %</b></td><td> </td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/browser/firefox.png" alt='' title='' /></td><td class="aws">Firefox 62.0</td><td>Nein</td><td>2</td><td>2.1 %</td><td>4</td><td>4 %</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="11" height="5" /><br /><img src="/awstats-icon/other/hh.png" width="21" height="5" /><br /></td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/browser/firefox.png" alt='' title='' /></td><td class="aws">Firefox 61.0</td><td>Nein</td><td>2</td><td>2.1 %</td><td>2</td><td>2 %</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="11" height="5" /><br /><img src="/awstats-icon/other/hh.png" width="11" height="5" /><br /></td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/browser/firefox.png" alt='' title='' /></td><td class="aws">Firefox 60.0</td><td>Nein</td><td>1</td><td>1 %</td><td>2</td><td>2 %</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="6" height="5" /><br /><img src="/awstats-icon/other/hh.png" width="11" height="5" /><br /></td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/browser/firefox.png" alt='' title='' /></td><td class="aws">Firefox 59.0</td><td>Nein</td><td>4</td><td>4.3 %</td><td>4</td><td>4 %</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="21" height="5" /><br /><img src="/awstats-icon/other/hh.png" width="21" height="5" /><br /></td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/browser/firefox.png" alt='' title='' /></td><td class="aws">Firefox 42.0</td><td>Nein</td><td>2</td><td>2.1 %</td><td>2</td><td>2 %</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="11" height="5" /><br /><img src="/awstats-icon/other/hh.png" width="11" height="5" /><br /></td></tr>
|
||||||
|
<tr bgcolor="#F6F6F6"><td class="aws" colspan="2"><b>SAFARI</b></td><td> </td><td><b>1</b></td><td><b>1 %</b></td><td><b>2</b></td><td><b>2 %</b></td><td> </td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/browser/safari.png" alt='' title='' /></td><td class="aws">Safari ?</td><td>Nein</td><td>1</td><td>1 %</td><td>2</td><td>2 %</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="6" height="5" /><br /><img src="/awstats-icon/other/hh.png" width="11" height="5" /><br /></td></tr>
|
||||||
|
<tr bgcolor="#F6F6F6"><td class="aws" colspan="2"><b>CHROME</b></td><td> </td><td><b>77</b></td><td><b>84.6 %</b></td><td><b>79</b></td><td><b>79.7 %</b></td><td> </td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/browser/chrome.png" alt='' title='' /></td><td class="aws">Chrome 61.0.3163.100</td><td>Nein</td><td>50</td><td>54.9 %</td><td>50</td><td>50.5 %</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="261" height="5" /><br /><img src="/awstats-icon/other/hh.png" width="261" height="5" /><br /></td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/browser/chrome.png" alt='' title='' /></td><td class="aws">Chrome 60.0.3112.101</td><td>Nein</td><td>6</td><td>6.5 %</td><td>6</td><td>6 %</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="32" height="5" /><br /><img src="/awstats-icon/other/hh.png" width="32" height="5" /><br /></td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/browser/chrome.png" alt='' title='' /></td><td class="aws">Chrome 59.0.3071.125</td><td>Nein</td><td>2</td><td>2.1 %</td><td>3</td><td>3 %</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="11" height="5" /><br /><img src="/awstats-icon/other/hh.png" width="16" height="5" /><br /></td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/browser/chrome.png" alt='' title='' /></td><td class="aws">Chrome 41.0.2227.0</td><td>Nein</td><td>1</td><td>1 %</td><td>1</td><td>1 %</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="6" height="5" /><br /><img src="/awstats-icon/other/hh.png" width="6" height="5" /><br /></td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/browser/chrome.png" alt='' title='' /></td><td class="aws">Chrome 40.0.2214.85</td><td>Nein</td><td>17</td><td>18.6 %</td><td>17</td><td>17.1 %</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="89" height="5" /><br /><img src="/awstats-icon/other/hh.png" width="89" height="5" /><br /></td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/browser/chrome.png" alt='' title='' /></td><td class="aws">Chrome 38.0.2125.101</td><td>Nein</td><td>1</td><td>1 %</td><td>2</td><td>2 %</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="6" height="5" /><br /><img src="/awstats-icon/other/hh.png" width="11" height="5" /><br /></td></tr>
|
||||||
|
<tr bgcolor="#F6F6F6"><td class="aws" colspan="2"><b>Sonstige</b></td><td> </td><td><b>0</b></td><td><b>0 %</b></td><td><b>2</b></td><td><b>2 %</b></td><td> </td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/browser/mozilla.png" alt='' title='' /></td><td class="aws">Mozilla</td><td>Nein</td><td>0</td><td>0 %</td><td>1</td><td>1 %</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="1" height="5" /><br /><img src="/awstats-icon/other/hh.png" width="6" height="5" /><br /></td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/browser/unknown.png" alt='' title='' /></td><td class="aws"><span style="color: #666688">Unbekannt</span></td><td width="80">?</td><td>0</td><td>0 %</td><td>1</td><td>1 %</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="1" height="5" /><br /><img src="/awstats-icon/other/hh.png" width="6" height="5" /><br /></td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,78 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2018-10) - downloads">
|
||||||
|
<title>Statistik für mettcalc.de (2018-10) - downloads</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=downloads" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.11.2018 - 00:01</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Okt 2018</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="downloads"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Downloads </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th colspan="2">Downloads</th><th bgcolor="#66DDEE" width="80">Zugriffe</th><th bgcolor="#66DDEE" width="80">206 Zugriffe</th><th bgcolor="#2EA495" width="80">Bytes</th><th bgcolor="#2EA495" width="80">durchschnitt. Größe</th></tr>
|
||||||
|
<tr><td width="32"><img src="/awstats-icon/mime/text.png" alt='' title='' /></td><td class="aws"><a href="http://mettcalc.de/robots.txt" target="url" rel="nofollow">/robots.txt</a></td><td>0</td><td>2</td><td>9.03 KB</td><td>4.52 KB</td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,77 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2018-10) - errors400">
|
||||||
|
<title>Statistik für mettcalc.de (2018-10) - errors400</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=errors400" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.11.2018 - 00:01</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Okt 2018</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="errors400"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Bad Request urls (HTTP code 400) </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>URL (0)</th><th bgcolor="#66DDEE">Fehlerhafte Zugriffe</th><th bgcolor="#4477DD" width="80">Verweise</th></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,77 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2018-10) - errors403">
|
||||||
|
<title>Statistik für mettcalc.de (2018-10) - errors403</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=errors403" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.11.2018 - 00:01</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Okt 2018</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="errors403"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Forbidden urls (HTTP code 403) </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>URL (0)</th><th bgcolor="#66DDEE">Fehlerhafte Zugriffe</th><th bgcolor="#4477DD" width="80">Verweise</th></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,77 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2018-10) - errors404">
|
||||||
|
<title>Statistik für mettcalc.de (2018-10) - errors404</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=errors404" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.11.2018 - 00:01</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Okt 2018</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="errors404"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Nicht auffindbare Seiten (Fehler 404) </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>URL (0)</th><th bgcolor="#66DDEE">Fehlerhafte Zugriffe</th><th bgcolor="#4477DD" width="80">Verweise</th></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,77 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2018-10) - keyphrases">
|
||||||
|
<title>Statistik für mettcalc.de (2018-10) - keyphrases</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=keyphrases" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.11.2018 - 00:01</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Okt 2018</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="keyphrases"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Suchausdrücke (Suchmaschinen) </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>0 verschiedene Suchbegriffe</th><th bgcolor="#8888DD" width="80">Häufigkeit</th><th bgcolor="#8888DD" width="80">Prozent</th></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,77 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2018-10) - keywords">
|
||||||
|
<title>Statistik für mettcalc.de (2018-10) - keywords</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=keywords" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.11.2018 - 00:01</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Okt 2018</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="keywords"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Suchbegriffe (Suchmaschinen) </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>0 Suchbegriffe</th><th bgcolor="#8888DD" width="80">Häufigkeit</th><th bgcolor="#8888DD" width="80">Prozent</th></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,101 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2018-10) - lasthosts">
|
||||||
|
<title>Statistik für mettcalc.de (2018-10) - lasthosts</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=lasthosts" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.11.2018 - 00:01</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Okt 2018</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="hosts"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Letzter Zugriff </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>Total : 16 Bekannte, 7 Unbekannte (IP konnte nicht aufgelöst werden ) - 21 Unterschiedliche Besucher</th><th bgcolor="#4477DD" width="80">Seiten</th><th bgcolor="#66DDEE" width="80">Zugriffe</th><th class="datasize" bgcolor="#2EA495" width="80">Bytes</th><th width="120">Letzter Zugriff</th></tr>
|
||||||
|
<tr><td class="aws">planetlab5.net.in.tum.de</td><td>17</td><td>17</td><td>88.29 KB</td><td>31.10.2018 - 21:57</td></tr>
|
||||||
|
<tr><td class="aws">ec2-52-53-201-78.us-west-1.compute.amazonaws.com</td><td>28</td><td>28</td><td>153.86 KB</td><td>31.10.2018 - 15:45</td></tr>
|
||||||
|
<tr><td class="aws">ec2-13-57-233-99.us-west-1.compute.amazonaws.com</td><td>22</td><td>22</td><td>120.89 KB</td><td>30.10.2018 - 20:38</td></tr>
|
||||||
|
<tr><td class="aws">ec2-54-153-85-18.us-west-1.compute.amazonaws.com</td><td>1</td><td>1</td><td>5.17 KB</td><td>30.10.2018 - 06:06</td></tr>
|
||||||
|
<tr><td class="aws">ec2-54-77-253-48.eu-west-1.compute.amazonaws.com</td><td>1</td><td>1</td><td>5.17 KB</td><td>30.10.2018 - 06:06</td></tr>
|
||||||
|
<tr><td class="aws">ec2-50-112-168-28.us-west-2.compute.amazonaws.com</td><td>1</td><td>1</td><td>5.17 KB</td><td>28.10.2018 - 05:37</td></tr>
|
||||||
|
<tr><td class="aws">ec2-52-214-107-165.eu-west-1.compute.amazonaws.com</td><td>1</td><td>1</td><td>5.17 KB</td><td>28.10.2018 - 05:36</td></tr>
|
||||||
|
<tr><td class="aws">demur191.vds</td><td>2</td><td>2</td><td>10.05 KB</td><td>26.10.2018 - 07:32</td></tr>
|
||||||
|
<tr><td class="aws">64.246.187.42</td><td>2</td><td>2</td><td>10.82 KB</td><td>26.10.2018 - 03:08</td></tr>
|
||||||
|
<tr><td class="aws">ip-109-40-66-209.web.vodafone.de</td><td>2</td><td>3</td><td>7.48 KB</td><td>15.10.2018 - 16:31</td></tr>
|
||||||
|
<tr><td class="aws">8.ip-46-105-30.eu</td><td>1</td><td>1</td><td>5.02 KB</td><td>12.10.2018 - 04:59</td></tr>
|
||||||
|
<tr><td class="aws">146-209-15-51.rev.cloud.scaleway.com</td><td>1</td><td>1</td><td>5.02 KB</td><td>12.10.2018 - 04:58</td></tr>
|
||||||
|
<tr><td class="aws">ip-5-146-194-133.unitymediagroup.de</td><td>2</td><td>4</td><td>13.31 KB</td><td>07.10.2018 - 19:40</td></tr>
|
||||||
|
<tr><td class="aws">www.whois.sc</td><td>2</td><td>2</td><td>10.82 KB</td><td>05.10.2018 - 17:32</td></tr>
|
||||||
|
<tr><td class="aws">ec2-54-202-223-100.us-west-2.compute.amazonaws.com</td><td>1</td><td>1</td><td>5.17 KB</td><td>05.10.2018 - 09:30</td></tr>
|
||||||
|
<tr><td class="aws">ec2-34-244-69-71.eu-west-1.compute.amazonaws.com</td><td>1</td><td>1</td><td>5.17 KB</td><td>05.10.2018 - 09:30</td></tr>
|
||||||
|
<tr><td class="aws">tmo-114-244.customers.d1-online.com</td><td>1</td><td>2</td><td>6.47 KB</td><td>04.10.2018 - 23:30</td></tr>
|
||||||
|
<tr><td class="aws">207.102.138.158</td><td>1</td><td>2</td><td>6.12 KB</td><td>04.10.2018 - 03:22</td></tr>
|
||||||
|
<tr><td class="aws">62.72.78.66</td><td>1</td><td>2</td><td>6.66 KB</td><td>02.10.2018 - 16:15</td></tr>
|
||||||
|
<tr><td class="aws">38.130.163.183</td><td>1</td><td>1</td><td>5.04 KB</td><td>02.10.2018 - 04:32</td></tr>
|
||||||
|
<tr><td class="aws">104.222.39.8</td><td>2</td><td>2</td><td>10.07 KB</td><td>02.10.2018 - 04:26</td></tr>
|
||||||
|
<tr><td class="aws">173.252.95.8</td><td> </td><td>1</td><td>4.52 KB</td><td>-</td></tr>
|
||||||
|
<tr><td class="aws">173.252.95.17</td><td> </td><td>1</td><td>4.52 KB</td><td>-</td></tr>
|
||||||
|
<tr><td class="aws"><span style="color: #666688">Sonstige</span></td><td> </td><td>-2</td><td>9.03 KB</td><td> </td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,87 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2018-10) - lastrobots">
|
||||||
|
<title>Statistik für mettcalc.de (2018-10) - lastrobots</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=lastrobots" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.11.2018 - 00:01</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Okt 2018</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="robots"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Letzter Zugriff </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>9 Zugriffe durch Suchmaschinen</th><th bgcolor="#66DDEE" width="80">Zugriffe</th><th class="datasize" bgcolor="#2EA495" width="80">Bytes</th><th width="120">Letzter Zugriff</th></tr>
|
||||||
|
<tr><td class="aws">Googlebot</td><td>89+47</td><td>674.33 KB</td><td>31.10.2018 - 23:42</td></tr>
|
||||||
|
<tr><td class="aws">Baiduspider</td><td>30</td><td>169.55 KB</td><td>31.10.2018 - 07:16</td></tr>
|
||||||
|
<tr><td class="aws">Firefox version 10 and lower - various robots</td><td>0+9</td><td>44.04 KB</td><td>31.10.2018 - 07:13</td></tr>
|
||||||
|
<tr><td class="aws">MJ12bot</td><td>15+9</td><td>126.45 KB</td><td>31.10.2018 - 04:53</td></tr>
|
||||||
|
<tr><td class="aws">Unknown robot identified by bot\*</td><td>3</td><td>18.03 KB</td><td>28.10.2018 - 20:38</td></tr>
|
||||||
|
<tr><td class="aws">Unknown robot (identified by hit on robots.txt)</td><td>0+2</td><td>9.35 KB</td><td>19.10.2018 - 00:50</td></tr>
|
||||||
|
<tr><td class="aws">linkdexbot</td><td>20+1</td><td>158.36 KB</td><td>17.10.2018 - 21:30</td></tr>
|
||||||
|
<tr><td class="aws">facebookexternalhit</td><td>10</td><td>30.01 KB</td><td>12.10.2018 - 23:33</td></tr>
|
||||||
|
<tr><td class="aws">netcraft</td><td>6</td><td>36.32 KB</td><td>09.10.2018 - 05:35</td></tr>
|
||||||
|
</table></td></tr></table><span style="font: 11px verdana, arial, helvetica;">* Die Robots, die hier angezeigt werden, zeigen Treffer oder Traffic welchen Besucher "nicht gesehen" haben und sind in den übrigen Diagrammen nicht enthalten. Zahlen hinter + sind erfolgreiche Treffer auf die "robots.txt"-Datei</span><br />
|
||||||
|
<br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,89 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2018-10) - osdetail">
|
||||||
|
<title>Statistik für mettcalc.de (2018-10) - osdetail</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=osdetail" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.11.2018 - 00:01</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Okt 2018</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="osversions"> </a><br /><table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Betriebssysteme </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th colspan="2">Versionen</th><th bgcolor="#4477DD" width="80">Seiten</th><th bgcolor="#4477DD" width="80">Prozent</th><th bgcolor="#66DDEE" width="80">Zugriffe</th><th bgcolor="#66DDEE" width="80">Prozent</th></tr>
|
||||||
|
<tr bgcolor="#F6F6F6"><td class="aws" colspan="2"><b>Linux</b></td><td><b>12</b></td><td><b>13.1 %</b></td><td><b>14</b></td><td><b>14.1 %</b></td><td> </td></tr>
|
||||||
|
<tr><td width="32"><img src="/awstats-icon/os/linuxandroid.png" alt='' title='' /></td><td class="aws"><a href="http://code.google.com/android/" title="Google Android home page [new window]" target="_blank">Google Android</a></td><td>2</td><td>2.1 %</td><td>3</td><td>3 %</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="11" height="5" /><br /><img src="/awstats-icon/other/hh.png" width="16" height="5" /><br /></td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/os/linux.png" alt='' title='' /></td><td class="aws">GNU Linux (Unknown or unspecified distribution)</td><td>10</td><td>10.9 %</td><td>11</td><td>11.1 %</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="53" height="5" /><br /><img src="/awstats-icon/other/hh.png" width="58" height="5" /><br /></td></tr>
|
||||||
|
<tr bgcolor="#F6F6F6"><td class="aws" colspan="2"><b>Windows</b></td><td><b>24</b></td><td><b>26.3 %</b></td><td><b>27</b></td><td><b>27.2 %</b></td><td> </td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/os/win7.png" alt='' title='' /></td><td class="aws"><a href="http://windows.microsoft.com/en-US/windows7/products/home/" title="Windows 7 home page [new window]" target="_blank">Windows 7</a></td><td>20</td><td>21.9 %</td><td>21</td><td>21.2 %</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="105" height="5" /><br /><img src="/awstats-icon/other/hh.png" width="110" height="5" /><br /></td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/os/win10.png" alt='' title='' /></td><td class="aws"><a href="http://www.microsoft.com/windows10/" title="Windows 10 home page [new window]" target="_blank">Windows 10</a></td><td>4</td><td>4.3 %</td><td>6</td><td>6 %</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="21" height="5" /><br /><img src="/awstats-icon/other/hh.png" width="32" height="5" /><br /></td></tr>
|
||||||
|
<tr bgcolor="#F6F6F6"><td class="aws" colspan="2"><b>Macintosh</b></td><td><b>54</b></td><td><b>59.3 %</b></td><td><b>54</b></td><td><b>54.5 %</b></td><td> </td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/os/macosx12.png" alt='' title='' /></td><td class="aws"><a href="http://www.apple.com/macosx/" title="Mac OS X home page [new window]" target="_blank">Mac OS X 10.12 Sierra</a></td><td>50</td><td>54.9 %</td><td>50</td><td>50.5 %</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="261" height="5" /><br /><img src="/awstats-icon/other/hh.png" width="261" height="5" /><br /></td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/os/macosx10.png" alt='' title='' /></td><td class="aws"><a href="http://www.apple.com/macosx/" title="Mac OS X home page [new window]" target="_blank">Mac OS X 10.10 Yosemite</a></td><td>4</td><td>4.3 %</td><td>4</td><td>4 %</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="21" height="5" /><br /><img src="/awstats-icon/other/hh.png" width="21" height="5" /><br /></td></tr>
|
||||||
|
<tr bgcolor="#F6F6F6"><td class="aws" colspan="2"><b>iOS</b></td><td><b>1</b></td><td><b>1 %</b></td><td><b>2</b></td><td><b>2 %</b></td><td> </td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/os/ios_ipad.png" alt='' title='' /></td><td class="aws"><a href="http://www.apple.com/ipad/ios" title="Apple iPad home page [new window]" target="_blank">iOS (iPad)</a></td><td>1</td><td>1 %</td><td>2</td><td>2 %</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="6" height="5" /><br /><img src="/awstats-icon/other/hh.png" width="11" height="5" /><br /></td></tr>
|
||||||
|
<tr bgcolor="#F6F6F6"><td class="aws" colspan="2"><b>Sonstige</b></td><td><b>0</b></td><td><b>0 %</b></td><td><b>2</b></td><td><b>2 %</b></td><td> </td></tr>
|
||||||
|
<tr><td><img src="/awstats-icon/browser/unknown.png" alt='' title='' /></td><td class="aws"><span style="color: #666688">Unbekannt</span></td><td>0</td><td>0 %</td><td>2</td><td>2 %</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="1" height="5" /><br /><img src="/awstats-icon/other/hh.png" width="11" height="5" /><br /></td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,77 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2018-10) - refererpages">
|
||||||
|
<title>Statistik für mettcalc.de (2018-10) - refererpages</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=refererpages" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.11.2018 - 00:01</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Okt 2018</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="refererpages"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Links von einer externen Seite (keine Suchmaschinen) </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>Total: 0 Unterschiedliche Seiten</th><th bgcolor="#4477DD" width="80">Seiten</th><th bgcolor="#4477DD" width="80">Prozent</th><th bgcolor="#66DDEE" width="80">Zugriffe</th><th bgcolor="#66DDEE" width="80">Prozent</th></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,77 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2018-10) - refererse">
|
||||||
|
<title>Statistik für mettcalc.de (2018-10) - refererse</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=refererse" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.11.2018 - 00:01</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Okt 2018</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="refererse"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Links von einer Internet-Suchmaschine </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>0 Suchmaschinen</th><th bgcolor="#4477DD" width="80">Seiten</th><th bgcolor="#4477DD" width="80">Prozent</th><th bgcolor="#66DDEE" width="80">Zugriffe</th><th bgcolor="#66DDEE" width="80">Prozent</th></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,63 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2018-10) - session">
|
||||||
|
<title>Statistik für mettcalc.de (2018-10) - session</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=session" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.11.2018 - 00:01</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Okt 2018</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
@@ -0,0 +1,78 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2018-10) - unknownbrowser">
|
||||||
|
<title>Statistik für mettcalc.de (2018-10) - unknownbrowser</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=unknownbrowser" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.11.2018 - 00:01</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Okt 2018</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="unknownbrowser"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Unbekannter Browser </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>User agent (1)</th><th>Letzter Zugriff</th></tr>
|
||||||
|
<tr><td class="aws">facebookexternalhit/1.1_(_http://www.facebook.com/externalhit_uatext.php)</td><td nowrap="nowrap">12.10.2018 - 23:19</td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,85 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2018-10) - unknownip">
|
||||||
|
<title>Statistik für mettcalc.de (2018-10) - unknownip</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=unknownip" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.11.2018 - 00:01</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Okt 2018</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="unknownip"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Unaufgelöste IP Adressen </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>7 Unbekannte (IP konnte nicht aufgelöst werden )</th><th bgcolor="#4477DD" width="80">Seiten</th><th bgcolor="#66DDEE" width="80">Zugriffe</th><th class="datasize" bgcolor="#2EA495" width="80">Bytes</th><th width="120">Letzter Zugriff</th></tr>
|
||||||
|
<tr><td class="aws">104.222.39.8</td><td>2</td><td>2</td><td>10.07 KB</td><td>02.10.2018 - 04:26</td></tr>
|
||||||
|
<tr><td class="aws">64.246.187.42</td><td>2</td><td>2</td><td>10.82 KB</td><td>26.10.2018 - 03:08</td></tr>
|
||||||
|
<tr><td class="aws">38.130.163.183</td><td>1</td><td>1</td><td>5.04 KB</td><td>02.10.2018 - 04:32</td></tr>
|
||||||
|
<tr><td class="aws">62.72.78.66</td><td>1</td><td>2</td><td>6.66 KB</td><td>02.10.2018 - 16:15</td></tr>
|
||||||
|
<tr><td class="aws">207.102.138.158</td><td>1</td><td>2</td><td>6.12 KB</td><td>04.10.2018 - 03:22</td></tr>
|
||||||
|
<tr><td class="aws">173.252.95.17</td><td> </td><td>1</td><td>4.52 KB</td><td>-</td></tr>
|
||||||
|
<tr><td class="aws">173.252.95.8</td><td> </td><td>1</td><td>4.52 KB</td><td>-</td></tr>
|
||||||
|
<tr><td class="aws"><span style="color: #666688">Bekannte</span></td><td>84</td><td>86</td><td>461.27 KB</td><td> </td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,79 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2018-10) - unknownos">
|
||||||
|
<title>Statistik für mettcalc.de (2018-10) - unknownos</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=unknownos" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.11.2018 - 00:01</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Okt 2018</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="unknownos"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Unbekanntes Betriebssystem </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>User agent (2)</th><th>Letzter Zugriff</th></tr>
|
||||||
|
<tr><td class="aws">facebookexternalhit/1.1_(_http://www.facebook.com/externalhit_uatext.php)</td><td nowrap="nowrap">12.10.2018 - 23:19</td></tr>
|
||||||
|
<tr><td class="aws">Mozilla/5.0_(compatible;_Baiduspider/2.0;__http://www.baidu.com/search/spider.html)</td><td nowrap="nowrap">12.10.2018 - 22:45</td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,78 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2018-10) - urldetail">
|
||||||
|
<title>Statistik für mettcalc.de (2018-10) - urldetail</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=urldetail" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.11.2018 - 00:01</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Okt 2018</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="urls"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Seiten-URL </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>Total: 1 Unterschiedliche Seiten</th><th bgcolor="#4477DD" width="80">Zugriffe</th><th class="datasize" bgcolor="#2EA495" width="80">durchschnitt. Größe</th><th bgcolor="#CEC2E8" width="80">Einstiegsseiten</th><th bgcolor="#C1B2E2" width="80">Exit Seiten</th><th> </th></tr>
|
||||||
|
<tr><td class="aws"><a href="http://mettcalc.de/" target="url" rel="nofollow">/</a></td><td>91</td><td>5.34 KB</td><td>86</td><td>86</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="261" height="4" /><br /><img src="/awstats-icon/other/hk.png" width="261" height="4" /><br /><img src="/awstats-icon/other/he.png" width="246" height="4" /><br /><img src="/awstats-icon/other/hx.png" width="246" height="4" /></td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,78 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2018-10) - urlentry">
|
||||||
|
<title>Statistik für mettcalc.de (2018-10) - urlentry</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=urlentry" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.11.2018 - 00:01</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Okt 2018</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="urls"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Einstiegsseiten </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>Total: 1 Unterschiedliche Seiten</th><th bgcolor="#4477DD" width="80">Zugriffe</th><th class="datasize" bgcolor="#2EA495" width="80">durchschnitt. Größe</th><th bgcolor="#CEC2E8" width="80">Einstiegsseiten</th><th bgcolor="#C1B2E2" width="80">Exit Seiten</th><th> </th></tr>
|
||||||
|
<tr><td class="aws"><a href="http://mettcalc.de/" target="url" rel="nofollow">/</a></td><td>91</td><td>5.34 KB</td><td>86</td><td>86</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="261" height="4" /><br /><img src="/awstats-icon/other/hk.png" width="261" height="4" /><br /><img src="/awstats-icon/other/he.png" width="246" height="4" /><br /><img src="/awstats-icon/other/hx.png" width="246" height="4" /></td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,78 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="AWStats 7.6 (build 20161204) from config file awstats.mettcalc.de.conf (http://www.awstats.org)">
|
||||||
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for mettcalc.de (2018-10) - urlexit">
|
||||||
|
<title>Statistik für mettcalc.de (2018-10) - urlexit</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
|
||||||
|
.aws_bodyl { }
|
||||||
|
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
|
||||||
|
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
|
||||||
|
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
|
||||||
|
.aws_data {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-bottom-width: 0px;
|
||||||
|
}
|
||||||
|
.aws_formfield { font: 13px verdana, arial, helvetica; }
|
||||||
|
.aws_button {
|
||||||
|
font-family: arial,verdana,helvetica, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid #ccd7e0;
|
||||||
|
background-image : url(/awstats-icon/other/button.gif);
|
||||||
|
}
|
||||||
|
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
|
||||||
|
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
|
||||||
|
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
|
||||||
|
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
|
||||||
|
b { font-weight: bold; }
|
||||||
|
a { font: 11px verdana, arial, helvetica, sans-serif; }
|
||||||
|
a:link { color: #0011BB; text-decoration: none; }
|
||||||
|
a:visited { color: #0011BB; text-decoration: none; }
|
||||||
|
a:hover { color: #605040; text-decoration: underline; }
|
||||||
|
.currentday { font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="margin-top: 0px">
|
||||||
|
<a name="top"></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="menu"> </a>
|
||||||
|
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=mettcalc.de&staticlinks&lang=de&output=urlexit" style="padding: 0px 0px 20px 0px; margin-top: 0">
|
||||||
|
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td>
|
||||||
|
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws" valign="middle"><b>Statistik für:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">mettcalc.de</span></td><td align="right" rowspan="3"><a href="http://www.awstats.org" target="awstatshome"><img src="/awstats-icon/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
|
||||||
|
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Zuletzt aktualisiert:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">01.11.2018 - 00:01</span></td></tr>
|
||||||
|
<tr><td class="aws" valign="middle"><b>Zeitraum:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Monat Okt 2018</span></td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr></table>
|
||||||
|
</form><br />
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><td class="aws"><a href="javascript:parent.window.close();">Fenster schließen</a></td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="urls"> </a><br />
|
||||||
|
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr><td class="aws_title" width="70%">Exit Seiten </td><td class="aws_blank"> </td></tr>
|
||||||
|
<tr><td colspan="2">
|
||||||
|
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
|
||||||
|
<tr bgcolor="#ECECEC"><th>Total: 1 Unterschiedliche Seiten</th><th bgcolor="#4477DD" width="80">Zugriffe</th><th class="datasize" bgcolor="#2EA495" width="80">durchschnitt. Größe</th><th bgcolor="#CEC2E8" width="80">Einstiegsseiten</th><th bgcolor="#C1B2E2" width="80">Exit Seiten</th><th> </th></tr>
|
||||||
|
<tr><td class="aws"><a href="http://mettcalc.de/" target="url" rel="nofollow">/</a></td><td>91</td><td>5.34 KB</td><td>86</td><td>86</td><td class="aws"><img src="/awstats-icon/other/hp.png" width="261" height="4" /><br /><img src="/awstats-icon/other/hk.png" width="261" height="4" /><br /><img src="/awstats-icon/other/he.png" width="246" height="4" /><br /><img src="/awstats-icon/other/hx.png" width="246" height="4" /></td></tr>
|
||||||
|
</table></td></tr></table><br />
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 7.6 (build 20161204)</b> - <a href="http://www.awstats.org" target="awstatshome">Erstellt durch awstats (Erweiterungen: hashfiles)</a></span><br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||