<?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 Dont know from where to start  in Alfresco Forum</title>
    <link>https://connect.hyland.com/t5/alfresco-forum/dont-know-from-where-to-start/m-p/8282#M3762</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have installed&amp;nbsp;alfresco-community-5.0.d-installer-linux-x64.bin. Now i dont know from where to start learning. I am noob in this but i want to learn and i dont know from where to start. I have downloaded community edition and i dont know the differences between enterprise and community editions.&lt;BR /&gt;Please someone help me regarding this.As i have to do File Uploading using PHP in alfresco localhost and I dont know from where to begin.&lt;/P&gt;&lt;P&gt;Can someone Help me Please.? &amp;nbsp;&lt;img id="smileysad" class="emoticon emoticon-smileysad" src="https://connect.hyland.com/i/smilies/16x16_smiley-sad.png" alt="Smiley Sad" title="Smiley Sad" /&gt;&amp;nbsp;&lt;img id="smileysad" class="emoticon emoticon-smileysad" src="https://connect.hyland.com/i/smilies/16x16_smiley-sad.png" alt="Smiley Sad" title="Smiley Sad" /&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 11 Jul 2017 07:42:57 GMT</pubDate>
    <dc:creator>gmasand09</dc:creator>
    <dc:date>2017-07-11T07:42:57Z</dc:date>
    <item>
      <title>Dont know from where to start</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/dont-know-from-where-to-start/m-p/8282#M3762</link>
      <description>I have installed&amp;nbsp;alfresco-community-5.0.d-installer-linux-x64.bin. Now i dont know from where to start learning. I am noob in this but i want to learn and i dont know from where to start. I have downloaded community edition and i dont know the differences between enterprise and community editions.Pl</description>
      <pubDate>Tue, 11 Jul 2017 07:42:57 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/dont-know-from-where-to-start/m-p/8282#M3762</guid>
      <dc:creator>gmasand09</dc:creator>
      <dc:date>2017-07-11T07:42:57Z</dc:date>
    </item>
    <item>
      <title>Re: Dont know from where to start</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/dont-know-from-where-to-start/m-p/8283#M3763</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I assume you have tried to look at the &lt;A href="http://docs.alfresco.com/" rel="nofollow noopener noreferrer"&gt;documentation&lt;/A&gt;? If so, what aspects remain unclear after following the videos, guides etc.?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Jul 2017 22:12:05 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/dont-know-from-where-to-start/m-p/8283#M3763</guid>
      <dc:creator>afaust</dc:creator>
      <dc:date>2017-07-11T22:12:05Z</dc:date>
    </item>
    <item>
      <title>Re: Dont know from where to start</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/dont-know-from-where-to-start/m-p/8284#M3764</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Very Big Thank You for replying &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://connect.hyland.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&amp;nbsp;&lt;BR /&gt;Well i have gone through that and currently doing a project related to alfresco.&lt;BR /&gt;I have a accout in alfresco and i want a php api for uploading my document to the repository of alfresco.&lt;BR /&gt;Well there are so many examples related to file file upload but those for localhost.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This my main file&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;lt;html&amp;gt;&lt;BR /&gt;&amp;lt;head&amp;gt;&lt;BR /&gt; &amp;lt;title&amp;gt;Upload&amp;lt;/title&amp;gt;&lt;BR /&gt;&amp;lt;/head&amp;gt;&lt;BR /&gt; &lt;BR /&gt;&amp;lt;body&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;?php&lt;BR /&gt; require_once "Alfresco/Service/Repository.php"; &lt;BR /&gt; require_once "Alfresco/Service/ContentData.php";&lt;BR /&gt; require_once "Alfresco/Service/Session.php";&lt;BR /&gt; require_once "Alfresco/Service/SpacesStore.php";&lt;BR /&gt; require_once "Tutorials/required.php";&lt;BR /&gt; &lt;BR /&gt; $repositoryUrl = "****";&amp;nbsp;&lt;BR /&gt; $userName = "**************";&lt;BR /&gt; $password = "**************";&lt;BR /&gt; $parantID="****";&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; $repository = new Repository($repositoryUrl);&lt;BR /&gt; $ticket = $repository-&amp;gt;authenticate($userName, $password);&lt;BR /&gt; $mysession = $repository-&amp;gt;createSession($ticket);&lt;BR /&gt; &lt;BR /&gt; $store=new SpacesStore($mysession);&lt;BR /&gt; $node=$mysession-&amp;gt;getNode($store,$parantID);&lt;BR /&gt; $upload=$node-&amp;gt;createChild('cm_content','cm_contains',"$fname");&lt;BR /&gt;&lt;SPAN&gt; $contentData=new ContentData($upload,'{&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://http://www.alfresco.org/model/content/1.0" rel="nofollow noopener noreferrer" target="_blank"&gt;http://http://www.alfresco.org/model/content/1.0&lt;/A&gt;&lt;SPAN&gt;}content');&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;?&amp;gt;&lt;BR /&gt;&amp;lt;/body&amp;gt;&lt;BR /&gt; &lt;BR /&gt;&amp;lt;/html&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This my reuiqred.php&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;html&amp;gt;&lt;BR /&gt;&amp;lt;head&amp;gt;&lt;BR /&gt; &amp;lt;title&amp;gt;Upload&amp;lt;/title&amp;gt;&lt;BR /&gt;&amp;lt;/head&amp;gt;&lt;BR /&gt; &lt;BR /&gt;&amp;lt;body&amp;gt;&lt;BR /&gt; &lt;BR /&gt; &amp;lt;?php&lt;BR /&gt; $fname = $_FILES['uploadFile']['name'];&lt;/P&gt;&lt;P&gt;if (isset($_POST["Submit"])) {&lt;BR /&gt; $fname=$_FILES['uploadFile']['name'];&lt;BR /&gt; $ftmp=$_FILES['uploadFile']['tmp_name'];&lt;BR /&gt; $ftype=$_FILES['uploadFile']['type'];&lt;BR /&gt; $fsize=$_FILES['uploadFile']['size'];&lt;/P&gt;&lt;P&gt;$contentData-&amp;gt;encoding = 'UTF-8';&lt;BR /&gt; $contentData-&amp;gt;writeContentFromFile($ftmp);&lt;BR /&gt; $contentData-&amp;gt;size = $fsize;&lt;BR /&gt; $contentData-&amp;gt;mimetype = $ftype;&lt;BR /&gt; $upload-&amp;gt;cm_name = $fname;&lt;BR /&gt; $upload-&amp;gt;cm_description = 'File Description';&lt;BR /&gt; $upload-&amp;gt;cm_content = $contentData;&lt;BR /&gt; echo "ContentData = ".$contentData."&amp;lt;br&amp;gt;";&lt;BR /&gt; $mysession-&amp;gt;save();&lt;BR /&gt; echo "done";&lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;else ?&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt; form action="/display.php" method="post" enctype="multipart/form-data"&amp;gt;&lt;BR /&gt; &amp;lt; input type="file" name="uploadFile"&amp;gt;&lt;BR /&gt; &amp;lt; input type="submit" value="Upload" name="Submit"&amp;gt;&lt;BR /&gt; &amp;lt;/form&amp;gt;&lt;BR /&gt; &lt;/P&gt;&lt;P&gt;&amp;lt;/body&amp;gt;&lt;BR /&gt; &lt;BR /&gt;&amp;lt;/html&amp;gt;&lt;/P&gt;&lt;P&gt;And i am executing this program in my apache using ubuntu.&amp;nbsp;&lt;BR /&gt;what all stuff do i need to make this program execut .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have gone through a lot of tutorials and websites but couldn't able to find for what i am looking.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please Help me regarding this. &lt;img id="smileysad" class="emoticon emoticon-smileysad" src="https://connect.hyland.com/i/smilies/16x16_smiley-sad.png" alt="Smiley Sad" title="Smiley Sad" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Jul 2017 06:23:45 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/dont-know-from-where-to-start/m-p/8284#M3764</guid>
      <dc:creator>gmasand09</dc:creator>
      <dc:date>2017-07-12T06:23:45Z</dc:date>
    </item>
  </channel>
</rss>

