Ben bugün her şey sabaha kadar gayet iyi çalışıyordu php sayfa duyuyorum. Şimdi sayfa seçilen herhangi bir dosya yükleyerek değil. Ben almaya devam hepsi aşağıdaki hata iletisi:
Uyarı: move_uploaded_file (upload/BrainStream_2009_06_25_23041.zip) [function.move-tarih-file]: hattında 146 \ xampp \ htdocs \ Vektörizasy \ admin \ jobs_edit.php C: Böyle bir dosya ya da dizin: failed to open stream
Warning: move_uploaded_file() [function.move-uploaded-file]: Unable to move 'C:\Documents and Settings\Admin\Local Settings\Temp\php1B2.tmp' to 'upload/BrainStream_2009_06_25_23041.zip' in C:\xampp\htdocs\vectorization\admin\jobs_edit.php on line 146 File could not be uploaded. Please select a valid file. File Name:BrainStream.zip
Ben aşağıdaki kodu yazdım:
$uplfile = $_FILES['uploadfile']['name'];
$upltmp = $_FILES["uploadfile"]["tmp_name"];
if(!empty($uplfile))
{
$ext = explode(".", $uplfile);
$upload_date = date("Y_m_d"); //use this variable to change file name to avoid conflict with same name files
$upload_dir = "upload/";
$file_name=$ext[0]."_".$upload_date."_".rand(0, getrandmax()).".".$ext[1];
(move_uploaded_file($upltmp,$upload_dir.$file_name))
}
Ben XAMPP WinXP çalışan benim PC'de yüklü yığını var, 3 GB RAM ve Sabit disk alanı bol vardır.
Ne olursa olsun ben onu seçin hangi boyutu dosyası her zaman hata vermek.
Ne bu kodu yanlış olmalı?