Oturum günlüğü dosyasını dahil etmek için nasıl

1 Cevap php

[php]

$filename = "./logs/".$_SESSION['uniqueID'].".php" ; // output 4b1e7b3489549.php

$data = "bla..bla..\n";

$data = stripcslashes($data);

/* Writing file configurations */
    $buat = fopen($filename, "w+");
    fwrite($buat, "$data");
    fclose($buat);
?>

[/php] Now whe i call the output file from $filename (record.php) from page click.php below: [php]

$filelog2 = "./logs/config.php";

    if(file_exists($filelog1)){
        require_once $filelog1;
    }else{
        require_once $filelog2;
    }

echo "$filelog1 , $filelog2";// test
?>

[/php] When i go to page click.php i got Page load error in my firefox browser below, what this problem and how to fix it? thankyou...

Loop yönlendir

Firefox sunucu olacak tam hiç bir şekilde bu adres için isteği yönlendirerek olduğunu tespit etti.

Tarayıcı istenen öğeyi geri almak için çalışıyor durdu. Site olacak tam hiç bir şekilde isteği yönlendiriliyor.

  • Eğer özürlü veya engellenen çerezler bu site tarafından gerekli mi?

1 Cevap

Ben bu yayınlanmıştır kodu ile ilgisi olduğunu sanmıyorum. Eğer kodu ve onlar (yani yine bir sayfaya yönlendirir bir sayfaya yönlendiren bir sayfaya yönlendirme) döngü olabilir olsun herhangi bir header("location:...") komutları olup olmadığını kontrol edin.

Ayrıca [R] parametresi sonsuz bir döngü oluşturma ile mod_rewrite talimatları içeren bir .htaccess dosya (ya da Apache konfigürasyon) olabilir.