Hi, sorry for the repost, but I can't seem to reply without registering,
and I can't seem to register... so I'm in quite a predicament (if
there's a way to reply as a guest, please let me know)
I was told this as a solution to my problem:
is it possible to download a file with a PHP hidden URL?
when the link is clicked on in firefox, it will prompt the user to
either open or save, for example...
File.open("my.mp3","wb") do |file|
file << open("http://...")
end
however, this only works for files that are located directly at that
location i.e. http://random…/random.mp3, not for php hosted files like
the examle I had given. Please help!
Hi, sorry for the repost, but I can't seem to reply without registering,
and I can't seem to register... so I'm in quite a predicament (if
there's a way to reply as a guest, please let me know)
File.open("my.mp3","wb") do |file|
file << open("http://...")
end
however, this only works for files that are located directly at that
location i.e. http://random…/random.mp3, not for php hosted files like
the examle I had given. Please help!
It looks like you need to log in to the site before you can download
that file, correct? If that is the case, I suggest using
WWW::Mechanize. It lets you fill out forms, and manages cookies and
redirects for you.