fork download
  1. <?php
  2. /**
  3.  *
  4.  * @ IonCube v8.3 Loader By DoraemonPT
  5.  * @ PHP 5.3
  6.  * @ Decoder version : 1.0.0.7
  7.  * @ Author : DoraemonPT
  8.  * @ Release on : 09.05.2014
  9.  * @ Website : http://E...content-available-to-author-only...u.eu
  10.  *
  11.  **/
  12.  
  13. if (!defined( 'INST_BASEDIR' )) {
  14. exit( 'Direct access is not allowed!' );
  15. define( 'STEP_MODULECHECK', 'phpmodules' );
  16. define( 'STEP_IOFILES', 'iopermission' );
  17. define( 'STEP_WELCOME', 'welcomemsg' );
  18. define( 'STEP_TERMSOFUSE', 'termsofuse' );
  19. define( 'STEP_TIMEZONE', 'timezones' );
  20. define( 'STEP_LANGUAGE', 'languages' );
  21. define( 'STEP_DBCONNECT', 'dbserverlogon' );
  22. define( 'STEP_DBSELECT', 'dbselection' );
  23. define( 'STEP_DBACCESS', 'dbaccesstest' );
  24. define( 'STEP_DBPREFIX', 'dbprefix' );
  25. define( 'STEP_RUNSQL', 'installsql' );
  26. define( 'STEP_ROOTUSER', 'rootuser' );
  27. define( 'STEP_WRITECONFIG', 'writeconfig' );
  28. define( 'STEP_FINISHED', 'finishedmsg' );
  29. define( 'STEP_CUSTOM', 'custom' );
  30. define( 'STEP_SETTOVERVIEW', 'settoverview' );
  31. array( STEP_MODULECHECK => array( 'title' => 'Penny Auction Wizards Installer', 'enabled' => true, 'autoskip' => true, 'modules' => array( 'mysql', 'mcrypt' ) ), STEP_IOFILES => array( 'title' => 'File Permissions', 'enabled' => true, 'autoskip' => true ), STEP_WELCOME => array( 'title' => 'Introduction', 'enabled' => true, 'maskname' => 'welcome_message.html' ), STEP_TERMSOFUSE => array( 'title' => 'Terms Of Use Agreement', 'enabled' => true, 'maskname' => 'terms_of_use.txt' ), STEP_LANGUAGE => array( 'title' => 'Select Language', 'enabled' => false, 'supported' => array( 'english' => 'English', 'chinese' => 'Chinese', 'german' => 'German', 'french' => 'French' ) ), STEP_TIMEZONE => array( 'title' => 'Select Timezone', 'enabled' => false ), STEP_DBCONNECT => array( 'title' => 'Server Connection', 'portoptional' => false, 'encryptlogin' => true ), STEP_DBSELECT => array( 'title' => 'Database Selection', 'allowcreate' => false ), STEP_DBACCESS => array( 'title' => 'Database Access Test', 'autoskip' => true, 'enabled' => true ), STEP_DBPREFIX => array( 'title' => 'Table Prefix', 'enabled' => false, 'optional' => true, 'separator' => '_' ), STEP_RUNSQL => array( 'title' => 'Install Database Tables', 'enabled' => true, 'viewsql' => false, 'maskname' => 'database_commands.sql' ), STEP_ROOTUSER => array( 'title' => 'Site Configuration', 'enabled' => false, 'encryptdata' => false, 'maskname' => 'insert_root_access.sql' ), STEP_CUSTOM => array( 'title' => 'Site Configuration', 'enabled' => true, 'autoskip' => false ) );
  32. STEP_WRITECONFIG;
  33. }
  34.  
  35. $steps = array( array( 'title' => 'Create Configuration File', 'enabled' => true, 'autoskip' => false, 'updateonzero' => true, 'maskname' => 'config.inc.php', 'savetofolder' => 'config/' ), STEP_FINISHED => array( 'title' => 'All done!', 'enabled' => true, 'maskname' => 'finished_message.html' ) );
  36. $config = array( 'installer_title_name' => 'Penny Auction Wizards Installer', 'show_php_error_messages' => false, 'show_database_error_messages' => false, 'mask_folder_name' => 'masks', 'ignore_installer_when_done' => false, 'allow_overriding_oldconfig' => true, 'allow_self_destruction' => true, 'automatically_self_destruct' => false, 'self_destruct_filter' => array( ), 'self_destruct_removes_folders' => true, 'session_prefix' => 'INST_', 'encryption_key' => '*r3p14ce_tHiz-w1Th>y0uR<paS5phr4ze!*', 'debug_sessions' => false, 'debug_posts' => false, 'debug_gets' => false );
  37. $keywords = array( 'open_bracket' => '{', 'close_bracket' => '}', 'next_query' => '-- NEXT_QUERY --', 'connection' => array( 'hostname' => 'localhost', 'username' => 'root', 'password' => '', 'database' => '', 'dbport' => '', 'dbprefix' => '' ), 'admin' => array( 'admin_username' => '', 'admin_password' => '', 'admin_passagain' => '', 'admin_realname' => '', 'admin_email' => '', 'admin_phonenr' => '', 'admin_level' => 10, 'admin_hashkey' => '' ), 'special' => array( 'company' => 'Penny Auction Wizards Inc', 'product' => 'Penny Auction Wizards', 'version' => '14', 'timezone' => '0', 'language' => 'gb', 'datenow' => date( 'H:m:s, F j, Y' ), 'sitename' => 'Penny Auction Wizards', 'siteurl' => $_SERVER['HTTP_REFERER'], 'pagetitle' => 'Welcome To Penny Auction Wizards Demo', 'metatagskeywords' => 'swoopo clone,swoopo site, telebid action script', 'metatagsdescription' => 'This is your websites description here', 'currencysymbol' => '$', 'currencycode' => 'USD', 'licensecode' => '' ) );
  38. ?>
Success #stdin #stdout 0.03s 25960KB
stdin
Standard input is empty
stdout
Direct access is not allowed!