Advertisement
Guest User

Untitled

a guest
Jul 12th, 2012
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.35 KB | None | 0 0
  1. <?php
  2. /**
  3. *
  4. * @ This file is created by deZender.Net
  5. * @ deZender (PHP5 Decoder for ionCube Encoder)
  6. *
  7. * @ Version : 1.1.5.0
  8. * @ Author : DeZender
  9. * @ Release on : 09.06.2012
  10. * @ Official site : http://DeZender.Net
  11. *
  12. */
  13.  
  14. $domain = (substr( getenv( 'HTTP_HOST' ), 0, 4 ) == 'www.' ? substr( getenv( 'HTTP_HOST' ), 4 ) : getenv( 'HTTP_HOST' ));
  15. $bLicense = $licenseUser . chr( 58 );
  16. $intLicense = 5323;
  17.  
  18. if (!( $connection = mysql_connect( $dbHost, $dbUser, $dbPassword ))) {
  19. exit( 'DB ERROR: ' . mysql_error( ) );
  20. (bool)true;
  21. }
  22.  
  23. mysql_set_charset( 'UTF-8', $connection );
  24.  
  25. if (!( mysql_select_db( $dbName, $connection ))) {
  26. exit( 'DB ERROR: ' . mysql_error( ) );
  27. (bool)true;
  28. }
  29.  
  30. unset( $dbHost );
  31. unset( $dbName );
  32. unset( $dbUser );
  33. unset( $dbPassword );
  34. $aLicense = $intLicense . chr( 64 ) . $domain;
  35. $config = array( );
  36.  
  37. if (!( $query = mysql_query( 'SELECT * FROM settings' ))) {
  38. exit( 'Can not fetch the settings.' );
  39. (bool)true;
  40. }
  41.  
  42. if ($row = mysql_fetch_assoc( $query )) {
  43. $config[$row['key']] = $row['value'];
  44. }
  45.  
  46. $xLicense = md5( $bLicense . 'target' . $aLicense );
  47. $query = mysql_query( 'SELECT * FROM ads' );
  48.  
  49. if ($row = mysql_fetch_assoc( $query )) {
  50. $config['ads'][$row['id']] = $row['code'];
  51. }
  52. ...................................................
  53. .......................
  54. ........
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement