Advertisement
Guest User

Untitled

a guest
Jan 14th, 2024
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.36 KB | None | 0 0
  1. <?php
  2. /**
  3. *
  4. * @ This file is created by http://DeZender.Net
  5. * @ deZender (PHP5 Decoder for Zend Guard Encoder)
  6. *
  7. * @ Version : 3.0.4.0
  8. * @ Author : DeZender
  9. * @ Release on : 02.04.2017
  10. * @ Official site : http://DeZender.Net
  11. *
  12. */
  13.  
  14. if (!(isset($path_to_root)) || isset($_GET['path_to_root']) || isset($_POST['path_to_root'])) {
  15. exit('Restricted access');
  16. }
  17.  
  18. if (!(ini_get('date.timezone'))) {
  19. ini_set('date.timezone', 'Asia/Manila');
  20. }
  21.  
  22. $error_logfile = dirname(__FILE__) . '/tmp/errors.log';
  23. $debug = 1;
  24. $show_sql = 0;
  25. $go_debug = 0;
  26. $pdf_debug = 0;
  27. $sql_trail = 0;
  28. $select_trail = 0;
  29.  
  30. if (0 < $go_debug) {
  31. error_reporting(-1);
  32. ini_set('display_errors', 'On');
  33. }
  34. else {
  35. error_reporting(512 | 256 | 1024);
  36. ini_set('display_errors', 'On');
  37. }
  38.  
  39. if ($error_logfile != '') {
  40. ini_set('error_log', $error_logfile);
  41. ini_set('ignore_repeated_errors', 'On');
  42. ini_set('log_errors', 'On');
  43. }
  44.  
  45. $app_title = 'W3NEXTAPPS';
  46. $build_version = date('d.m.Y', filemtime($path_to_root . '/CHANGELOG.txt'));
  47. $power_by = 'W3NEXTAPPS';
  48. $power_url = 'http://w3nextapps.com';
  49. $no_check_edit_conflicts = 0;
  50. $no_zero_lines_amount = 1;
  51. $use_icon_for_editkey = 0;
  52. $auto_create_branch = 1;
  53. $save_report_selections = 0;
  54. $use_popup_windows = 1;
  55. ..........................................................
  56. .....................................
  57. ................
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement