Hi, I am having a problem and I need your help. I need to download content from the following website (idplr.com) to my server using Wget or other method. But the problem is that I am not able to download using SSH. Because the password and I don't know how to add the password and username. So please can you help me with this? ... I already used this method but did not work: wget --http-user=USER --http-password=PASS URL
$ wget --user=USER --password='PASSWORD' http://www.site.com/file that may do it. I think you have to pass the user and password params first... This may help as well. It depends on a few things. Responses are not universal across servers. http://linuxers.org/article/wget-password-how-use-passwords-securely-wget Nigel
Are you getting a response at all? Try this wget http://username:password@www.domain.com/page.html Nigel
It downloaded page files but the main file of 200MB did not downoad it --2013-05-07 08:13:18-- http://www.idplr.com/members/application/default/views/public/img/empty.gif Connecting to www.idplr.com|198.1.64.102|:80... connected. HTTP request sent, awaiting response... 200 OK Length: 35 [image/gif] Saving to: `www.idplr.com/members/application/default/views/public/img/empty.gif' 100%[======================================>] 35 --.-K/s in 0s 2013-05-07 08:13:18 (4.66 MB/s) - `www.idplr.com/members/application/default/views/public/img/empty.gif' saved [35/35] FINISHED --2013-05-07 08:13:18-- Downloaded: 51 files, 460K in 1.7s (272 KB/s) #####@###### [~]# Code (markup):
eh, well not really sure tbh you can recursively fetch things but that is beyond my memory lol.. Here is a really simply explanation of it. What are you trying to fetch exactly? http://www.linuxquestions.org/quest...et-download-all-files-of-certain-type-180109/ Nigel