• ICE Standard
  • NEWBIE
  • 0 Points
  • Member since 2012

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 0
    Replies

I am trying to use the Web-to-Lead form on an external server "emergencystandard.com"  The editor functions don't work - It's because it doesn't know where the function scripts are richtext.config.js

Where do we get the necessary path information for either BasePath or URL as below?

URL HERE ? (I added this to show where in the code I think it nees it)
or
BasePath?

<form action="https://www.salesforce.com/servlet/servlet.WebToLead?encoding=UTF-8" method="POST">

<input type=hidden name="oid" value="00DU0000000H8mQ">
<input type=hidden name="retURL" value="http://">

Lead Picture:<textarea  id="00NU0000000fnVtMAI" name="00NU0000000fnVtMAI" rows="25" type="text" wrap="soft"></textarea><script  type="text/javascript">var editor = new FCKeditor('00NU0000000fnVtMAI', null, 425);editor.BasePath = 'URL HERE ?/apexpages/fckeditor/';editor.Config['CustomConfigurationsPath'] = 'URL HERE ?/apexpages/richtext.config.js';editor.ToolbarSet = 'SalesforceBasic';editor.Config['SkinPath'] = editor.BasePath + 'editor/skins/sfdc/';editor.Config['DefaultLanguage'] = 'en-us';editor.Config['EditorAreaStyles'] = ['/sCSS/24.0/sprites/1331837151000/Theme3/default/HtmlDetailElem.css'];editor.Config['ImageUpload'] = true;editor.Config['SitesPath'] =  '';editor.ReplaceTextarea();
</script>
<input type="submit" name="submit">
</form>