Wget saves file as frs/dl0 etc etc
- brad
- Joomla! Hero
- Posts: 2212
- Joined: Fri Aug 12, 2005 12:38 am
- Skype: tested
- Location: Sydney - Australia
- Contact:
Wget saves file as frs/dl0 etc etc
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
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
Brad Baker - Joomla! Core Team, Sites & Infrastructure.
http://www.rochen.com - Managed Dedicated, Reseller & Multiple Domain Hosting.
http://www.joomlatutorials.com <-- Joomla! 1.5 & 1.0.x
^New Joomla 1.5 Tutorials are out!
http://www.rochen.com - Managed Dedicated, Reseller & Multiple Domain Hosting.
http://www.joomlatutorials.com <-- Joomla! 1.5 & 1.0.x
^New Joomla 1.5 Tutorials are out!
Re: Wget saves file as frs/dl0 etc etc
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
You can try grabbing the file with Lynx or w3m, both are console based web browsers.
rhuk
http://www.rockettheme.com - RocketTheme Template Club
http://www.rockettheme.com/aff - RocketTheme Affiliate Program
http://www.rockettheme.com - RocketTheme Template Club
http://www.rockettheme.com/aff - RocketTheme Affiliate Program
- brad
- Joomla! Hero
- Posts: 2212
- Joined: Fri Aug 12, 2005 12:38 am
- Skype: tested
- Location: Sydney - Australia
- Contact:
Re: Wget saves file as frs/dl0 etc etc
I can cope.. was just trying to find the answer before I heard the same question from a user.
Brad Baker - Joomla! Core Team, Sites & Infrastructure.
http://www.rochen.com - Managed Dedicated, Reseller & Multiple Domain Hosting.
http://www.joomlatutorials.com <-- Joomla! 1.5 & 1.0.x
^New Joomla 1.5 Tutorials are out!
http://www.rochen.com - Managed Dedicated, Reseller & Multiple Domain Hosting.
http://www.joomlatutorials.com <-- Joomla! 1.5 & 1.0.x
^New Joomla 1.5 Tutorials are out!
Re: Wget saves file as frs/dl0 etc etc
No workaround for this? Using Firefox, I can't even get the download location - stupid javascript
-----------------
¥, the CMS Formerly Known as Mambo
©Copyright 2005, The Mambo Foundation for Fauxpen Source
All Rights Reserved.
¥, the CMS Formerly Known as Mambo
©Copyright 2005, The Mambo Foundation for Fauxpen Source
All Rights Reserved.
-
- Joomla! Fledgling
- Posts: 2
- Joined: Fri Aug 26, 2005 5:59 pm
Re: Wget saves file as frs/dl0 etc etc
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.
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.
-
- Joomla! Fledgling
- Posts: 2
- Joined: Fri Aug 26, 2005 5:59 pm
Re: Wget saves file as frs/dl0 etc etc
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!)
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
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
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
This worked for me:
For some reason the --user-agent at the end was not working...
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...
- zsprackett
- Joomla! Apprentice
- Posts: 14
- Joined: Fri Dec 23, 2005 2:15 am
- Location: Ottawa, Canada
- Contact:
Re: Wget saves file as frs/dl0 etc etc
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)
wget http://developer.joomla.org/sf/frs/do/d ... s1820?dl=1 --user-agent="firefox" -dv -O joomla.tar.gz
(edit: missed a flag)
Last edited by zsprackett on Fri Dec 23, 2005 5:49 am, edited 1 time in total.