Re: [PHP] Re: $HTTP_POST_FILES always produces empty value.

2007-07-30 Thread Patrik Hasibuan
Hi David,

it's solved.

Your advise solved my problem. 

Thank you very much.
===
On Mon, 30 Jul 2007 22:03:06 +0930
David Robley <[EMAIL PROTECTED]> wrote:

> Patrik Hasibuan wrote:
> 
> > Dear my friends
> > 
> > I don't understand why $HTTP_POST_FILES always produces empty value.
> > 
> > This is my code
> > ===
> > //cgi/cgiprodukcatalogadmin.php
> >  > $berkasgambarproduk=$HTTP_POST_FILES['gambarproduk']['name'];
> > echo "gambarproduk: $gambarproduk";
> > echo "berkasgambarproduk: $berkasgambarproduk";
> > ?>
> > ===
> > This is the output in my Opera internet browser:
> > ===
> > gambarproduk: /tmp/phppd6DZy
> > berkasgambarproduk:
> > ===
> > this is my php.ini:
> > ===
> > 
> > ; File Uploads ;
> > 
> > 
> > ; Whether to allow HTTP file uploads.
> > file_uploads = On
> > 
> > ; Temporary directory for HTTP uploaded files (will use system default if
> > not ; specified).
> > ;upload_tmp_dir =
> > upload_tmp_dir = /srv/www/htdocs/tmpphp
> > 
> > ; Maximum allowed size for uploaded files.
> > upload_max_filesize = 100M
> > ===
> > 
> > Please tell me, "where is my mistake?".
> > 
> > Thank you very much in advance.
> 
> Unless you are using an old version of php <4.1.0 you probably should use
> the $_FILES array instead of $_HTTP_POST_FILES
> 
> Try that and see what happens. More info at http://php.net/file-upload if
> you need it.
> 
> 
> Cheers
> -- 
> David Robley
> 
> Oxymoron: Working Vacation.
> Today is Sweetmorn, the 65th day of Confusion in the YOLD 3173. 
> 
> -- 
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
> 
> 
> 


-- 
Patrik Hasibuan <[EMAIL PROTECTED]>
Junior Programmer

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



Re: [PHP] Re: $HTTP_POST_FILES always produces empty value.

2007-07-30 Thread Patrik Hasibuan
Hi David,

it's solved.

Your advise solved my problem. 

Thank you very much.
===
On Mon, 30 Jul 2007 22:03:06 +0930
David Robley <[EMAIL PROTECTED]> wrote:

> Patrik Hasibuan wrote:
> 
> > Dear my friends
> > 
> > I don't understand why $HTTP_POST_FILES always produces empty value.
> > 
> > This is my code
> > ===
> > //cgi/cgiprodukcatalogadmin.php
> >  > $berkasgambarproduk=$HTTP_POST_FILES['gambarproduk']['name'];
> > echo "gambarproduk: $gambarproduk";
> > echo "berkasgambarproduk: $berkasgambarproduk";
> > ?>
> > ===
> > This is the output in my Opera internet browser:
> > ===
> > gambarproduk: /tmp/phppd6DZy
> > berkasgambarproduk:
> > ===
> > this is my php.ini:
> > ===
> > 
> > ; File Uploads ;
> > 
> > 
> > ; Whether to allow HTTP file uploads.
> > file_uploads = On
> > 
> > ; Temporary directory for HTTP uploaded files (will use system default if
> > not ; specified).
> > ;upload_tmp_dir =
> > upload_tmp_dir = /srv/www/htdocs/tmpphp
> > 
> > ; Maximum allowed size for uploaded files.
> > upload_max_filesize = 100M
> > ===
> > 
> > Please tell me, "where is my mistake?".
> > 
> > Thank you very much in advance.
> 
> Unless you are using an old version of php <4.1.0 you probably should use
> the $_FILES array instead of $_HTTP_POST_FILES
> 
> Try that and see what happens. More info at http://php.net/file-upload if
> you need it.
> 
> 
> Cheers
> -- 
> David Robley
> 
> Oxymoron: Working Vacation.
> Today is Sweetmorn, the 65th day of Confusion in the YOLD 3173. 
> 
> -- 
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
> 
> 
> 


-- 
Patrik Hasibuan <[EMAIL PROTECTED]>
Junior Programmer

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



[PHP] Re: $HTTP_POST_FILES always produces empty value.

2007-07-30 Thread David Robley
Patrik Hasibuan wrote:

> Dear my friends
> 
> I don't understand why $HTTP_POST_FILES always produces empty value.
> 
> This is my code
> ===
> //cgi/cgiprodukcatalogadmin.php
>  $berkasgambarproduk=$HTTP_POST_FILES['gambarproduk']['name'];
> echo "gambarproduk: $gambarproduk";
> echo "berkasgambarproduk: $berkasgambarproduk";
> ?>
> ===
> This is the output in my Opera internet browser:
> ===
> gambarproduk: /tmp/phppd6DZy
> berkasgambarproduk:
> ===
> this is my php.ini:
> ===
> 
> ; File Uploads ;
> 
> 
> ; Whether to allow HTTP file uploads.
> file_uploads = On
> 
> ; Temporary directory for HTTP uploaded files (will use system default if
> not ; specified).
> ;upload_tmp_dir =
> upload_tmp_dir = /srv/www/htdocs/tmpphp
> 
> ; Maximum allowed size for uploaded files.
> upload_max_filesize = 100M
> ===
> 
> Please tell me, "where is my mistake?".
> 
> Thank you very much in advance.

Unless you are using an old version of php <4.1.0 you probably should use
the $_FILES array instead of $_HTTP_POST_FILES

Try that and see what happens. More info at http://php.net/file-upload if
you need it.


Cheers
-- 
David Robley

Oxymoron: Working Vacation.
Today is Sweetmorn, the 65th day of Confusion in the YOLD 3173. 

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