<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Tomcat Connector problem ... with tiny_mce Javascript editor in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/tomcat-connector-problem-with-tiny-mce-javascript-editor/m-p/277892#M231022</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Actually aliasing the URL that includes the "res" directory works…&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;AliasMatch ^/share/res/modules/editors/tiny_mce/(.*) /share/modules/editors/tiny_mce/$1&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;The "res" directory doesn't exist and must be a "virtual" directory in generated by Tomcat. The Tomcat Connector does not seem to handle this case…&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 22 Mar 2012 18:00:30 GMT</pubDate>
    <dc:creator>michaelk</dc:creator>
    <dc:date>2012-03-22T18:00:30Z</dc:date>
    <item>
      <title>Tomcat Connector problem ... with tiny_mce Javascript editor</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/tomcat-connector-problem-with-tiny-mce-javascript-editor/m-p/277890#M231020</link>
      <description>I have configured Alfresco to use Apache using the Tomcat Connector. This is because I wanted to use SSL through the webserver (with a legitimate certificate).Everything works fine EXCEPT if I try to use the inline editor (say editing a Wiki page or creating HTML content) The editor comes up and I c</description>
      <pubDate>Tue, 20 Mar 2012 17:00:46 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/tomcat-connector-problem-with-tiny-mce-javascript-editor/m-p/277890#M231020</guid>
      <dc:creator>michaelk</dc:creator>
      <dc:date>2012-03-20T17:00:46Z</dc:date>
    </item>
    <item>
      <title>Re: Tomcat Connector problem ... with tiny_mce Javascript editor</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/tomcat-connector-problem-with-tiny-mce-javascript-editor/m-p/277891#M231021</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;A really kludgy workaround is to serve these files statically from Apache&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This directive (after the JkMount commands tells Apache not to use the Tomcat connector (and serve the files statically from Apache)&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt; JkUnMount /share/res/modules/editors/tiny_mce/* tomcat&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;SPAN&gt;You then make a directory tree to mimic the file system in Tomcat (for tiny_mce)&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;share/res/modules/editors/tiny_mce &lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;cp -a ~/alfresco-4.0.c/tomcat/webapps/share/modules/editors/tiny_mce /my/apache/www-root/share/res/modules/editors&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;Another way to achieve the same end is to Alias the files in Apache&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;AliasMatch ^/share/res/modules/editors/tiny_mce/(.*) /var/home/whoever/alfresco-4.0.c/tomcat/webapps/share/modules/editors/tiny_mce/$1&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Mar 2012 16:03:27 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/tomcat-connector-problem-with-tiny-mce-javascript-editor/m-p/277891#M231021</guid>
      <dc:creator>michaelk</dc:creator>
      <dc:date>2012-03-22T16:03:27Z</dc:date>
    </item>
    <item>
      <title>Re: Tomcat Connector problem ... with tiny_mce Javascript editor</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/tomcat-connector-problem-with-tiny-mce-javascript-editor/m-p/277892#M231022</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Actually aliasing the URL that includes the "res" directory works…&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;AliasMatch ^/share/res/modules/editors/tiny_mce/(.*) /share/modules/editors/tiny_mce/$1&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;The "res" directory doesn't exist and must be a "virtual" directory in generated by Tomcat. The Tomcat Connector does not seem to handle this case…&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Mar 2012 18:00:30 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/tomcat-connector-problem-with-tiny-mce-javascript-editor/m-p/277892#M231022</guid>
      <dc:creator>michaelk</dc:creator>
      <dc:date>2012-03-22T18:00:30Z</dc:date>
    </item>
  </channel>
</rss>

