Closed
Bug 270816
Opened 20 years ago
Closed 20 years ago
Server Error (server encountered an internal error... unable to complete request)
Categories
(SeaMonkey :: General, defect)
Tracking
(Not tracked)
RESOLVED
INVALID
People
(Reporter: gembry, Unassigned)
Details
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8a5) Gecko/20041119 Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8a5) Gecko/20041119 When I press any combination of multiple 'download' buttons on my Cold Fusion driven page the following error occurs: Server Error The server encountered an internal error and was unable to complete your request. I have multiple mp3's associated with their own download button. When I select a download button, one after another, I am prompted for the download to occur... but then I hit the above error after any given number of tries. Here is a sample of the button code: <input type="button" name="download" value="download" onClick="myaction.value='do_download'; trackID.value='#tr.trackID#'; submit();"> <input type="hidden" name="trackID" value=""> Reproducible: Always Steps to Reproduce: You will not be able to reproduce unless I send you my code. Let me know if this is what you want. I can set something up that may help. Actual Results: Message displayed in browser: Server Error The server encountered an internal error and was unable to complete your request. Expected Results: No error and the ability to continue with the same functionality... i should be able to hit as many 'download' buttons as i wish. This action is called when the download button is pressed... and all occurs on the same page... (cold fusion code follows) <!--- Push downloaded file to end user, and delete from temp ---> <CFHEADER NAME="Cache-Control" VALUE="0"> <CFHEADER name="Content-type" value="application/octet-stream"> <cfheader name="Content-Disposition" value="attachment;filename=#variables.filename#"> <cfcontent file="c:\inetpub\wwwroot\foreal\temp\#variables.filename#" type="application/octet-stream" deletefile="Yes"> Lastly, I tested my page in IE v.6 and all works fine. Searched bugzilla and found this... Bug#: 151342 (may or may not be related)
Updated•20 years ago
|
Product: Browser → Seamonkey
Comment 1•20 years ago
|
||
You're using IE-only syntax to reference myaction and trackID and relying on IE's bug in <button> handling (where buttons of type="submit", which is the default, don't necessarily submit).
Status: UNCONFIRMED → RESOLVED
Closed: 20 years ago
Resolution: --- → INVALID
You need to log in
before you can comment on or make changes to this bug.
Description
•