Btw, trying to do a PUT will not work at all, the message means it is not allowed regardless your credentials (that is, your username / password etc). From the manpages from curl it says that the protocol is determined from the protocol part of the url, which would be "http" in your case, and should be "ftp".
If you do not specify the protocol, curl will try to guess.
HTH,
Cheers,
-- Abel --
Main Topics
Browse All Topics





by: abelPosted on 2007-12-14 at 07:57:50ID: 20472314
Though I don't know much about curl, it sounds to me that you are trying to FTP to an HTTP location. You talk of "FTP Password", not of "HTTP Password".
Your error says " PUT is not allowed" and PUT is an HTTP method (like GET, POST, HEAD, TRACE etc). Try the same commandline without the "http://" prefix, or try it with "ftp://" instead.
Hope this brings you closer to a solution.
Cheers,
-- Abel --