Steps to reproduce: 1. Do all entries for a bug submission 2. Click 'Submit' button Expected: some message "Successfully submitted ...." Actual: Nothing, form field page remains Browser: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:7.0.1) Gecko/20110928 Firefox/7.0.1 SeaMonkey/2.4.1
Might have to do with Bugzilla update to 4.0.2? - Reported with Bug Submission Assistant -
I installed a placeholder in place of the bug submission assistant to not confuse people. I have tried a few times and had one failure. Examining the iframe content, I found an empty <body></body>. But I also created a few bugs successfully. Researching the source of the problem.
It always happen when the bug submission assistant is within the get-help/bug iframe. And never when used directly thru https://bugassistant.libreoffice.org/libreoffice/bug/bug.html
I managed to reproduce the problem in http://dachary.org/loic/libreoffice/bug/frame.html which contains an iframe to https://freedesktop.dachary.org/libreoffice/bug/bug.html
It is a same origin policy bug that does not prevent the submission of the bug but prevents feedback to happen in the end.
Setting the document.domain as suggested here: http://javascript.info/tutorial/same-origin-security-policy http://stackoverflow.com/questions/1481251/what-does-document-domain-document-domain-do won't work because it cannot be done in bugzilla itself.
I think the only viable solution is to ProxyPass https://libreoffice.org/bugassistant/ to http://bugassistant.libreoffice.org/ and replace the iframe so that it uses https://libreoffice.org/bugassistant/
More information about the solution at http://dachary.org/?p=989 I will ask the system administrators to make the modifications.
The modification were made and https://www.libreoffice.org/get-help/bug/ is back online.