Page 1 of 1
Wget saves file as frs/dl0 etc etc
Posted: Mon Sep 19, 2005 5:28 am
by brad
When grabbing Joomla via wget the file is automatically saved as something like frs/dl0 (something like that). The file is valid though.
Whats the best link to use to get the file in this situation? ie so it is saved as joomla_version.tar.gz etc etc
Re: Wget saves file as frs/dl0 etc etc
Posted: Mon Sep 19, 2005 3:19 pm
by dhunley
Unfortunately, there's no workaround other than using the API (see the frsGet project on
http://tapestry.sourceforge.vasw.com) or by using a browser. Wget doesn't seem to understand the filenames as SFEE pushes them, while the major browsers do.
Re: Wget saves file as frs/dl0 etc etc
Posted: Mon Sep 19, 2005 4:39 pm
by rhuk
You can try grabbing the file with Lynx or w3m, both are console based web browsers.
Re: Wget saves file as frs/dl0 etc etc
Posted: Mon Sep 19, 2005 8:04 pm
by brad
I can cope.. was just trying to find the answer before I heard the same question from a user.
Re: Wget saves file as frs/dl0 etc etc
Posted: Mon Sep 26, 2005 6:25 pm
by ¥
No workaround for this? Using Firefox, I can't even get the download location - stupid javascript
Re: Wget saves file as frs/dl0 etc etc
Posted: Tue Oct 18, 2005 10:12 pm
by ivanstorck
I was able to work around this with this command:
wget
http://developer.joomla.org/sf/frs/do/d ... s1820?dl=1 --user-agent="" -dv
I think it is setting the user agent string to null that makes it work
you end up with a random file name but you can still tar -xvzf it
i just rename the random name to joomla before I untar.
Re: Wget saves file as frs/dl0 etc etc
Posted: Tue Oct 25, 2005 11:52 pm
by ivanstorck
I tried
wget
http://developer.joomla.org/sf/frs/do/d ... s1820?dl=1 --user-agent="" -dv
today and it has stopped working!
BUMMER!
I wish it would be easier to wget. I install Joomla a lot these days! (Love it!)
Re: Wget saves file as frs/dl0 etc etc
Posted: Tue Dec 13, 2005 3:59 am
by oojacoboo
Try this out, worked for me. You just have to rename the file when you get it to something like joomla.tar.gz
wget
http://developer.joomla.org/sf/frs/do/d ... s1820?dl=1 --user-agent="firefox" -dv
Re: Wget saves file as frs/dl0 etc etc
Posted: Mon Dec 19, 2005 8:46 pm
by pestilence
This worked for me:
Code: Select all
wget --user-agent="firefox" http://developer.joomla.org/sf/frs/do/downloadRelease/projects.joomla/frs.joomla_1_0.1_0_4;jsessionid=26F91235771D9A1A1A1BC83777534A2C?dl=1
For some reason the --user-agent at the end was not working...
Re: Wget saves file as frs/dl0 etc etc
Posted: Fri Dec 23, 2005 5:42 am
by zsprackett
Try this:
wget
http://developer.joomla.org/sf/frs/do/d ... s1820?dl=1 --user-agent="firefox" -dv -O joomla.tar.gz
(edit: missed a flag)