PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB` =')){ $includes_path = 'includes'; }elseif(version_compare(PHP_VERSION, '7.1.0', '>=') && is_dir($globals['path'].'/includes71')){ $includes_path = 'includes71'; }elseif(version_compare(PHP_VERSION, '5.6.0', '>=') && is_dir($globals['path'].'/includes56')){ $includes_path = 'includes56'; }elseif(version_compare(PHP_VERSION, '5.3.0', '>=') && is_dir($globals['path'].'/includes53')){ $includes_path = 'includes53'; }elseif(is_dir($globals['path'].'/includes52')){ $includes_path = 'includes52'; }else{ $includes_path = 'includes'; } $globals['includes_path'] = $globals['path'].'/'.$includes_path; $globals['mainfiles'] = $globals['includes_path'].'/main'; $globals['adminfiles'] = $globals['includes_path'].'/admin'; $globals['clifiles'] = $globals['includes_path'].'/cli'; $globals['libfiles'] = $globals['path'].'/lib'; $globals['enduser'] = $globals['path']; // Is just an alias $globals['wwwdir'] = $globals['path'].'/www'; $globals['euthemes'] = $globals['wwwdir'].'/themes'; $globals['protocols'] = array('http' => 'http://', 'https' => 'https://', 'http_www' => 'http://www.', 'https_www' => 'https://www.'); $globals['site_fileindex'] = array('index.php', '.htaccess', 'sitepad', 'sitepad-data'); $globals['orig_editor_path'] = $globals['path'].'/editor'; $globals['editor_path'] = $globals['path'].'/editor'; // This is for extraordinary write permissions like making a Directory Writable // If no suPHP is detected write permissions would be 0777 // If suPHP is detected we change it to 0755 $globals['odc'] = 0777;//Octal Directory CHMOD $globals['sdc'] = '0777';//String Directory CHMOD $globals['ofc'] = 0777;//Octal File CHMOD $globals['sfc'] = '0777';//String File CHMOD $globals['ocfc'] = 0644;//Octal Config File CHMOD $globals['scfc'] = '0644';//String Config File CHMOD $globals['efc'] = 0755;//Octal Executable File CHMOD // This is added here because the correct permissions should be loaded when in CLI mode // Config file CHMOD if(!empty($globals['chmod_conf_file']) && strlen($globals['chmod_conf_file']) > 0){ $globals['ocfc'] = octdec($globals['chmod_conf_file']);//Octal $globals['scfc'] = $globals['chmod_conf_file'];//String } // Is there a manual overide for files which should be writable if(!empty($globals['chmod_files']) && strlen($globals['chmod_files']) > 0){ $globals['ofc'] = octdec($globals['chmod_files']);//Octal $globals['sfc'] = $globals['chmod_files'];//String } // Is there a manual overide for directories which should be writable if(!empty($globals['chmod_dir']) && strlen($globals['chmod_dir']) > 0){ $globals['odc'] = octdec($globals['chmod_dir']);//Octal $globals['sdc'] = $globals['chmod_dir'];//String } // Disable error reporting if not debug mode if(empty($globals['debug_mode'])){ error_reporting(0); if(function_exists('ini_set')){ ini_set('display_errors', 'Off'); ini_set('error_reporting', 'E_ALL & ~E_NOTICE & ~E_DEPRECATED'); } }