I'm trying to determine what the following code returns when the server is a true windows/iis server.
The response from a linux server is:
The response from my 'supposed' windows server is:Array
(
[0] => 215 UNIX Type: L8
)
Presumably, this isn't a true windows server.Array
(
[0] => 215 UNIX emulated by FileZilla
)
Here's the code:
If anyone has FTP access to a windows/iis server, I would be most grateful to know what the response to my code is.PHP Code:// make FTP connection
$conn_id = @ftp_connect($ftp_server) OR die("Unable to establish an FTP connection");
ftp_login($conn_id, $ftp_user, $ftp_pw) OR die("ftp-login failed - User name or password not correct");
ftp_pasv ( $conn_id, true ) or die("Unable to set FTP passive mode."); //Use passive mode for client-side action
echo '<pre>';
print_r( ftp_raw($conn_id,'SYST'));
echo '</pre>';
ftp_close($conn_id);



Reply With Quote
Bookmarks