| Server IP : 180.180.241.3 / Your IP : 216.73.216.25 Web Server : Microsoft-IIS/7.5 System : Windows NT NETWORK-NHRC 6.1 build 7601 (Windows Server 2008 R2 Standard Edition Service Pack 1) i586 User : IUSR ( 0) PHP Version : 5.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/AppServ/www/umedia3/inc/ |
Upload File : |
<?
function pcache_e() {
///return;
global $dcrs_pcache_s_runned;
global $dcrs_pcache_s_ccode;
global $dcrs_pcache_s_subdir;
global $dcrs_pcache;
global $REQUEST_METHOD;
$REQUEST_METHOD2=strtolower($REQUEST_METHOD);
if ($REQUEST_METHOD2=="post") {
echo "<!-- pcache_e() disabled due to post_method -->";
return; // disable cache on post_method
}
if (loginchk_lib("return")==true) {
echo "<!-- pcache_e() disabled due loginchk_lib()=true -->";
return; // disable cache on post_method
}
if ($dcrs_pcache_s_runned!="yes") {
die ("Pcache_e error pcache_s() never called; halting");
}
if ($dcrs_pcache_s_ccode=="") {
die ("Pcache_e error \$dcrs_pcache_s_ccode not defined; halting");
}
if ($dcrs_pcache=="") {
die ("Pcache_e error \$dcrs_pcache not defined; halting");
}
$cachefile = "$dcrs_pcache/$dcrs_pcache_s_ccode.html";
//echo "Pcache_e save cache file: $cachefile<BR>\n";
$fp = fopen($cachefile, 'w');
fwrite($fp, ob_get_contents());
fclose($fp);
ob_end_flush();
}
?>