He Franky,
i need to access, via FTP using a php script, to airio files to read copy and put in my server.
I'm using standart php function, but i can't connect to your ftp servers.
Why ?
For example this simple script have to return the list of the files ... but i see only blank.
<?php
$conn = ftp_connect("81.19.209.205") or die("Could not connect");
ftp_login($conn,"mc0676","XXXXXX");
print_r (ftp_rawlist($conn,"."));
ftp_close($conn);
?>
XXXXXX is my password.