Re: [PHP] Safe mode imagecreatefromjpeg

2004-10-13 Thread Marek Kilimajer
Paulo JF Silva wrote:
Hi,
I have PHP 4.3.5 and safe mode on. When I create a new image with 
imagecreatefromjpeg(), the image owner is 'httpd' and not my ftp user. 
[this is in a shared host].

I would like to know if there is any way to create the image with my 
user... I can workaround mkdir  stuff with ftp access but i can't 
figure out a workaround this 'problem' caused by safe mode.
It's a little tricky. You need to catch imagecreatefromjpeg() output 
using output buffering, then open a temporary file, write the output 
there, rewind(), and ftp_fput(). Haven't tried it, but should work.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


Re: [PHP] Safe mode imagecreatefromjpeg

2004-10-09 Thread Curt Zirzow
* Thus wrote Paulo JF Silva:
 Hi,
 
 I have PHP 4.3.5 and safe mode on. When I create a new image with 
 imagecreatefromjpeg(), the image owner is 'httpd' and not my ftp user. 
 [this is in a shared host].
 
 I would like to know if there is any way to create the image with my 
 user... I can workaround mkdir  stuff with ftp access but i can't 
 figure out a workaround this 'problem' caused by safe mode.

You'll have to request to the hosting company to make it possible
that your ftp user can have 'rwx' permissions  to the files that
the webserver creates.

The security implications will have to be up to them.


Curt
-- 
The above comments may offend you. flame at will.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Safe mode imagecreatefromjpeg

2004-10-08 Thread Paulo JF Silva
Hi,
I have PHP 4.3.5 and safe mode on. When I create a new image with 
imagecreatefromjpeg(), the image owner is 'httpd' and not my ftp user. 
[this is in a shared host].

I would like to know if there is any way to create the image with my 
user... I can workaround mkdir  stuff with ftp access but i can't 
figure out a workaround this 'problem' caused by safe mode.

Any sugestion?
TIA,
Paulo JF Silva
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php