[PHP] ftp in php

2004-09-23 Thread Linda
Hi, Does anyone know how to enable ftp in php without having to compile again as I get an error when I use the make command. I read something about making a change to the php.ini file: under Windows Extensions: extension=php_ftp.dll but where is this php_ftp.dll file located? how can I get a

[PHP] ftp functions not working

2004-09-02 Thread Cory D. Wiles
I am writing some backup scripts that will ftp my *.gz files to my ftp server. Unfortunately I didn't originally install php with ftp support (oversight on my part). I reconfigured/installed PHP with --enable-ftp and restarted everything, but the functions still don't work.

Re: [PHP] ftp functions not working

2004-09-02 Thread Marek Kilimajer
Cory D. Wiles wrote: I am writing some backup scripts that will ftp my *.gz files to my ftp server. Unfortunately I didn't originally install php with ftp support (oversight on my part). I reconfigured/installed PHP with --enable-ftp and restarted everything, but the functions still don't work.

Re: [PHP] ftp functions not working

2004-09-02 Thread Jason Wong
On Thursday 02 September 2004 22:43, Cory D. Wiles wrote: #!/usr/local/bin/php During the make I didn't see any errors. When I ran phpinfo() [http://www.randomthoughtprocess.com/info.php] it shows that I have FTP support. Is there something that I am missing? You're using php-cli. What

Re: [PHP] ftp functions not working

2004-09-02 Thread Michal Migurski
#!/usr/local/bin/php ? if (function_exists('ftp_connect')): print cool\n; else: print damn\n; endif; ? output when ran: 'Damn' During the make I didn't see any errors. When I ran phpinfo() [http://www.randomthoughtprocess.com/info.php] it shows that I have FTP support. Is there something

Re: [PHP] ftp functions not working

2004-09-02 Thread Cory D. Wiles
Marek Kilimajer wrote: Cory D. Wiles wrote: I am writing some backup scripts that will ftp my *.gz files to my ftp server. Unfortunately I didn't originally install php with ftp support (oversight on my part). I reconfigured/installed PHP with --enable-ftp and restarted everything, but the

Re: [PHP] ftp functions not working

2004-09-02 Thread Cory D. Wiles
Michal Migurski wrote: #!/usr/local/bin/php ? if (function_exists('ftp_connect')): print cool\n; else: print damn\n; endif; ? output when ran: 'Damn' During the make I didn't see any errors. When I ran phpinfo() [http://www.randomthoughtprocess.com/info.php] it shows that I have FTP

Re: [PHP] ftp functions not working

2004-09-02 Thread Pablo M. Rivas
mhhh.. try this: #!/usr/local/bin/php ? phpinfo(); ? and look on the console if you see ftp enabled... ¿do you have only ONE PHP INSTALL IN YOUR BOX?.. or two? On Thu, 02 Sep 2004 09:43:27 -0500, Cory D. Wiles [EMAIL PROTECTED] wrote: I am writing some backup scripts that will ftp my *.gz

Re: [PHP] ftp functions not working

2004-09-02 Thread Cory D. Wiles
I figured out why that it wasn't working. My prefix isn't the standard default prefix. I put php in /usr/local/apache/php. Though my script calls for /usr/local/bin/php...that php binary was copied there from the previous installation. Therefore, when I recompiled it was still using the 'old'

Re: [PHP] ftp functions not working

2004-09-02 Thread Michal Migurski
shell$php -r phpinfo(); | grep ftp Registered PHP Streams = php, http, ftp, compress.zlib shell$ I looked at the complete output and did not see that anything else for FTP. What do I need to do add FTP support for the CLI? Just to be absolutely sure, try to use `grep -i ftp` -- the FTP in FTP

[PHP] FTP loading

2004-04-01 Thread Lieve Vissenaeken
Please help me, Is it possible with php to load immedeatly pictures into a website by users (by use of a ftp-statement) ? I mean: so that any user on my website can add a picture to that website which is immedeatly visible on that webiste? If this is possible, where can I find the code for my

Re: [PHP] FTP loading

2004-04-01 Thread Raditha Dissanayake
in detail right at the start of the php manual). FTP is more complicated but the manual entries for the php ftp functions look good. -- Raditha Dissanayake. - http://www.radinks.com/print/upload.php SFTP, FTP and HTTP File Upload solutions -- PHP

RE: [PHP] FTP loading

2004-04-01 Thread Pablo Gosse
Lieve Vissenaeken wrote: Please help me, Is it possible with php to load immedeatly pictures into a website by users (by use of a ftp-statement) ? I mean: so that any user on my website can add a picture to that website which is immedeatly visible on that webiste? If this is possible, where

[PHP] PHP ftp web client

2004-03-15 Thread Mario Ohnewald
Hello! Can someone recommend me a good/stable PHP-FTP Web client? I wasnt quite happy with the google search results :P Thanks a lot! Mario -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP ftp web client

2004-03-15 Thread Richard Davey
Hello Mario, Monday, March 15, 2004, 11:40:45 AM, you wrote: MO Can someone recommend me a good/stable PHP-FTP Web client? MO I wasnt quite happy with the google search results :P Search hotscripts.com or Freshmeat.net -- Best regards, Richard Davey http://www.phpcommunity.org/wiki/296.html

Re: [PHP] FTP alternative to copy() ?

2004-03-02 Thread raisinlove
Raditha Dissanayake wrote: then use `cp source destination` In my php script? This must be executed automaticaly by the script. I probably have no other choice than copy() then. -s -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] FTP alternative to copy() ?

2004-03-02 Thread raisinlove
Raisinlove wrote: Raditha Dissanayake wrote: then use `cp source destination` In my php script? This must be executed automaticaly by the script. I probably have no other choice than copy() then. -s Ok, I found the solution! ftp_rename() was what I was looking for. Funny no one mentioned it! I

[PHP] FTP alternative to copy() ?

2004-03-01 Thread raisinlove
Hi, I'd like to know if there's an alternative to copy() to copy a file from one directory to another, using the FTP functions? I figured I could probably open the file from the server and save/upload it to a specified path. Can this be done? What syntax should I use? Thank you! -s -- PHP

Re: [PHP] FTP alternative to copy() ?

2004-03-01 Thread Richard Davey
Hello, Monday, March 1, 2004, 2:24:39 PM, you wrote: r Hi, I'd like to know if there's an alternative to copy() to copy a file r from one directory to another, using the FTP functions? r I figured I could probably open the file from the server and save/upload r it to a specified path. r Can

Re: [PHP] FTP alternative to copy() ?

2004-03-01 Thread Raditha Dissanayake
Hi, Are you trying to copy from the FTP to the web server or are you trying to pass it through to the end user? if you are on the same network other options include RCP (insecure) and SCP (secure) Richard Davey wrote: r Hi, I'd like to know if there's an alternative to copy() to copy a file

Re: [PHP] FTP alternative to copy() ?

2004-03-01 Thread raisinlove
Raditha Dissanayake wrote: Hi, Are you trying to copy from the FTP to the web server or are you trying to pass it through to the end user? if you are on the same network other options include RCP (insecure) and SCP (secure) Actually, it's much simpler than that but it might be overkill. My

Re: [PHP] FTP alternative to copy() ?

2004-03-01 Thread Raditha Dissanayake
then use `cp source destination` that should work. raisinlove wrote: Raditha Dissanayake wrote: Hi, Are you trying to copy from the FTP to the web server or are you trying to pass it through to the end user? if you are on the same network other options include RCP (insecure) and SCP (secure)

[PHP] ftp software

2004-02-22 Thread Nathan McIntyre
Hello! I am new both to PHP and web dev, and I am wondering what ftp software would be best for me to use. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] ftp software

2004-02-22 Thread electroteque
www.smartftp.com -Original Message- From: Nathan McIntyre [mailto:[EMAIL PROTECTED] Sent: Monday, February 23, 2004 8:37 AM To: [EMAIL PROTECTED] Subject: [PHP] ftp software Hello! I am new both to PHP and web dev, and I am wondering what ftp software would be best for me to use

[PHP] RE: Slightly off - was [PHP] ftp software

2004-02-22 Thread electroteque
-Original Message- From: electroteque [mailto:[EMAIL PROTECTED] Sent: Monday, February 23, 2004 12:19 AM To: [EMAIL PROTECTED] Subject: RE: [PHP] ftp software www.smartftp.com Isnt it funny i assumed you were using windoze ? Unfortunately i had to port back to my XP machine which i

[PHP] FTP (via firewall)

2004-02-18 Thread Tommi Virtanen
Hi! It's quite easy to write code, which connect to FTP-site (and upload one file), but How I can do it, if I had Firewall (like 123.123.123.123), and Firewall type is USER with no logon (following text from WS_FTP). Regards, gustavus -- PHP General Mailing List (http://www.php.net/) To

Re: [PHP] FTP (via firewall)

2004-02-18 Thread Jason Wong
On Wednesday 18 February 2004 17:34, Tommi Virtanen wrote: It's quite easy to write code, which connect to FTP-site (and upload one file), but How I can do it, if I had Firewall (like 123.123.123.123), and Firewall type is USER with no logon (following text from WS_FTP). Please explain

Re: [PHP] FTP (via firewall)

2004-02-18 Thread Tommi Virtanen
Please explain exactly what the problem is. If you had a firewall in the way and a normal FTP client couldn't login then whatever you do in PHP would not be able to get you in either. (from php.net) $conn_id = ftp_connect($ftp_server); $login_result = ftp_login($conn_id, $ftp_user_name,

Re: [PHP] FTP (via firewall)

2004-02-18 Thread Jason Wong
On Wednesday 18 February 2004 18:27, Tommi Virtanen wrote: This is simple, but I have firewall How to enter firewall ip Either I am stupid or you're not explaining the problem clearly enough. For starters: - what is the firewall doing? - what are you trying to do? -- Jason Wong -

Re: [PHP] FTP (via firewall)

2004-02-18 Thread Raditha Dissanayake
- what is the firewall doing? - what are you trying to do? cant' resist a me too post. - what is the firewall doing? - what are you trying to do? -- Raditha Dissanayake. http://www.radinks.com/sftp/ |

[PHP] Php ftp client recommendations?

2003-12-11 Thread MIKE YRABEDRA
Can anyone recommend a good, secure, stable php ftp client? And please save the look at hotscripts responses. I am looking for actual user input. Thanks. ++ Mike Yrabedra (President) 323 Incorporated Home of MacDock.com, MacAgent.com

Re: [PHP] Php ftp client recommendations?

2003-12-11 Thread David T-G
Mike -- ...and then MIKE YRABEDRA said... % % Can anyone recommend a good, secure, stable php ftp client? What is a php ftp client? The server-side php uses its own ftp connection or could use curl or the like to get files, while from your desktop you'll use ftp or ncftp or winf or cuteftp

Re: [PHP] Php ftp client recommendations?

2003-12-11 Thread Raditha Dissanayake
Hi, I don't have a stable php ftp client, but i do have an article that shows you how one can be written very quickly http://www.raditha.com/php/ftp Unless you are working behind a firewall i don't see why you want to use php for ftp. hope this helps. MIKE YRABEDRA wrote: Can anyone

Re: [PHP] FTP resumepos

2003-10-14 Thread Andrei Popovici
So, resumepos is the number of bytes from wich the ftp_get will start reading the 'remote_file' and writing to the 'local-file'? Andrei. Curt Zirzow [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] * Thus wrote Andrei Popovici ([EMAIL PROTECTED]): Can anyone help me understand how

[PHP] FTP resumepos

2003-10-13 Thread Andrei Popovici
Can anyone help me understand how the parameter resumepos from ftp_get function can be used? Thanks. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] FTP Errors

2003-10-13 Thread Ian
Hi, I was wondering if anyone knew how to retrieve connection error information when using FTP in php? By this I mean, when connecting to a ftp server that is full, ftp_connect just returns FALSE, and not the 421 error returned by the server. FALSE is also the response given when attempting to

Re: [PHP] FTP resumepos

2003-10-13 Thread Curt Zirzow
* Thus wrote Andrei Popovici ([EMAIL PROTECTED]): Can anyone help me understand how the parameter resumepos from ftp_get function can be used? ftp_get will first seek the value 'resumepos' within the 'remote_file', before it starts to write to 'local_file'. Curt -- My PHP key is worn out

[PHP] FTP hosting PHP releases?

2003-08-26 Thread Simon Fredriksson
Is there any official FTP server hosting the PHP tar balls? I've done a shell script that downloads, compiles and installs PHP. Problem is that it's kinda hard to fetch the tarballs since there are no good static links. They seem to change with every release. Trying to run wget

Re: [PHP] FTP hosting PHP releases?

2003-08-26 Thread Sascha Schumann
On Tue, 26 Aug 2003, Simon Fredriksson wrote: Is there any official FTP server hosting the PHP tar balls? I've done a shell script that downloads, compiles and installs PHP. Problem is that it's kinda hard to fetch the tarballs since there are no good static links. They seem to change with

[PHP] FTP accounts

2003-08-04 Thread Binay Agarwal
Hi everybody! can any body suggest me the good resources/snippet for creating and managing FTP accounts. My configuration includes: Redhat : 7.0 Php - 4.0.6 Apache web server Any help would be highly appreciated. Thanks in advance Binay

Re: [PHP] FTP accounts

2003-08-04 Thread Jason Wong
On Monday 04 August 2003 03:29, Binay Agarwal wrote: can any body suggest me the good resources/snippet for creating and managing FTP accounts. My configuration includes: Redhat : 7.0 Php - 4.0.6 Apache web server How you create an FTP account all depends on what ftpserver you're running.

[PHP] FTP - Can't build data connection

2003-07-26 Thread Suhas Pharkute
Hi I am writing a FTP application. When I upload a file I am getting following error, Warning: ftp_put(): Can't build data connection: Connection refused. There is no error for connection/login to ftp site. can any one help? Thanks, Suhas _ Encrypt your PHP

Re: [PHP] FTP - Can't build data connection

2003-07-26 Thread Andrew Brampton
This would happen when a incoming or a outgoing port 20 (FTP Data) connection can't be made. I don't know how PHP ftp functions work but normally the FTP client makes a outgoing connection on port 21, and then the FTP Server makes a incoming connection from port 20 when any kind of data is sent

[PHP] FTP Synching

2003-07-22 Thread jwulff
How would I download any new files on a remote machine to my local one (in a specific folder) via ftp? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] FTP Synching

2003-07-22 Thread Jeff Harris
On Jul 22, 2003, jwulff claimed that: |How would I download any new files on a remote machine to my local one (in a |specific folder) via ftp? You do realize that this is like subscribing to a automotive mail list and asking how to buy groceries. I would start by checking the man page for wget.

[PHP] FTP DLL

2003-06-01 Thread Canadaka
Me and a friend have been trying to make a php ftp client, it works fine on *nix systems, but not on Windows. We looked at everything, until i finaly noticed that php 4.2.3 is missing in the php.ini the extension=php_ftp.dll line. The actualy file in the extensions dir is missing as well. So

Re: [PHP] FTP DLL

2003-06-01 Thread Philip Olson
Me and a friend have been trying to make a php ftp client, it works fine on *nix systems, but not on Windows. We looked at everything, until i finaly noticed that php 4.2.3 is missing in the php.ini the extension=php_ftp.dll line. The actualy file in the extensions dir is missing as well

Re: [PHP] FTP DLL

2003-06-01 Thread Frappy John
On Saturday 31 May 2003 07:41 am, Canadaka wrote: Me and a friend have been trying to make a php ftp client, I'm confused. Do you literally mean an FTP client that is written in PHP (thus requiring PHP to be installed on each client machine)? Or do you mean a PHP generated HTML-based page

Re: [PHP] FTP

2003-04-02 Thread Tomás Liendo
You are right! :-) Other question: When I try to put a file as an anonymous user, I always receipt this error: Permission denied on server. (Upload). Does some form exists of allowing to anonymous users upload files or it is impossible? Thank you very much, Tom. Jon Haworth [EMAIL

[PHP] FTP

2003-04-01 Thread Tomás Liendo
Hi people I need help with FTP functions: What's the meaning of this error?: FTP_PUT: Could not determine CWdir: No such directory. Thank you very much, Tom. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] FTP

2003-04-01 Thread Jon Haworth
Hi Tomás, What's the meaning of this error?: FTP_PUT: Could not determine CWdir: No such directory. ^ Are you trying to save a file in a directory that doesn't exist? Cheers Jon -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

[PHP] ftp browsing

2003-02-23 Thread Matt Palermo
I have a php script that is like and ftp client, only is just browsers the server and displays file names and folders. If you click on the name of a folder that it displays, it will then display the files and folders inside that directory, and so on for all directories. It works perfectly when I

RE: [PHP] ftp browsing

2003-02-23 Thread Rich Gray
-Original Message- From: Matt Palermo [mailto:[EMAIL PROTECTED] Sent: 23 February 2003 09:46 To: [EMAIL PROTECTED] Subject: [PHP] ftp browsing I have a php script that is like and ftp client, only is just browsers the server and displays file names and folders. If you click

RE: [PHP] ftp browsing

2003-02-23 Thread Matt Palermo
; [EMAIL PROTECTED] Subject: RE: [PHP] ftp browsing -Original Message- From: Matt Palermo [mailto:[EMAIL PROTECTED] Sent: 23 February 2003 09:46 To: [EMAIL PROTECTED] Subject: [PHP] ftp browsing I have a php script that is like and ftp client, only is just browsers the server

RE: [PHP] ftp browsing

2003-02-23 Thread Rich Gray
I am using Windows XP Pro, and I am using Serv-U to run my FTP server. It is just a server running from my machine. Is it supposed to have PHP installed somewhere? OK I've probably misunderstood - I assumed you were running your PHP scripts locally - what platform are you running the PHP

RE: [PHP] ftp browsing

2003-02-23 Thread Matt Palermo
The web server is RedHat Linux and it's PHP version 4.2.3. -Original Message- From: Rich Gray [mailto:[EMAIL PROTECTED] Sent: Sunday, February 23, 2003 9:21 PM To: Matt Palermo; [EMAIL PROTECTED] Subject: RE: [PHP] ftp browsing I am using Windows XP Pro, and I am using Serv-U to run my

Re: Re[4]: [PHP] FTP not enabled in RedHat 7.x distro

2003-02-19 Thread Martin Marques
On Mar 18 Feb 2003 16:00, [EMAIL PROTECTED] wrote: Very weird - I thought RedHat would have enabled it too. I did When I say RH, I mean RedHat. The diference seems to be that I'm on 7.3, while you're on 7.1. Still, it should be compiled with ftp support. copy-and-paste the problem command to

Re: Re[6]: [PHP] FTP not enabled in RedHat 7.x distro

2003-02-19 Thread Martin Marques
On Mié 19 Feb 2003 08:54, [EMAIL PROTECTED] wrote: I was wondering if you were able to check the exact RH release of your PHP package, to see if it matched mine? == rpm -q php php-4.1.2-7.3.6 MM When you run phpinfo() the output gives you the configure line MM with which php was compiled,

Re[6]: [PHP] FTP not enabled in RedHat 7.x distro

2003-02-19 Thread role . php-general
Martin, In response to your mail of Wednesday 19 February 2003 at 11:44:52: MM When I say RH, I mean RedHat. The diference seems to be that I'm MM on 7.3, while you're on 7.1. MM Still, it should be compiled with ftp support. Yes, and we're patched with recent releases too, so I'd have thought

Re[8]: [PHP] FTP not enabled in RedHat 7.x distro

2003-02-19 Thread role . php-general
Martin, In response to your mail of Wednesday 19 February 2003 at 12:07:01: == rpm -q php MM php-4.1.2-7.3.6 Hm.. Same version here, and also a .6 release, but for 7.1 instead of 7.3, which leads me to suspect someone at RH fudged the build last time they released a patch. I'm sure I can

Re[2]: [PHP] FTP not enabled in RedHat 7.x distro

2003-02-18 Thread role . php-general
Martin, In response to your mail of Monday 17 February 2003 at 18:10:31: MM Use phpinfo() to know how your PHP was compiled. If it comes as a MM module, you should see a --enable-feature=shared. Don't know it MM ftp support can be compiled as shared, but Indeed - I think the doc's maybe (!)

Re[4]: [PHP] FTP not enabled in RedHat 7.x distro

2003-02-18 Thread role . php-general
Martin, In response to your mail of Monday 17 February 2003 at 18:27:05: MM My RH 7.3 php (distributed by RH) has --enable-ftp, so it was MM compiled with the ftp support. MM Check yor sintax. Could have a typo somewhere. Very weird - I thought RedHat would have enabled it too. I did

[PHP] FTP not enabled in RedHat 7.x distro

2003-02-17 Thread role . php-general
Hi, Installed RPM's from RedHat (latest patches) and using PHP with Apache under RH7.1 Linux, lots of scripts, no problems. The hitch is that a user just tried ftp_connect(), and got the unknown function error. Okay, so I expected this to be a missing php.so loadable module. However, it appears

Re: [PHP] FTP not enabled in RedHat 7.x distro

2003-02-17 Thread Rick Emery
17, 2003 11:44 AM Subject: [PHP] FTP not enabled in RedHat 7.x distro Hi, Installed RPM's from RedHat (latest patches) and using PHP with Apache under RH7.1 Linux, lots of scripts, no problems. The hitch is that a user just tried ftp_connect(), and got the unknown function error. Okay, so I

Re[2]: [PHP] FTP not enabled in RedHat 7.x distro

2003-02-17 Thread role . php-general
Rick, In response to your mail of Monday 17 February 2003 at 17:46:49: Thanks for your swift response! RE I also use Redhat 7.1 and use FTP successfully. Something in your RE setup? Well, I don't think so ... it's all fairly standard (only use RPM's) and the function not found suggests the

Re: [PHP] FTP not enabled in RedHat 7.x distro

2003-02-17 Thread Martin Marques
Quoting [EMAIL PROTECTED]: Hi, Installed RPM's from RedHat (latest patches) and using PHP with Apache under RH7.1 Linux, lots of scripts, no problems. The hitch is that a user just tried ftp_connect(), and got the unknown function error. Okay, so I expected this to be a missing php.so

Re: Re[2]: [PHP] FTP not enabled in RedHat 7.x distro

2003-02-17 Thread Martin Marques
Quoting [EMAIL PROTECTED]: Rick, In response to your mail of Monday 17 February 2003 at 17:46:49: Thanks for your swift response! RE I also use Redhat 7.1 and use FTP successfully. Something in your RE setup? Well, I don't think so ... it's all fairly standard (only use RPM's)

[PHP] ftp file to client machine

2003-02-13 Thread Petre Agenbag
HI I am trying to do the following: I have an ftp server configured, but instead of the user having to use an ftp client, I'd like them to use the browser: So I'm trying to make a mini web-based ftp client. Idea is to get their username and password ( and maybe the ftp address as well?) and to

Re: [PHP] ftp file to client machine

2003-02-13 Thread Ernest E Vogelsinger
At 18:45 13.02.2003, Petre Agenbag spoke out and said: [snip] But I am baffeled for the rest, ie, what to do on the download.ftp page. First I tried the ftp_get() with the $file used as the local and remote files, but it seems that that will not download the

[PHP] PHP FTP a security risk?????

2003-02-11 Thread Christopher Ditty
that they do not allow PHP FTP because it is a security risk. ? U, ok? I spoke with my customer about this and below is what his web host told him. My understanding of PHP FTP is that my script opens an ftp connection from the server to another FTP server somewhere else on the internet

Re: [PHP] PHP FTP a security risk?????

2003-02-11 Thread Jason Wong
. No errors, no nothing. I talked to his host and found out that they do not allow PHP FTP because it is a security risk. ? U, ok? So you're tranferring a file from SOMEWHERE to the server that your website is hosted on? If so then the reasons outline below ... I have been speaking

Re: [PHP] PHP FTP a security risk?????

2003-02-11 Thread Reuben D. Budiardja
a central server. When we tried to run my script, it simply stops. No errors, no nothing. I talked to his host and found out that they do not allow PHP FTP because it is a security risk. ? U, ok? So you're tranferring a file from SOMEWHERE to the server that your website is hosted

Re: [PHP] PHP FTP a security risk?????

2003-02-11 Thread Christopher Ditty
Unfortunately, I can only get the file via FTP. I just want to know where this other host got it's information. Chris Reuben D. Budiardja [EMAIL PROTECTED] 02/11/03 01:35PM On Tuesday 11 February 2003 02:11 pm, Jason Wong wrote: I agree with that. It's only a (potential) problem if you're

Re: [PHP] PHP FTP a security risk?????

2003-02-11 Thread Chris Wesley
On Tue, 11 Feb 2003, Christopher Ditty wrote: errors, no nothing. I talked to his host and found out that they do not allow PHP FTP because it is a security risk. ? U, ok? I consider FTP a security risk, period. (There /are/ ways to run an FTP server securely, but I won't assume

Re: [PHP] PHP FTP a security risk?????

2003-02-11 Thread Chris Wesley
On Tue, 11 Feb 2003, Chris Wesley wrote: On Tue, 11 Feb 2003, Christopher Ditty wrote: errors, no nothing. I talked to his host and found out that they do not allow PHP FTP because it is a security risk. ? U, ok? That said ... FTP is a protocol; there's nothing stopping you

Re: [PHP] PHP FTP a security risk?????

2003-02-11 Thread Christopher Ditty
Chris, Did you read the rest of the message? It sounds like the web host is saying that someone can access PHP FTP from an outside server and hack into the server. I am not trying to start a debate on whether or not people should send passwords and userids over plain text. Yes

Re: [PHP] PHP FTP a security risk?????

2003-02-11 Thread Chris Shiflett
--- Christopher Ditty [EMAIL PROTECTED] wrote: This script, among other things, FTPs a text file from a central server. When we tried to run my script, it simply stops. No errors, no nothing. I talked to his host and found out that they do not allow PHP FTP because it is a security risk

RE: [PHP] PHP FTP a security risk?????

2003-02-11 Thread James E Hicks III
script that they have written. James Hicks -Original Message- From: Christopher Ditty [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 11, 2003 3:34 PM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Re: [PHP] PHP FTP a security risk? Chris, Did you read the rest of the message

Re: [PHP] PHP FTP a security risk?????

2003-02-11 Thread Chris Wesley
On Tue, 11 Feb 2003, Christopher Ditty wrote: Chris, Did you read the rest of the message? It sounds like the web Yes, I read your entire message. host is saying that someone can access PHP FTP from an outside server and hack into the server. That's precisely NOT what the hosting provider

Re: [PHP] PHP FTP a security risk?????

2003-02-11 Thread Jason Wong
On Wednesday 12 February 2003 07:46, Chris Wesley wrote: On Tue, 11 Feb 2003, Christopher Ditty wrote: Chris, Did you read the rest of the message? It sounds like the web Yes, I read your entire message. host is saying that someone can access PHP FTP from an outside server and hack

Re: [PHP] PHP FTP a security risk?????

2003-02-11 Thread Chris Wesley
On Wed, 12 Feb 2003, Jason Wong wrote: On Wednesday 12 February 2003 07:46, Chris Wesley wrote: You access an FTP server with a user name and a password to retrieve a file via PHP FTP. The user name and password is the same that grants you access to your hosting providers server

Re: [PHP] PHP FTP a security risk?????

2003-02-11 Thread Jason Wong
On Wednesday 12 February 2003 14:02, Chris Wesley wrote: Why? What's a better argument? It's certainly just a piece of a much larger argument, but avoiding a full-fledged lecture outside the immediate context of the original question (and trying to keep it related to PHP somehow) makes it

Re: [PHP] PHP FTP a security risk?????

2003-02-11 Thread Chris Wesley
On Wed, 12 Feb 2003, Jason Wong wrote: On Wednesday 12 February 2003 14:02, Chris Wesley wrote: Why? What's a better argument? It's certainly just a piece of a much larger argument, but avoiding a full-fledged lecture outside the immediate context of the original question (and trying to

Re: [PHP] PHP FTP a security risk?????

2003-02-11 Thread Jason Wong
On Wednesday 12 February 2003 15:00, Chris Wesley wrote: If you assume the users use FTP for uploads, then you have to assume the hosting company is a band of hypocrites. So the conclusion for the OP is simple: If the host is allowing you to use FTP to upload your site then they are a bunch

Re: [PHP] ftp and www

2003-01-07 Thread Marek Kilimajer
There are many of them: http://www.hotscripts.com/PHP/Scripts_and_Programs/File_Manipulation/File_Management/ Mukta Telang wrote: Hi, I am told to merge ftp and www ! I cant understand what it means.. May be it means that it should be possible to browse ftp directory from a browser? What is

Re: [PHP] ftp and www

2003-01-07 Thread Brian V Bonini
On Tue, 2003-01-07 at 15:16, Mukta Telang wrote: May be it means that it should be possible to browse ftp directory from a browser? Which is entirely possible without PHP -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] ftp and www

2003-01-07 Thread Jason Wong
On Wednesday 08 January 2003 04:16, Mukta Telang wrote: Hi, I am told to merge ftp and www ! In response to what? What are you trying to solve? I cant understand what it means.. May be it means that it should be possible to browse ftp directory from a browser? What is php's support for

[PHP] ftp and www

2003-01-06 Thread Mukta Telang
Hi, I am told to merge ftp and www ! I cant understand what it means.. May be it means that it should be possible to browse ftp directory from a browser? What is php's support for ftp? Mukta -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] ftp and www

2003-01-06 Thread Jason k Larson
Sounds vague. Here's the reference page for starters. http://www.php.net/manual/en/ref.ftp.php HTH, Jason k Larson Mukta Telang wrote: Hi, I am told to merge ftp and www ! I cant understand what it means.. May be it means that it should be possible to browse ftp directory from a browser?

[PHP] FTP UPLOAD

2002-12-16 Thread Marios Adamantopoulos
Hi all I have a problm uploading a simple file to my server using the PHP FTP functions. I would appreciate it if anyone could help: The HTML part: form enctype=multipart/form-data action=ftp.php method=post name=FormName Upload file : input type=file name=thefile size=24 border=0 input type

Re: [PHP] FTP UPLOAD

2002-12-16 Thread Andrew Brampton
are using the more lastest PHP version) Hope this helps Andrew - Original Message - From: Marios Adamantopoulos [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, December 16, 2002 12:11 PM Subject: [PHP] FTP UPLOAD Hi all I have a problm uploading a simple file to my server using the PHP

[PHP] FTP Can't create temp file?

2002-12-16 Thread Marios Adamantopoulos
Hi all again I'm trying to upload to a unix server. The program I use works fine on my 2000 IIS machine but it has a problem on the online one. Permittions have been checked and I've been looking all day to find something, but natha... I would appreciate it if someone can have a look and

Re: [PHP] FTP Can't create temp file?

2002-12-16 Thread Joseph W. Goff
: [PHP] FTP Can't create temp file? Hi all again I'm trying to upload to a unix server. The program I use works fine on my 2000 IIS machine but it has a problem on the online one. Permittions have been checked and I've been looking all day to find something, but natha... I would appreciate

RE: [PHP] FTP Can't create temp file?

2002-12-16 Thread Marios Adamantopoulos
It gives me an error Warning: error opening none in Line 51 (which is the ftp_put()) -Original Message- From: Joseph W. Goff [mailto:[EMAIL PROTECTED]] Sent: 16 December 2002 17:53 To: php-general; Marios Adamantopoulos Subject: Re: [PHP] FTP Can't create temp file? What

[PHP] FTP Listings for HTML page

2002-12-13 Thread Randum Ian
Hi guys, I am maintaining a list of files on an FTP server and it would be great if I could get a very simple list of all the files and their directory names so I can generate a HTML page with the information. Is this doable? Randum Ian [EMAIL PROTECTED] DJ / Reviewer / Webmaster, DancePortal

Re: [PHP] FTP Listings for HTML page

2002-12-13 Thread Kevin Stone
:38 AM Subject: [PHP] FTP Listings for HTML page Hi guys, I am maintaining a list of files on an FTP server and it would be great if I could get a very simple list of all the files and their directory names so I can generate a HTML page with the information. Is this doable? Randum Ian [EMAIL

Re: [PHP] FTP Listings for HTML page

2002-12-13 Thread Jason Wong
On Saturday 14 December 2002 02:38, Randum Ian wrote: Hi guys, I am maintaining a list of files on an FTP server and it would be great if I could get a very simple list of all the files and their directory names so I can generate a HTML page with the information. Is this doable? Yep, even

RE: [PHP] FTP Listings for HTML page

2002-12-13 Thread Randum Ian
Would I be able to do this for an ftp server where I have to log in? -Original Message- From: Kevin Stone [mailto:[EMAIL PROTECTED]] Sent: 13 December 2002 19:07 To: Randum Ian; [EMAIL PROTECTED] Subject: Re: [PHP] FTP Listings for HTML page Yes it is doable. see. open_dir

Re: [PHP] FTP Listings for HTML page

2002-12-13 Thread Joseph W. Goff
As long as the script has reading capabilities for the directory then yes. - Original Message - From: Randum Ian [EMAIL PROTECTED] To: 'Kevin Stone' [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Friday, December 13, 2002 1:25 PM Subject: RE: [PHP] FTP Listings for HTML page Would I

Re: [PHP] FTP and security

2002-11-27 Thread Jason Wong
On Wednesday 27 November 2002 03:25, Richard Fox wrote: To relate this to php, I am ready to give up trying to make my system(scp ..); code work, because I will have to give the apache user more permissions than I am comfortable with. What exactly are the problems

<    1   2   3   >