Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to connect to my FTP site via PHP with the standard PHP function:

http://www.php.net/manual/en/function.ftp-login.php>

But it won't connect. I can log onto the server through a program and explorer though. Is there something in my server I have to change or something?

share|improve this question
2  
what is your code? what is the error?? – N e w B e e Feb 9 at 23:16
Have you checked the logs, or are you getting any error output from PHP? When you say "it won't connect" can you describe what is happening. – Blowski Feb 9 at 23:29

1 Answer

It's a little hard to tell without either the code or the error message but, yes, you do have to have an FTP server running, something many systems don't turn on by default.

Being able to log in and attach via via Explorer use different capabilities, not necessarily related to the FTP ports. Logging on would use the telnet port while Explorer would most likely use SMB/CIFS.

share|improve this answer
<?php $ftp_server = "ftp.example.com"; $ftp_user = "foo"; $ftp_pass = "bar"; // set up a connection or die $conn_id = ftp_connect($ftp_server) or die("Couldn't connect to $ftp_server"); // try to login if (@ftp_login($conn_id, $ftp_user, $ftp_pass)) { echo "Connected as $ftp_user@$ftp_server\n"; } else { echo "Couldn't connect as $ftp_user\n"; } // close the connection ftp_close($conn_id); ?> – simplexarts Feb 9 at 23:31
That's the code I'm using, just gives me the generic error – simplexarts Feb 9 at 23:31
That code is taken exactly from the docs. Please tell me you've changed the parameter strings. Then you need to show us your code (in the question rather than a comment preferably). – paxdiablo Feb 10 at 0:05
Sorry about that, I actually figured it out. Thanks anyway though. Much appreciated – simplexarts Feb 13 at 0:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.