1
0
Fork 0

images and localizing

Dieser Commit ist enthalten in:
oldperl 2011-08-23 14:08:57 +00:00
Ursprung a23cd6e222
Commit 29b005c9f4
8 geänderte Dateien mit 997 neuen und 893 gelöschten Zeilen

25
trunk/semr_image.php Normale Datei
Datei anzeigen

@ -0,0 +1,25 @@
<?php
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
define('SEMMELSTATZR_STATZIMG', true);
/*
echo "<pre>";
print_r($_SERVER);
echo "</pre>";
*/
header('Cache-Control: no-cache');
header("X-Robots-Tag: noindex, nofollow", true);
require '../../../wp-load.php';
sem_writeStatz();
// Output transparent gif
header('Content-type: image/gif');
header('Content-length: 43');
echo base64_decode('R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
?>