zekuda
Üyeliği Durdurulmuş
Banlı Kullanıcı
-
Üyelik
16.06.2012
-
Yaş/Cinsiyet
29 / E
-
Meslek
Öğrenci
-
Konum
İstanbul Avrupa
-
Ad Soyad
U** B**
-
Mesajlar
679
-
Beğeniler
112 / 97
-
Ticaret
0, (%0)
Merhaba arkadaşlar bu gördüğünüz hatayı alıyorum malesef hata verdiği satırlar ise 7 ve 17. satırlar.
get_header();
include("settings.php");
$captcha_instance = new ReallySimpleCaptcha();
//Deleting unused PNG files generated by really simple captcha
7.Satır: $images = glob($captcha_instance->tmp_dir."/*.png");
foreach($images as $image){
$stat = @stat($image);
if (($stat['mtime'] + 1 * 60) < time()){
@unlink($image);
}
}
//Deleting unused text files generated by really simple captcha
$txtfiles = glob($captcha_instance->tmp_dir."/*.txt");
17 Satır. foreach($txtfiles as $txtfile){
$stat = @stat($txtfile);
if (($stat['mtime'] + 1 * 60) < time()){
@unlink($txtfile);
}
}