Php yükleme için izinler sorunları

0 Cevap php

Through the imap_* functions of php i'm trying to store the attachments of the emails on my server. I want to store the contents ($c, string) of the file with filename($f) in a sub-directory named with a thread id ($thread). m_attpath is a defined constant pointing absolute to the base folder.

    if(!is_dir(m_attpath.$thread)){
         mkdir(m_attpath.$thread);
    };

$handle = fopen(m_attpath.$thread.'/'.$f, 'w+');
fwrite($handle, $c);
fclose($handle);

Ama şimdi ben bir download.php sayfası aracılığıyla attachements görüntülenebilir izin için ayarlamanız gerekir izinleri ile uğraşıp ediyorum.

the main folder m_attpath = 0777 the thread folder is 0644 the files them self are also 0644

Benim tarayıcı aracılığıyla dosyalarını görüntülerken onlar bir soru işareti olarak bitirmek. Tarayıcı değil; t 404 uyarı görüntüler. Bir ftp programm i ekleri boyutunu görebilirsiniz. Yanlış bir şey, ama bulamıyorsun. Herkes bu konuda bana yardımcı olabilir misiniz?

thanx

0 Cevap