jLinuxHave you tried making the folder writeable?..
Hi, I have tried using
Code:
mkdir($dir, 0777, true);
but also didn't work. I have also tried using relative paths too, like:
Code:
$dir = 'uploads' . DIRECTORY_SEPARATOR . 'posts';
or
$dir = './uploads/posts';
but no luck at all.
The thing is that I'm on a project where many users can log in (think of a blog) and can upload images and create album folders inside the upload folder, so every member sould be able to do that.