| View previous topic :: View next topic |
| Author |
Message |
martin
Joined: 24 Sep 2007 Posts: 26 Location: Netherlands
|
Posted: Sat Nov 03, 2007 10:21 pm Post subject: Link to article not made |
|
|
Dear,
When I make a link to an article it shows me :
about:ECMS_LINK_035 in the webexplorer and not the article.
What can it be?
I work with CMS encore Pro Lite (1.0.7) _________________ Kind Regards,
Met vriendelijk groet,
Martin |
|
| Back to top |
|
 |
SClemens Site Admin
Joined: 13 Jun 2005 Posts: 143
|
Posted: Mon Nov 05, 2007 2:43 pm Post subject: |
|
|
Hi,
| Quote: | When I make a link to an article it shows me :
about:ECMS_LINK_035 in the webexplorer and not the article.
What can it be? |
Please ensure that you have double-quotes around the link name,
example:
<a href="ECMS_LINK_035">test</a>
If this is not the issue, then if you can perhaps post the code that you use to display the above link of yours, then I can better examine what the issue might be.
Regards _________________ Steve Clemens
CMS Encore Pro - The easy way to build and maintain your website.
http://www.biitsoft.com/products/cmsencorepro/index.htm |
|
| Back to top |
|
 |
martin
Joined: 24 Sep 2007 Posts: 26 Location: Netherlands
|
Posted: Sat Nov 10, 2007 4:28 pm Post subject: |
|
|
Hello,
This is a piece of the generated code (the links are made with the "Insert Hyperlink" button)
<P>Schoonmaken is onze passie, van trappenhuis tot kantoor, van binnen en van
buiten. Onze <A href="about:ECMS_LINK_CH03">diensten</A> zijn zeer divers.
Woningstichtingen, verenigingen van huiseigenaren, advocatenkantoren en
accountantskantoren (zeer vertrouwelijke omgevingen) mogen wij inmiddels tot
onze klantenkring rekenen.</P>
<P>Na een afspraak op locatie, maken wij vrijblijvend een <A
href="about:ECMS_LINK_035">offerte</A> waarin wij uiteraard uw wensen zullen
verwerken. Tevens kunnen wij een op maat gemaakt <A
href="about:ECMS_LINK_037">schoonmaakprogramma</A> opstellen om uw object
kwalitatief goed schoon te houden.</P>
<P>Wij nemen uw schoonmaakwerkzaamheden graag uit handen en streven naar een
langdurige samenwerking!</P> _________________ Kind Regards,
Met vriendelijk groet,
Martin |
|
| Back to top |
|
 |
SClemens Site Admin
Joined: 13 Jun 2005 Posts: 143
|
Posted: Thu Nov 15, 2007 5:21 pm Post subject: |
|
|
Hi Martin,
| Quote: | This is a piece of the generated code (the links are made with the "Insert Hyperlink" button)
<P>Schoonmaken is onze passie, van trappenhuis tot kantoor, van binnen en van
buiten. Onze <A href="about:ECMS_LINK_CH03">diensten</A> zijn zeer divers. |
Seems that the html became a bit mangled, this can happen sometimes when switching between the WYSIWYG Content and Html mode.
Simple fix: Remove the about: text in the links,
example:
<A href="about:ECMS_LINK_CH03">diensten</A>
should instead be:
<A href="ECMS_LINK_CH03">diensten</A>
etc.
Hope that helps.
Regards _________________ Steve Clemens
CMS Encore Pro - The easy way to build and maintain your website.
http://www.biitsoft.com/products/cmsencorepro/index.htm |
|
| Back to top |
|
 |
|