Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have energyshop.se where I have a link to a zip with several files in it and when the link is clicked now the zip tarts to download immediately and it would be nice if the user could specify where to download it. Ive read that this can be achieved on the server-side and my modifying headers but this sounds hard and not worth the hassle (especially when its in wordpress), is there not any quick fix for this? Its not the world, Im just wondering for future reference.

Im already uing the HTML download attribute but that doesnt force it.

share|improve this question
This depends on the server, not the page. This question has been asked dozen of times already. Go look at existing answers. stackoverflow.com/search?q=force+download – Diodeus Feb 14 at 19:23

1 Answer

This can be solved with javascript (no headers to muck with), see: How to force save as dialog box in firefox besides changing headers?

In general the browser controls the behavior of direct download links. IE, FF, Safari and Chrome all handle things slightly differently depending on user settings.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.