I have disabled image and file upload, and therefor I don´t need the advanced pop-up image window, but when setting "blnAdvAddImage" to false in RTE-config file, I get an http404 error, as the file RTE_popup_image.asp isn´t included in the forum.
Checked twice, but there is no file called "RTE_popup_image.asp" included in the latest download

From ../includes/RTE_toolbar_inc.asp
'Popup window for images If blnAdvAddImage Then Response.Write("<img src=""" & strImagePath & "post_button_image.gif"" onclick=""winOpener(\'RTE_popup_adv_image.asp" & strQsSID1 & "\',\'insertImg\',0,1,775,402)"" title=""" & strTxtAddImage & """ class=""WebWizRTEbutton"" onmouseover=""overIcon(this)"" onmouseout=""outIcon(this)"" />") ElseIf blnAddImage Then Response.Write("<img src=""" & strImagePath & "post_button_image.gif"" onclick=""winOpener(\'RTE_popup_image.asp" & strQsSID1 & "\',\'insertImg\',0,1,550,500)"" title=""" & strTxtAddImage & """ class=""WebWizRTEbutton"" onmouseover=""overIcon(this)"" onmouseout=""outIcon(this)"" />") End If |