Re: [PHP] Creating thumbnails using Image Functions, then saving to folders

2006-10-24 Thread tedd
Chris asked: Is there a way to use a php FTP function to FTP the file out of the buffer to a directory on the server, or some other way to write a file to a folder without making that folder 0777? What about changing the folder's permission to 0777 during the operation and then changing

Re: [PHP] Creating thumbnails using Image Functions, then saving to folders

2006-10-23 Thread Richard Lynch
See how your network guys would feel about: A directory OUTSIDE the webtree which is 777. You can put the thumbnails in there. Then, in a PHP script that you use in the IMG tags, you would double check several things before you serve up that image: Does it match a record in the database so you

[PHP] Creating thumbnails using Image Functions, then saving to folders

2006-10-18 Thread Matthews, Chris
Good Morning: I am looking to create a thumbnail from an uploaded image, and then save it to a directory. I don't have any problem with the image functions, and can successfully create the thumbnail and push it to the browser or, as is currently set up, store the data in a database. What I

Re: [PHP] Creating thumbnails using Image Functions, then saving to folders

2006-10-18 Thread Eric Butera
On 10/18/06, Matthews, Chris [EMAIL PROTECTED] wrote: Good Morning: I am looking to create a thumbnail from an uploaded image, and then save it to a directory. I don't have any problem with the image functions, and can successfully create the thumbnail and push it to the browser or, as is

Re: [PHP] Creating thumbnails using Image Functions, then saving to folders

2006-10-18 Thread Børge Holen
On Wednesday 18 October 2006 19:40, Matthews, Chris wrote: Good Morning: I am looking to create a thumbnail from an uploaded image, and then save it to a directory. I don't have any problem with the image functions, and can successfully create the thumbnail and push it to the browser or, as