cancel
Showing results for 
Search instead for 
Did you mean: 

Wiki hyper link not working in IE 7 and 8

sumeshbnr
Champ on-the-rise
Champ on-the-rise
I am using alfresco 3.4.d community edition .when I am creating a wiki page there is an option to call the existing wikipages using hyperlink  with its name [[wiki page name]] as described in the documentation of alfresco .But it is not working in IE and its works fine in firefox.Can any one help me on this? Aslo when editing a wiki page in IE it automatically goes to the html editing of wiki doc .
1 REPLY 1

lgoldblatt
Champ in-the-making
Champ in-the-making
I can't help you on the hyperlink, but can possibly help you with the rendering of the wiki page edit. 
We also had the problem where you could not edit a wiki page in IE.

We are running Alfresco Community 3.4c.

We were able to fix this by overriding page.get.htm.lftl
Copy the file from D:\Alfresco34\tomcat\webapps\share\WEB-INF\classes\alfresco\site-webscripts\org\alfresco\components\wiki\

and place into the extension folder (you might have to create it)
<tomcat home>\shared\classes\alfresco\web-extension\site-webscripts\org\alfresco\components\wiki\page.get.html.ftl

Approximately line 51,
change
create: ${(permissions["create"]!false)?string},
edit: ${(permissions["edit"]!false)?string},
delete: ${(permissions["delete"]!false)?string}
to
"create": ${(permissions["create"]!false)?string},
"edit": ${(permissions["edit"]!false)?string},
"delete": ${(permissions["delete"]!false)?string}

The quotes were there in release 3.3.g and the wiki editor worked fine.
Not sure why the quotes were removed between 3.3.g and 3.4.x - but replacing them seemed to fix it.
Actually, in our tests, the only one that HAD to be replaced was around the word "delete"