[PHP] ftp_put Problems

2004-09-25 Thread Julian
Hello, I need to use FTP to upload a local file to a server. The uploads must be done through FTP and not HTTP. Unfortunately, the example in the manual is not working for me. If someone has any suggestions I would really appreciate it. Thanks, Julian -- PHP General Mailing List

Re: [PHP] ftp_put Problems

2004-09-25 Thread Marek Kilimajer
Julian wrote: Hello, I need to use FTP to upload a local file to a server. The uploads must be done through FTP and not HTTP. Unfortunately, the example in the manual is not working for me. If someone has any suggestions I would really appreciate it. Not much information. There is not error

Re: [PHP] ftp_put Problems

2004-09-25 Thread Julian
Maybe I should be more specific about what I am trying to do. I may be way off base in my approach. I want to upload using ftp a file from my local c drive (c:\somefile.text) to my server. I have been trying the ftp_put function example in the manual and it is failing. It reports There was a

Re: [PHP] ftp_put Problems

2004-09-25 Thread Jason Wong
On Sunday 26 September 2004 06:38, Julian wrote: Maybe I should be more specific about what I am trying to do. I may be way off base in my approach. I want to upload using ftp a file from my local c drive (c:\somefile.text) to my server. I have been trying the ftp_put function example in the

Re: [PHP] ftp_put Problems

2004-09-25 Thread Julian
i am trying to get a file from my local c drive to my server using something other than a form. thanks, julian Jason Wong [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] On Sunday 26 September 2004 06:38, Julian wrote: Maybe I should be more specific about what I am trying to do. I

Re: [PHP] ftp_put Problems

2004-09-25 Thread Marek Kilimajer
Julian wrote: i am trying to get a file from my local c drive to my server using something other than a form. Hmm, you can run an ftp server on your local machine and use php script on the server to retrieve the files. http server will work just as well. Is this what you want? thanks, julian

Re: [PHP] ftp_put Problems

2004-09-25 Thread Julian
well, i suspect i am at a dead end. here is the layout of things. we want to put up an internet kiosk at certain thoroughbred auctions to allow people to send ecards as well as contact associates. we have a web cam on the kiosk and a partner came up with the idea of letting them send photos of

Re: [PHP] ftp_put Problems

2004-09-25 Thread Marek Kilimajer
Julian wrote: well, i suspect i am at a dead end. here is the layout of things. we want to put up an internet kiosk at certain thoroughbred auctions to allow people to send ecards as well as contact associates. we have a web cam on the kiosk and a partner came up with the idea of letting them

Re: [PHP] ftp_put Problems

2004-09-25 Thread raditha dissanayake
Julian wrote: i am trying to get a file from my local c drive to my server using something other than a form. This is pretty much an impossible task for server side scripting. You can perhaps use an applet to upload either via FTP or HTTP. but marek's last mail is probably the best solution.

[PHP] FTP_PUT problems

2003-07-27 Thread Rausch Alexandru
I have some problem with uploading a file from my harddisk using a ftp connection. Here are the 2 files: test.php contains the form: table form method=get action=test2.php enctype=multipart/form-data tr class=cen tdTitlu gif/td tdnbsp;::nbsp;/td tdinput type=file name=util class=form1brinput

[PHP] FTP_PUT PROBLEMS

2003-07-27 Thread Rausch Alexandru
I have some problem with uploading a file from my harddisk using a ftp connection. Here are the 2 files: test.php contains the form: table form method=get action=test2.php enctype=multipart/form-data tr class=cen tdTitlu gif/td tdnbsp;::nbsp;/td tdinput type=file name=util class=form1brinput

[PHP] FTP_PUT problems

2003-07-27 Thread Rausch Alexandru
I have some problem with uploading a file from my harddisk using a ftp connection. Here are the 2 files: test.php contains the form: table form method=get action=test2.php enctype=multipart/form-data tr class=cen tdTitlu gif/td tdnbsp;::nbsp;/td tdinput type=file name=util class=form1brinput

Re: [PHP] FTP_PUT PROBLEMS

2003-07-27 Thread Jason Wong
On Sunday 27 July 2003 10:22, Rausch Alexandru wrote: I have some problem with uploading a file from my harddisk using a ftp connection. Here are the 2 files: You don't upload local files using the ftp_*() functions. You follow the examples in manual Handling file uploads. -- Jason Wong -