Try our conversational search powered by Generative AI!

XHTML / TinyMCE internal link not resolving

Vote:
 

Hi,

I've a strange issue where the links created within the TinyMCE editor arent resolving, for example:

/Views/Pages/HubPageTemplate.aspx?id=71&epslanguage=en-GB

creation of the external links are fine.

Any one have any thoughts into why this would be happening?

Thanks

Steve

#116262
Jan 27, 2015 13:48
Vote:
 

When are you seing this link? On the web page or in the editorial interface? If it's on the web page, how do you render the property?

#116276
Jan 27, 2015 15:36
Vote:
 

Hi,

Its visible on the webpage.

Model

        /// <summary>
        /// Gets or sets the main body.
        /// </summary>
        /// <value>
        /// The main body.
        /// </value>
        [CultureSpecific]
        [Editable(true)]
        [Display(
            Name = "Main body",
            Description = "Main body content shown in the main content area of the page.",
            GroupName = SystemTabNames.Content,
            Order = 200)]
        public virtual XhtmlString MainBody { get; set; }

.aspx

<Web:BoundProperty ID="MainContentBoundProperty" runat="server" />    

aspx.cs

this.MainContentBoundProperty.SetProperty<ContentPage>(page => page.MainBody);

#116280
Jan 27, 2015 16:20
Vote:
 

Hi again!

BoundProperty is not anything I recognize but I can give a guess of what's probably happening. When you use web forms, there is currently three different modes for links:

  • Permanent/internal
  • Classic
  • Friendly/public

The format you are seeing is the classic link which for a long time, was the public format for EPiServer. When we introduced friendly links (that represents the structure of the site), we did this by introducing a rewrite filter. The reason for this was to make it possible to upgrade existing sites and just apply the filter. This is still the case for sites built with web forms. To solve this, make sure that you have the following module under system.webServer:

<add name="UrlRewriteModule" type="EPiServer.Web.RoutingUrlRewriteModule, EPiServer" preCondition="managedHandler" />

I can mention that we are finally removing the classic links with the upcoming release of EPiServer CMS 8, since they generally make no sense any more but you still have to apply the rewrite filter to get public links.

#116292
Jan 28, 2015 8:20
Vote:
 

Hi,

Thanks for that, appying that module makes all the pages disappear?  Nothing is showing on the website, not even in view source?

#116304
Jan 28, 2015 11:39
Vote:
 

Hmm, that sounds strange. The HTML filter will parse the HTML of the site and then replace any links. Could you remove the filter and validate the the HTML you produce does not have any serious faults in it? I think that the DTD for the parsing is pretty accepting, but if might fail if you have major faults. Also, the DTD is using a HTML 4 like syntax, so I'm not sure if some specific syntax accepted in HTML 5 might cause issues. At least, I have not heard of this being an issue.

#116386
Jan 29, 2015 13:34
Vote:
 

I had the same problem in MVC; there I had to specify "RawHtml" for rendering, otherwise all urls look like you have

@Html.PropertyFor(m => m.Text, "RawHtml")

#116394
Jan 29, 2015 15:10
Vote:
 

Laurens - Thanks for your reply, any ideas on how i acheive the same in WebForms?

Linus - Thanks, the HTML of the site is fine with no issues or major faults. Anything else?

Thanks

Steve

#116524
Jan 31, 2015 16:07
Vote:
 

@Stephen: Actually I have no idea why you are getting an empty page if the HTML is correct. If you have not already solved this and need assistance, I suggest that you open a support case.

#116665
Feb 03, 2015 16:14
* You are NOT allowed to include any hyperlinks in the post because your account hasn't associated to your company. User profile should be updated.