Print Page | Close Window

RTE integration problem

Printed From: Web Wiz Forums
Category: Web Wiz Web App Support Forums
Forum Name: Web Wiz Forums
Forum Description: Support forum for Web Wiz Forums application.
URL: https://forums.webwiz.net/forum_posts.asp?TID=27541
Printed Date: 02 April 2026 at 2:16pm
Software Version: Web Wiz Forums 12.08 - https://www.webwizforums.com


Topic: RTE integration problem
Posted By: evans
Subject: RTE integration problem
Date Posted: 07 July 2009 at 10:09am
Strange problem. I've turned on RTE in admin console but nothing like it show. Am i doing something wrong or what is a problem with a forum?
Feel free to request additional information.



Replies:
Posted By: WebWiz-Bruce
Date Posted: 07 July 2009 at 10:52am
You can turn the RTE on and off on a per member biases as well.

Edit your forum profile and make sure that you have enabled the RTE from there.


-------------
https://www.webwiz.net/web-wiz-forums/forum-hosting.htm" rel="nofollow - Web Wiz Forums Hosting
https://www.webwiz.net/web-hosting/windows-web-hosting.htm" rel="nofollow - ASP.NET Web Hosting


Posted By: evans
Date Posted: 07 July 2009 at 11:41am
Text input area is invisible :( How that can be fixed?


Posted By: WebWiz-Bruce
Date Posted: 07 July 2009 at 11:46am
If the editor is not displaying then it means either a corrupted file or a modification has broken your forum. Try uploading the original files again.

If you have edited the includes/header.asp file make sure that you have not removed the link to the forums javascript file.


-------------
https://www.webwiz.net/web-wiz-forums/forum-hosting.htm" rel="nofollow - Web Wiz Forums Hosting
https://www.webwiz.net/web-hosting/windows-web-hosting.htm" rel="nofollow - ASP.NET Web Hosting


Posted By: evans
Date Posted: 07 July 2009 at 12:10pm
Following code is generated to browser but no input area:
 

<!--//
/* *******************************************************
Software: Web Wiz Rich Text Editor(TM)
Info: http://www.richtexteditor.org" rel="nofollow - http://www.richtexteditor.org
Copyright: (C)2001-2009 Web Wiz(TM). All rights reserved
******************************************************* */
//-->
    <script language="JavaScript" src="RTE_javascript_common.asp" type="text/javascript"></script>
    <script language="JavaScript" src="RTE_javascript.asp?textArea=message" type="text/javascript"></script>
    <script language="javascript" type="text/javascript">
       WebWizRTEtoolbar('frmMessageForm');
       document.write ('<iframe id="WebWizRTE" src="RTE_textarea.asp?mode=QuickToFull&POID=0&ID=719" width="650" height="300" style="border: #A5ACB2 1px solid" onLoad="initialiseWebWizRTE();" tabindex="20"></iframe>');
    </script>
    <noscript><strong><br /><br />Для публикации сообщения на форуме - в вашем браузере должно быть разрешено использование JavaScript</strong></noscript>
    <input type="hidden" name="message" id="message" value="" />
    <input type="hidden" name="browser" id="browser" value="RTE" />
   </td>
Everything looks fine but no work  :(
I haven't modified header, just added counters to the footer


Posted By: WebWiz-Bruce
Date Posted: 07 July 2009 at 12:29pm
Looking at the code it appears to have Russian in it.

I expect then that the translated language files that you are using are preventing the JavaScript for the RTE from running.


-------------
https://www.webwiz.net/web-wiz-forums/forum-hosting.htm" rel="nofollow - Web Wiz Forums Hosting
https://www.webwiz.net/web-hosting/windows-web-hosting.htm" rel="nofollow - ASP.NET Web Hosting


Posted By: evans
Date Posted: 07 July 2009 at 12:33pm
Russian is just an error message in case of  matters. Any idea how to force it to work?


Posted By: evans
Date Posted: 07 July 2009 at 12:36pm
That is a code sample from current working site:
 
 <td width="60%" valign="top">
 
<!--//
/* *******************************************************
Software: Web Wiz Rich Text Editor(TM)
Info: http://www.richtexteditor.org" rel="nofollow - http://www.richtexteditor.org
Copyright: (C)2001-2009 Web Wiz(TM). All rights reserved
******************************************************* */
//-->
    <script language="JavaScript" src="RTE_javascript_common.asp" type="text/javascript"></script>
    <script language="JavaScript" src="RTE_javascript.asp?textArea=message&M=QuickToFull" type="text/javascript"></script>
    <script language="javascript" type="text/javascript">
       WebWizRTEtoolbar('frmMessageForm');
       document.write ('<iframe id="WebWizRTE" src="RTE_textarea.asp?mode=QuickToFull&ID=0&CACHE=1365" width="650" height="300" style="border: #A5ACB2 1px solid" onLoad="initialiseWebWizRTE();" tabindex="20"></iframe>');
    </script>
    <noscript><strong><br /><br />JavaScript must be enabled on your web browser in order to use this Rich Text Editor!</strong></noscript>
    <input type="hidden" name="message" id="message" value="" />
    <input type="hidden" name="browser" id="browser" value="RTE" />
   </td>


Posted By: WebWiz-Bruce
Date Posted: 07 July 2009 at 12:38pm
If you have translated the forum to Russian by translating the language files then there will also be Russian included in the JavaScript files for the RTE.

There are a number of JavaScript files that are used for the RTE:-

RTE_javascript_common.asp
RTE_javascript.asp?textArea=message

You should try and use the Error Console in Firefox to locate the JavaScript error which should narrow down the part of your translated language files which is coursing the problem.


-------------
https://www.webwiz.net/web-wiz-forums/forum-hosting.htm" rel="nofollow - Web Wiz Forums Hosting
https://www.webwiz.net/web-hosting/windows-web-hosting.htm" rel="nofollow - ASP.NET Web Hosting


Posted By: evans
Date Posted: 07 July 2009 at 2:34pm

My forum uses request string as :document.write ('<iframe id="WebWizRTE" src="RTE_textarea.asp?mode=QuickToFull&POID=0&ID=719" width="650" height="300" style="border: #A5ACB2 1px solid" onLoad="initialiseWebWizRTE();" tabindex="20"></iframe>');

This forum uses request string as :document.write ('<iframe id="WebWizRTE" src="RTE_textarea.asp?mode=QuickToFull&ID=0&CACHE=1365" width="650" height="300" style="border: #A5ACB2 1px solid" onLoad="initialiseWebWizRTE();" tabindex="20"></iframe>');
 
Discernable different sets of variables is posted to asp javascript file. Can you tell me why is it? (Currently i'm using just a common 9.56a WebWizForum with no mods just changed locale to cyrillic and language_files)


Posted By: WebWiz-Bruce
Date Posted: 07 July 2009 at 2:46pm
This doesn't matter about the query string being different and the RTE_textarea.asp that you have in your post has nothing to do with the issue which relates to the javascript files.

What is coursing your problem is as I have stated in my previous post as this issue is common if someone translates the language files and uses text which is then used in javascript making the javascript fail.

If you upload the original forum with the original language files you will find that your forum runs.

I am going to close this topic now as there is no sense in continually repeating myself as it is just wasting both our time.


-------------
https://www.webwiz.net/web-wiz-forums/forum-hosting.htm" rel="nofollow - Web Wiz Forums Hosting
https://www.webwiz.net/web-hosting/windows-web-hosting.htm" rel="nofollow - ASP.NET Web Hosting



Print Page | Close Window

Forum Software by Web Wiz Forums® version 12.08 - https://www.webwizforums.com
Copyright ©2001-2026 Web Wiz Ltd. - https://www.webwiz.net