|
I'm runng the latest version 8.04 and using mssql , these are my settings in the RTE_setup file:
<%
Dim blnAbout
'Initiliase variables Const strRTEversion = "3.0wwf" blnAbout = false
'The following enables and disables functions of the Rich Text Editor
'Enable and dsiable basic functions of the editor change the following to true of false '*************************************************************************** Const blnNew = false Const blnBold = true Const blnUnderline = true Const blnItalic = true Const blnFontStyle = true Const blnFontType = true Const blnFontSize = true Const blnTextColour = true Const blnTextBackgroundColour = true Const blnCut = true Const blnCopy = true Const blnPaste = true Const blnWordPaste = true Const blnUndo = true Const blnRedo = true Const blnLeftJustify = true Const blnCentre = true Const blnRightJustify = true Const blnFullJustify = true Const blnOrderList = true Const blnUnOrderList = true Const blnOutdent = true Const blnIndent = true Const blnAddHyperlink = true Const blnAddImage = true Const blnInsertTable = true Const blnSpecialCharacters = true Const blnPrint = true Const blnStrikeThrough = true Const blnSubscript = true Const blnSuperscript = true Const blnHorizontalRule = true Const blnPreview = true '***************************************************************************
'BB Code extras '*************************************************************************** Const blnQuoteBlock = true Const blnCodeBlock = true '***************************************************************************
'Advanced controls '*************************************************************************** Const blnAdvAdddHyperlink = true 'Advanced hyperlink control Const blnAdvAddImage = true 'Advanced image control requires File System Object (FSO) Const blnHTMLView = false 'Allows the user to view the HTML code, you may need to dsiable this for extra security Const blnSpellCheck = true 'Requires IEspell for Ineternet Explorer or SpellBound for Mozilla Const blnUseCSS = false 'Enable CSS (Cascading Style Sheets) in Mozilla Const blnNoIEdblLine = true 'Prevent IE's standard double line spacing when the 'ENTER' key is pressed '***************************************************************************
'Using full URL path for images and links '*************************************************************************** 'If you are submitting the RTE content to a file outside of the RTE folder you may find that some of the relative 'paths for things like images stored on the server are incorrect (ie. href="my_documents/myPicture.jpg") 'The following can be used to change those relative server paths to full URL's so that if the submitted content is 'displayed on a page out side of the RTE files the paths to images etc. still work
Const blnUseFullURLpath = false Const strFullURLpathToRTEfiles = "" 'Type in the full URL to the RTE folder eg. " http://www.myweb.com/RTE/ - http://www.myweb.com/RTE/ "
'*************************************************************************** %>
Thanks
|