This chaps my @$$ every time I have to set up a new server. Adobe's site simply blocks if you don't have a JS enabled browser. I never install a GUI on my servers (why should I?), and every time I need to install CF, I'm stuck downloading it to my local machine, and then uploading back up to the server. Repeat for each hotfix. Aaaarrrggghhhh!
Recent Posts
Capitalism?
Categories
- ajax (8)
- amazon (5)
- aside (10)
- biking (10)
- bluedragon (19)
- cfml (46)
- coldfusion (62)
- database (3)
- development (99)
- eclipse (1)
- flex (22)
- fusebox (11)
- golf (1)
- gpsracr (4)
- grails (2)
- groovy (11)
- iphone (4)
- java (12)
- javascript (16)
- jfission (6)
- meta (48)
- neuromancer (6)
- osx (4)
- personal (71)
- railo (7)
- tools (51)
- Uncategorized (12)
- wordpress (4)
Why not just browse to the link to the file, transfer the link to your server, then just download it normally from there?
You have to be logged in to download software. If you copy and paste a link between computers, you won't have a logged in session, so you'll get booted to the login form, which will then boot you to the requirements page. I suppose you could copy your cookies, but that's hardly straightforward with memory-only cookies.
Hi Barney,
I think you havent tried hard enough ;-).
Coldfusion Download (dont use the dropdown but scrolldown): http://www.adobe.com/downloads/?product_list=%2Fgo%2Ftrycoldfusion&Submit=Go
Coldfusion Hotfixes: http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_17883
It works for me here without JavaScript.
Cheers,
Erwin
put a copy of the thing on a UNC share, a CD or a thumbdrive and stop your bitching already.
;)
Potential solution:
I wrote a CF script a while back that would log me into the dynDNS.org site and create dns Records. I don't have the code lying around or I would post it. Basically I used the cfhttp and cfhttpparam type = "Cookie" to maintain the session.
As far as JS enabled you might want to try spoofing the browser like so.
cfhttp useragent="some JS enabled browser"
I would do it on CF for POC and then port it to PHP or Python if it works.
Erwin,
Those links all bring you to the login form when you click them. Perhaps you had already logged in?
Tony,
If I had physical access to the server, I'd just use the installation CDs.
Why would you download the files every time you get a new server? Surely you keep the downloaded files all in a shared storage area somewhere and then you'd just copy the files onto the new server?
In fact we actually kept the CF installer and hotfixes under SVN so that we can manage the configuration of our servers more easily.
Sean,
When I was managing "real" infrastructure, I did much the same thing. But now that it's just my personal machines, I don't anymore. That's due in no small part to the fact that Comcast (my ISP) throttles outgoing traffic to about 40k (yes, slower than a modem) beyond a certain point, which makes uploading a 300MB file take forever. As such, any sort of cache I'd have locally wouldn't be of any use unless the new machine was also local (which wasn't the case). So I used my office workstation (via rdesktop) to download and reupload it.