[PHP] FTP Connection Problems

2001-08-31 Thread news.php.net
I'm getting the following error: Warning: Unable to find ftpbuf 0 in C:\directory\page.php on line 22 Whenever I try to connect to our FTP server...it does this whenever I make a call to ftp_login(). The server, username, and password are correct, and I can successfully FTP into it through

[PHP] FTP Connection Problems

2001-08-31 Thread Michael Jacobs
I'm getting the following error: Warning: Unable to find ftpbuf 0 in C:\directory\page.php on line 22 Whenever I try to connect to our FTP server...it does this whenever I make a call to ftp_login(). The server, username, and password are correct, and I can successfully FTP into it through

Re: [PHP] ftp connection

2001-02-27 Thread Chris Lee
this is probably NOT the problem, but I'll post anyway. Ive found if copying code from web browser, ie from phpbuilder.com in IE, that 0x0D and 0x0A get thrown in alot. this causes php to tell me that certain functions are undefined, even though I know they are. I remove all 0x0D and 0x0A. --

[PHP] ftp connection

2001-02-26 Thread Jon A
I need some help... I try to do a ftp connection with php, but when i run the script it claims that ftp_connect is "call to undefined function. I have done a call to phpinfo, and it shows that ftp IS enabled! - Whats wrong? Here is what i use: $conn_id = ftp_connect("MyFtpSite");