cancel
Showing results for 
Search instead for 
Did you mean: 

Wiki not working on 3.4d using IE 7

stevedesrosier
Champ in-the-making
Champ in-the-making
Links and editor are not working on the Wiki on Community ver 3.4d using IE 7
It does seem to work on Firefox 3.6.13.

Has any one discovered a fix for this?
4 REPLIES 4

lgoldblatt
Champ in-the-making
Champ in-the-making
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"

jao
Champ in-the-making
Champ in-the-making
lgoldblatt - thanks so much. I had the same issue when upgrading to 3.4.d, then tried 3.4.c with same issue, 3.4.b with same issue. This resolved the share wiki link issue for me.

neelixx
Champ in-the-making
Champ in-the-making
This also works for Internet Explorer 8.  Thanks!

boutch55555
Champ in-the-making
Champ in-the-making
Tested with IE9 as well. Works 🙂