file uploads making a copy
Moderator: General Moderators
file uploads making a copy
I'm trying to upload a file, and then make a copy of it as a thumbnail. I'm having a real hard time getting it to work and also understanding the upload process. Can somebody please help. I've read the article on php.net about imagecopyresized and I still can't get it to work.
I am able to upload and move one file though.
I am able to upload and move one file though.
Thanks for that, I've went through the tutorial step-by-step, and now I'm getting an error.
I have checked my directory settings, and I currently have them them set to 777 where they need to be. I've also checked the spelling of the directories and they match up, what else could be causing this error?
edit:
I just read an article stating that imagegif() was taken out of some versions of the GD Library, how do I find out what version I'm running, like phpinfo();
Code: Select all
Warning: imagegif(): Unable to open '..uploads/products/productA.gif' for writing in manage/productInsert.php on line 23edit:
I just read an article stating that imagegif() was taken out of some versions of the GD Library, how do I find out what version I'm running, like phpinfo();
- feyd
- Neighborhood Spidermoddy
- Posts: 31559
- Joined: Mon Mar 29, 2004 3:24 pm
- Location: Bothell, Washington, USA
../uploads maybe.flann wrote:Thanks for that, I've went through the tutorial step-by-step, and now I'm getting an error.
I have checked my directory settings, and I currently have them them set to 777 where they need to be. I've also checked the spelling of the directories and they match up, what else could be causing this error?Code: Select all
Warning: imagegif(): Unable to open '..uploads/products/productA.gif' for writing in manage/productInsert.php on line 23
phpinfo() will tell you if GIF support is enable and what it supports.flann wrote:I just read an article stating that imagegif() was taken out of some versions of the GD Library, how do I find out what version I'm running, like phpinfo();