Re: Shared SSL and Cute Editor ASP

  •  10-07-2005, 2:20 PM

    Re: Shared SSL and Cute Editor ASP

    I downloaded again and it works great.  Is the only way to reach the uploads folder with a virtual directory when using shared SSL?  Here is what I used and it worked:

    <%
              dim content
              content =  (rsUpdate.Fields.Item("pages_content").Value)
        Dim editor
              Set editor = New CuteEditor

              editor.ID = "Editor1"
              editor.Text = content
              editor.FilesPath = "../CuteEditor_Files"
              editor.ImageGalleryPath = "/allintimer_uploads"
        editor.FlashPath = "/allintimer_uploads"
        editor.DocumentPath = "/allintimer_uploads"
        editor.MediaPath = "/allintimer_uploads"
              editor.MaxImageSize = 1048576
        editor.MaxDocumentSize = 1048576
        editor.MaxFlashSize = 1048576
        editor.MaxMediaSize = 1048576
        editor.DisableItemList = "CssStyle, Images, Links, Codes, CssClass, InsertForm, InsertTextBox, InsertInputText, InsertInputPassword, InsertInputhidden, InsertListBox, InsertDropDown, InsertRadioBox, InsertCheckBox, InsertInputImage, InsertInputSubmit, InsertInputReset, InsertInputButton"
              editor.AutoConfigure = "default"
        editor.BaseHref = "http://allintimer.com/"
        editor.EditorBodyStyle = "table { font:normal 11px arial; }"
        editor.EditorWysiwygModeCss = "CuteEditor.css"
          'editor.breakelement = "p"
                'editor.Width = 740
                'editor.Height = 200
              editor.Draw()
     %>

    The virtual directory under secure.garrantconsulting.com called allintimer_uploads and I also had to have the site directory for images folder named allintimer_uploads.  That way the images have a path of http://allintimer.com/allintimer_uploads/image.jpg and the site uses Shared SSL for admin area of https://secure.garrantconsulting.com/allintimer/.

    Is this the best way?

     

View Complete Thread