<?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: Can't upgrade to Alfresco 1.4 (from 1.3) in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/can-t-upgrade-to-alfresco-1-4-from-1-3/m-p/50229#M29121</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Any update on your upgrade issue?&amp;nbsp; I am sorry I don't have an answer for you, but your issue is extremely important for the implementation of Alfresco.&amp;nbsp; I am rather new to the product, but it is critical that it has a reliable upgrade path - for the community version as well.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Please let me know if you were able to solve your issues.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Matt&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 19 Dec 2006 09:50:36 GMT</pubDate>
    <dc:creator>mrudmann</dc:creator>
    <dc:date>2006-12-19T09:50:36Z</dc:date>
    <item>
      <title>Can't upgrade to Alfresco 1.4 (from 1.3)</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/can-t-upgrade-to-alfresco-1-4-from-1-3/m-p/50228#M29120</link>
      <description>I'm not able to upgrade my existing alfresco installation to 1.4 (Community) while keeping my current repository. I have the following problems &lt;IMG id="smileysad" class="emoticon emoticon-smileysad" src="https://migration33.stage.lithium.com/i/smilies/16x16_smiley-sad.png" alt="Smiley Sad" title="Smiley Sad" /&gt;os : debian )I tryed to do a manual upgrade usig alfresco-tomcat.tar.gz : I made a backup of my DB and data and i replaced alfresco.war.- During the first</description>
      <pubDate>Wed, 08 Nov 2006 14:43:39 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/can-t-upgrade-to-alfresco-1-4-from-1-3/m-p/50228#M29120</guid>
      <dc:creator>nricheton</dc:creator>
      <dc:date>2006-11-08T14:43:39Z</dc:date>
    </item>
    <item>
      <title>Re: Can't upgrade to Alfresco 1.4 (from 1.3)</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/can-t-upgrade-to-alfresco-1-4-from-1-3/m-p/50229#M29121</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Any update on your upgrade issue?&amp;nbsp; I am sorry I don't have an answer for you, but your issue is extremely important for the implementation of Alfresco.&amp;nbsp; I am rather new to the product, but it is critical that it has a reliable upgrade path - for the community version as well.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Please let me know if you were able to solve your issues.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Matt&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Dec 2006 09:50:36 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/can-t-upgrade-to-alfresco-1-4-from-1-3/m-p/50229#M29121</guid>
      <dc:creator>mrudmann</dc:creator>
      <dc:date>2006-12-19T09:50:36Z</dc:date>
    </item>
    <item>
      <title>Re: Can't upgrade to Alfresco 1.4 (from 1.3)</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/can-t-upgrade-to-alfresco-1-4-from-1-3/m-p/50230#M29122</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Use this script to upgrade .xml from 1.3 to 1.4. It worked for me.&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;#!/bin/sh&lt;BR /&gt;# Convert ACP XML files from 1.3 format to 1.4&lt;BR /&gt;# Expects input and output args&lt;BR /&gt;if [ "$2" = "" ]; then&lt;BR /&gt;&amp;nbsp;&amp;nbsp; echo "The ACP XML Conversion utility needs input and output files specified:"&lt;BR /&gt;&amp;nbsp;&amp;nbsp; echo "1-3_to_1-4 &amp;lt;13inputFile.xml&amp;gt; &amp;lt;14outputfile.xml&amp;gt;"&lt;BR /&gt;else&lt;BR /&gt;&amp;nbsp;&amp;nbsp; # set the LIB_DIR value to point to the Alfresco lib directory&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LIB_DIR='/opt/Alfresco/tomcat/webapps/alfresco/WEB-INF/lib';&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TEMP_CLASS_PATH=$LIB_DIR/repository.jar:$LIB_DIR/core.jar:$LIB_DIR/dom4j-1.6.1.jar:$LIB_DIR/xpp3-1.1.3_8.jar:$LIB_DIR/jug.jar&lt;BR /&gt;&amp;nbsp;&amp;nbsp; /opt/Alfresco/java/bin/java -cp $TEMP_CLASS_PATH org.alfresco.repo.admin.patch.util.ImportFileUpdater $1 $2&lt;BR /&gt;fi&lt;BR /&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Mar 2007 09:08:04 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/can-t-upgrade-to-alfresco-1-4-from-1-3/m-p/50230#M29122</guid>
      <dc:creator>miguel_gil_mart</dc:creator>
      <dc:date>2007-03-12T09:08:04Z</dc:date>
    </item>
  </channel>
</rss>

