Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

downloading a copied url

  • 09-02-2005 4:29pm
    #1
    Registered Users, Registered Users 2 Posts: 4,258 ✭✭✭


    How do you download something that has a full url. I mean that it has the file extension on the end of it. eg.
    www.boards.com/board.rar

    I know if its a movie file it will just open in media player. Any ideas?


Comments

  • Moderators, Arts Moderators Posts: 35,731 Mod ✭✭✭✭pickarooney


    Not sure I understand. Either a left or a right click should suffice to download anything with a complete link, but I assume it's something more complicated you mean.


  • Registered Users, Registered Users 2 Posts: 26,584 ✭✭✭✭Creamy Goodness


    right click >> save target as


  • Registered Users, Registered Users 2 Posts: 11,989 ✭✭✭✭Giblet


    Paste it into a browser or a download manager?


  • Registered Users, Registered Users 2 Posts: 4,258 ✭✭✭digiman


    What is the best download manager to use?
    Its not a link thats why I can't save target as.


  • Moderators, Arts Moderators Posts: 35,731 Mod ✭✭✭✭pickarooney


    Any chance you can give us an example of this URL which isn't a link, because it's not making much sense so far. If the address is valid, but it's not appearing as a hyperlink, then just copy/paste it into the address bar of the browser.


  • Advertisement
  • Registered Users, Registered Users 2 Posts: 4,258 ✭✭✭digiman


    pm sent to pickarooney


  • Closed Accounts Posts: 294 ✭✭eggshapedfred


    write a quick html file containing the "link"(a href="...) and then open it in a borwser (File -> Open file...) and then right click and "save target as". theres bound to be an easier way but this works without installing any stuff on yer 'puter


  • Registered Users, Registered Users 2 Posts: 1,865 ✭✭✭Syth


    Use wget.

    Just type wget <url> into the commanbd line and it'll download the file. If it complains you can use -U to change the User agent string (to something like Mozilla) If that still doesn't work, use --referer=<some other url> to set the referer URl so it'll let you download it.

    Comes as standard on Linux (& other Unicies). I think it can be downloaded for Windows...


  • Registered Users, Registered Users 2 Posts: 6,374 ✭✭✭Gone West


    i use getright or gozilla. theyre both pretty acceptable download managers


  • Closed Accounts Posts: 10,921 ✭✭✭✭Pigman II


    Try Streambox. It'll download anything (including real audio files).


  • Advertisement
  • Closed Accounts Posts: 612 ✭✭✭billstraighten


    www.anonym.to/?{link} then when the page comes up click the stop button then right click the red text save target as


  • Registered Users, Registered Users 2 Posts: 2,170 ✭✭✭Serbian


    I use urlizer for stuff like this.


  • Registered Users, Registered Users 2 Posts: 15,817 ✭✭✭✭po0k


    digiman wrote:
    What is the best download manager to use?
    Its not a link thats why I can't save target as.

    WGet

    Download it, put wget.exe somewhere (ie C:\Tools along with the rest of the .exes from UnxUtils).
    System Properties -> Advanced -> Enviromental Variables
    Edit "Path" from
    %SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;%SystemRoot%\system32\nls;%SystemRoot%\system32\nls\ENGLISH
    to
    %SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;%SystemRoot%\system32\nls;%SystemRoot%\system32\nls\ENGLISH;C:\Tools

    You might need to logout and login to refresh it, probbaly not though.

    You can now press [Win]+[R] to bring up the Run dialogue window and type wget http://www.x.com/y.zar and wget will grab the file(s) and download them to C:\Documents and Settings\[User Profile]\
    Very handy for grabbing .swf, .mov, .wmv etc. after viewing the source of a webpage where the media is embedded.

    A very handy feature is wget -rnp http://www.x.com/
    The -rnp is:
    -r
    --recursive
    Turn on recursive retrieving.

    -np
    --no-parent
    Do not ever ascend to the parent directory when retrieving recursively. This is a useful option, since it guarantees that only the files below a certain hierarchy will be downloaded.

    This will effective grab everything from that directory (in this case the entire 'root' folder of the website and everything below it.
    wget -rnp http://www.x.com/images/ would grab everything in the images folder and everything contained below that, but wouldn't grab anythig else in the website root folder.
    Bear in mind that you can only download what is accessible, commonly a file or folder may be listed in a directory, but it may not have public read permissions set and so you cannot read/open it.
    Very handy for leeching blocks of files :)


Advertisement