Dosyaları silmez

0 Cevap php

I ran chown -R www-data:www-data /srv/www/dev.example.com/public_html/uploads/ didn't work Tried chmod 777 didn't work.

define('UPLOADPATH', "/srv/www/dev.example.com/public_html/uploads/members/");
$userId = 6;
$dir = UPLOADPATH . $userId;
rmdir($dir);

isn't removing the users folder(This runs to wipe out all their files, when deleting account). also(To delete just one photo)

 $RemovePreview = UPLOADPATH . $userId. '/' . $file . '_preview.' . $image_ending;
                        if (file_exists($RemovePreview))
                        {
                            @unlink($RemovePreview);
                        }

dosya ve image_ending benim Veritabanı geliyor. Ayrıca dosyayı silmez.

Gerçekten ne kadar biliyor bilmiyorum. Bu Bir Php, Server veya sorunu hem emin değil misiniz?

0 Cevap