Hello world!
Adam, I've installed the new 6.1 version (I love it... nice DHTML pop-ups, nice style builder... thanks) but there is one major bug when our page use a parent path (../).
i.e:
<!-- #include file = "../editeur6/include_CuteEditor.asp" -->
<%
...
editor.FilesPath = "../editeur6"
' this will NOT work and will create an "failed to load the language text from xml file" error.
...
%>
but with no "parent" folder path it will work, i.e:
<!-- #include file = "editeur6/include_CuteEditor.asp" -->
<%
...
editor.FilesPath = "editeur6"
' this will work fine!
...
%>
Any suggestion?