Dobry den,
mam problem. Stiahol som si skript na upload súborov. No stále mi vypisuje rovnakú chybu. Kus kódu, kde sa to zastaví a vypise chybu je tu :
$flength_file = $TEMP_DIR . $UPLOAD_ID . '.dir/' . $UPLOAD_ID . '.flength';
$found_flength_file = false;
// Keep trying to read the flength file until timeout
for($i = 0; $i < $TIMEOUT_LIMIT; $i++){
if(file_exists($flength_file)){
$found_flength_file = true;
$start_time = @filectime($flength_file);
$fp = fopen($flength_file, "r");
$total_upload_size = fread($fp, filesize($flength_file)); //Read the size of the upload from the flength file
fclose($fp);
break;
}
else{ sleep(1); }
clearstatcache();
}
if(!$found_flength_file){
if($DEBUG_AJAX){ showDebugMessage("Failed to find flength file $flength_file"); }
showAlertMessage("<font color='red'>ERROR</font>: Failed to find <a href='http://uber-uploader.sourceforge.net/?section=flength' target='_new'>flength file</a>", 1);
}
V PHP som zaciatocnik a neviem co s tym. Viete mi niekto povedat, kde by mohol byt problem ?
Dakujem