• I went in to edit this page and edited two hyperlinks on text using the text editor and got all escaped characters. I tried to add the code back in and got pink highlighted “…” where the code should be.

    Please help

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi there,

    first thing would be to recover your post content. I’d suggest go edit the post, at the sidebar to the right look for the entry with a clock icon “## Revisions”. Click it.

    You’ll be taken to a <i>timeline</i> of edits. Use the top slider to move between revisions until you have your <i>readable</i> post again.

    Once done, carefully review the content you want to edit/add. This might have nothing to do with the SyntaxHighlighter plugin, but with wrongly closed tags on the post.

    HTH

    Thread Starter jenniferhz

    (@jenniferhz)

    <code>
    <filter>
    <filter-name>hazelcast-filter</filter-name>
    <filter-class>com.hazelcast.web.WebFilter</filter-class>
    <!- Name of the distributed map storing your web session objects ->
    <init-param>
    <param-name>map-name</param-name>
    <param-value>my-sessions</param-value>
    </init-param>
    <!- How is your load-balancer configured? stick-session means all requests of a session is routed to the node where the session is first created. This is excellent for performance. If sticky-session is set to false, when a session is updated on a node, entry for this session on all other nodes is invalidated. You have to know how your load-balancer is configured before setting this parameter. Default is true. ->
    <init-param>
    <param-name>sticky-session</param-name>
    <param-value>true</param-value>
    </init-param>
    <!- Are you debugging? Default is false. ->
    <init-param>
    <param-name>debug</param-name>
    <param-value>true</param-value>
    </init-param>
    </filter>
    <filter-mapping>
    <filter-name>hazelcast-filter</filter-name>
    <url-pattern>/*</url-pattern>
    <dispatcher>FORWARD</dispatcher>
    <dispatcher>INCLUDE</dispatcher>
    <dispatcher>REQUEST</dispatcher>
    </filter-mapping>
    <listener>
    <listener-class>com.hazelcast.web.SessionListener</listener-class>
    </listener>
    </code>

    There shouldnt be anything broken here….

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Code display is completely broken tried visual and text editor’ is closed to new replies.