Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /**
- *
- * @ This file is created by deZender.Net
- * @ deZender (PHP5 Decoder for ionCube Encoder)
- *
- * @ Version : 1.1.6.0
- * @ Author : DeZender
- * @ Release on : 02.06.2013
- * @ Official site : http://DeZender.Net
- *
- */
- $fn = 'accesslog_' . date( 'm-y' ) . '.txt';
- $content = date( 'd.m.y G:i:s' ) . ' ' . $_SERVER['REMOTE_ADDR'] . ' ' . $_SERVER['REMOTE_HOST'] . ' ' . $_SERVER['HTTP_USER_AGENT'] . '
- ';
- if (is_writable( $fn )) {
- if (!$handle = fopen( $fn, 'a' )) {
- echo '' . 'Kann die Datei ' . $fn . ' nicht öffnen<br />';
- exit( );
- }
- if (!fwrite( $handle, $content )) {
- echo '' . 'Kann in die Datei ' . $fn . ' nicht schreiben<br />';
- .......................................................................
- ................................
- .............
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement