I'm getting the following error when trying to save an image
Unable to open '/Applications/XAMPP/xamppfiles/htdocs/profile_images/' for writing:
Is a directory in /Applications/XAMPP/xamppfiles/htdocs/user.php on line 538
This is the line of code that's giving me trouble
imagejpeg($image, "/Applications/XAMPP/xamppfiles/htdocs/profile_images/".$userid);
I'm running XAMPP on a mac and mysql.
So far I've done the following:
- Opened the directory options and set everyone's access to read/write
- checked php.ini and made sure safe_mode was set to off
- chmod 777 to said folder
Any other suggestions?
Just in case I used chmod wrong, this is exactly what I typed
su root
chmod -R 777 /Applications/XAMPP/xamppfiles/htdocs/profile_images
$useridis empty. – Buggabill Dec 4 '12 at 22:27