Anfragen und IP-Adressen werden nicht protokolliert ...
Christoph Berndt, cb@metaspinner.de
Bewertung dieses Beitrags: [Beitragsbewertung: 60%]
Nocheinmal als Hauptthema, damit es nicht untergeht:
Die Fragen lassen sich recht schnell klaeren - das hat nichts mit
Ausspionieren zu tun.
Die Domain webtip.ch fungiert als Weiterleitung der Suchanfragen an
das
Mediaplex-System, welches eBay im Sinne seines Partnerprogrammes
nutzt, und unter anderem gewaehrleitet, dass die Suche
uneingeschraenkt funktioniert, falls es
zu Umstellungen seitens ebay.de oder des eBay-Partnerprogrammes
kommen sollte.
Dieses Partnerprogramm soll nach einer Testphase dazu beitragen,
die finanzielle Unterstuetzung der Mozilla Foundation abzusichern.
Es werden von unserer Seite keine personenbezogenen Daten erhoben.
Die IPs und Suchanfragen werden weder gespeichert, noch in
irgendeiner Form statistisch ausgewertet.
Auszug aus den erhobenen Daten des Servers „webtip.ch“:
anonym 11:46:53 Mozilla Suchanfrage
anonym 11:46:59 Mozilla Suchanfrage
anonym 11:47:06 Mozilla Suchanfrage
anonym 11:47:09 Mozilla Suchanfrage
anonym 11:47:39 Mozilla Suchanfrage
anonym 11:47:42 Mozilla Suchanfrage
anonym 11:47:46 Mozilla Suchanfrage
anonym 11:47:58 Mozilla Suchanfrage
anonym 11:48:11 Mozilla Suchanfrage
anonym 11:48:13 Mozilla Suchanfrage
anonym 11:48:39 Mozilla Suchanfrage
anonym 11:49:30 Mozilla Suchanfrage
anonym 11:49:47 Mozilla Suchanfrage
anonym 11:49:54 Mozilla Suchanfrage
Die Zugriffsstatistiken werden Mozilla Europe zur Verfügung gestellt.
Falls Bedarf besteht, bin ich gerne bereit den Quelltext des
verwendeten
Perl-Scriptes zur Verfügung zu stellen – um alle Zweifel ausräumen zu
können.
Weitere Fragen beantworte ich gerne per E-Mail: cb@metaspinner.de
Christoph Berndt
metaspinner media GmbH
-----
The domain webtip.ch works as a redirect for queries to
the Mediaplex system which is used by eBay as a part of its affiliate
programme. The mediaplex system ensures the functionality of the
search
if changes are made by eBay.
After a test stage this affiliate programme shall be used
to support the Mozilla Foundation.
We will not collect any personal data. IP addresses and
queries will not be saved or statistically analyzed.
Excerpt from the collected data of the webtip.ch server:
anonym 11:46:53 Mozilla Suchanfrage
anonym 11:46:59 Mozilla Suchanfrage
anonym 11:47:06 Mozilla Suchanfrage
anonym 11:47:09 Mozilla Suchanfrage
anonym 11:47:39 Mozilla Suchanfrage
anonym 11:47:42 Mozilla Suchanfrage
anonym 11:47:46 Mozilla Suchanfrage
anonym 11:47:58 Mozilla Suchanfrage
anonym 11:48:11 Mozilla Suchanfrage
anonym 11:48:13 Mozilla Suchanfrage
anonym 11:48:39 Mozilla Suchanfrage
anonym 11:49:30 Mozilla Suchanfrage
anonym 11:49:47 Mozilla Suchanfrage
anonym 11:49:54 Mozilla Suchanfrage
The access statistic are made available to Mozilla Europe.
If neccessary, I will provide the source code of the perl
script which is used for this redirect to dispel all doubts.
In case of further questions do not hestitate to send me
an e-mail: cb@metaspinner.de
Christoph Berndt
---
Falls es funktioniert - hier das Perl-Script. Die Partner-ID und das
Serververzeichnis habe ich ge"X"t.
#!/usr/bin/perl -t
# modified by cb and db... to apply axel hechts needs
#
http://www.webtip.ch...e.pl?query=palm
$datadir = 'XXX';
$name = "Mozilla Suchanfrage";
$keyword = $ENV{'QUERY_STRING'};
my $redir_url =
'http://64.158.223.128/ad/ck/XXXXX?RedirectEnter&partner=XXXX&loc=htt
p://search.ebay.de/search/search.dll?' . $keyword;
my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) =
localtime(time);
my $user_ip = "anonym";
$year += 1900;
$mon++;
if($mon < 10 ) { $mon = "0$mon"; }
if($mday < 10 ) { $mday = "0$mday"; }
if($hour < 10 ) { $hour = "0$hour"; }
if($min < 10 ) { $min = "0$min"; }
if($sec < 10 ) { $sec = "0$sec"; }
my $date_file_name = "$year" . "_" . $mon . "_" . $mday;
my $date_file_content = "$user_ip\t$hour:$min:$sec\t$name\n";
open(DATA, ">>$datadir/$date_file_name.log");
print DATA $date_file_content;
close(DATA);
open(DATA, "<$datadir/total.txt");
$total_clicks = <DATA>;
close(DATA);
$total_clicks++;
open(DATA, ">$datadir/total.txt");
print DATA $total_clicks;
close(DATA);
# print "Content-type: text/html\n\n";
# print $redir_url;
print "Location: $redir_url\n\n";
exit;