Thank you for the answer.
But tell me how I can manage to make my server pass the file.
The workaround I have found and developped is the following :
once the user is authenticated, a page is generated with a link to start the download of the file.
When the user clicks the link, a special encrypted key is sent to server, decrypted then a matching record is searched in DB. This record contents the name of the file to download on the FTP server.
Then a PHP script start a connexion to the FTP server, using always the same login/passwd (private), to download the file on the webserver. Once it is done, a javascript spawn the download of the file from my webserver to the client navigator...
This is not very efficient, since there are TWICE the same download of the file. And it happens I have files larger than 300MB... 🙁
I'll be glad if you can suggest me a one-pass method.
Thank in advance