S
sduggi
Guest
As work around you can edit the source of the Webpage authentication2.jsp (right click to inspect element in the browser) and replace the below 2 lines form action="../setup/authDebug3.jsp" method="post" enctype="multipart/form-data" name="formDebug" target="Debug" to form action="../setup/authDebug3.jsp" method="post" name="formDebug" target="Debug" and form action="administrationSetup.jsp" method="post" name="theForm" enctype="multipart/form-data" onsubmit="rbf_disableAllButtons()" to form action="administrationSetup.jsp" method="post" name="theForm" onsubmit="rbf_disableAllButtons()" Basically we need to remove ' enctype="multipart/form-data" ' from both Form Elements. Hope this will help you.
Continue reading...
Continue reading...