Advertisement
Guest User

Untitled

a guest
Sep 21st, 2011
248
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. <?php
  2. /**
  3. *
  4. * @ This file is created by deZender.Net
  5. * @ deZender (PHP4 Decoder for eAccelerator & MMCache)
  6. *
  7. * @ Version : 1.1.3.0
  8. * @ Author : DeZender
  9. * @ Release on : 17.05.2011
  10. * @ Official site : http://DeZender.Net
  11. *
  12. */
  13.  
  14. function msec() {
  15. list( $msec, $sec ) = explode( ' ', microtime( ) );
  16. return $sec % 3600 * 1000 + * 1000;
  17. }
  18.  
  19. function gets_ms($a) {
  20. global $load_msec;
  21.  
  22. echo $a . ': ' . ( msec( ) - $load_msec ) . '<br />';
  23. }
  24.  
  25. ini_set( 'max_execution_time', 0 );
  26. $time = time( );
  27. $load_msec = msec( );
  28. require( '../lib/aLang.class.php' );
  29. require( '../include/config.php' );
  30. require( '../lib/functions.php' );
  31. require( '../lib/DB.php' );
  32. $time = time( );
  33. $db = new DB_MySql( );
  34. $db->connect( $config['db_host'], $config['db_user'], $config['db_pw'], $config['db_name'], 'MySql' );
  35.  
  36. if ($time + 5 < time( )) {
  37. exit( 'Datenbank Zeitüberschreitung! Bitte aktualisieren!' );
  38. }
  39.  
  40. require( '../lib/GetVillageData.php' );
  41. require( '../lib/login.php' );
  42. require( '../lib/sid.php' );
  43. .....................
  44. ..........
  45. ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement