Advertisement
Guest User

Untitled

a guest
Dec 12th, 2019
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. <?php
  2. /**
  3. *
  4. * @ This file is created by http://DeZender.Net
  5. * @ deZender (PHP7 Decoder for ionCube Encoder)
  6. *
  7. * @ Version : 4.0.9.0
  8. * @ Author : DeZender
  9. * @ Release on : 08.08.2019
  10. * @ Official site : http://DeZender.Net
  11. *
  12. */
  13.  
  14. ob_start();
  15. session_save_path(realpath(dirname(__FILE__) . '/..') . DIRECTORY_SEPARATOR . 'application' . DIRECTORY_SEPARATOR . 'data' . DIRECTORY_SEPARATOR . 'sessions');
  16. session_start();
  17. error_reporting(32767);
  18. define('PHP_VER_MIN', '7.1.0');
  19. define('INSTALL_DIR', realpath(dirname(__FILE__)) . DIRECTORY_SEPARATOR);
  20.  
  21. if (file_exists(realpath(dirname(__FILE__) . '/..') . DIRECTORY_SEPARATOR . 'constants.php')) {
  22. require_once realpath(dirname(__FILE__) . '/..') . DIRECTORY_SEPARATOR . 'constants.php';
  23. }
  24. require_once SYSTEM_PATH . DIRECTORY_SEPARATOR . 'common.php';
  25. require_once BASEDIR . 'vendor/autoload.php';
  26. ......................................................................
  27. .....................................
  28. .............
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement