<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>MP:Mediaprojekte &#187; vTiger/Sugar CRM</title>
	<atom:link href="http://mediaprojekte.de/mp/cms-systeme/vtiger_sugar_crm/feed/" rel="self" type="application/rss+xml" />
	<link>http://mediaprojekte.de</link>
	<description>Webentwicklung Grafik und Design Marketing und Werbung Multimedia</description>
	<lastBuildDate>Wed, 25 Jan 2012 14:48:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>vTiger MOD: Better formated Emails in vTiger</title>
		<link>http://mediaprojekte.de/cms-systeme/vtiger_sugar_crm/vtiger-mod-better-formated-emails-in-vtiger/</link>
		<comments>http://mediaprojekte.de/cms-systeme/vtiger_sugar_crm/vtiger-mod-better-formated-emails-in-vtiger/#comments</comments>
		<pubDate>Thu, 24 Nov 2005 02:55:12 +0000</pubDate>
		<dc:creator>MP:Schorsch</dc:creator>
				<category><![CDATA[vTiger/Sugar CRM]]></category>

		<guid isPermaLink="false">http://www.mediaprojekte.de/cms-systeme/vtiger_sugar_crm/vtiger-mod-better-formated-emails-in-vtiger/</guid>
		<description><![CDATA[I found several problem when using the build-in Email Function / Module in vTiger. I´m using emailtemplates to send mails to Leads. ]]></description>
			<content:encoded><![CDATA[<p>I found several problems when using the build-in Email Function / Module in vTiger. I&acute;m using the internal Mailsending to send emails to Leads, so i have them direktly attached to the customer. When selecting &quot;Send Email &quot; beneath a Lead, the emailmodule opens. Then&nbsp; i select a mail-template and the text is entered in my Email field. And here starts the fun:</p>
<p><strong>1.Wysiwyg-Editor Problems</strong></p>
<p><strong>2. Signature Problem</strong></p>
<p><strong>3. From-Name in Email needs change</strong></p>
<p><strong>4. Alternate TEXT Emailtext instead of just HTML&nbsp;</strong></p>
<p>&nbsp;</p>
<p><strong>1.Wysiwyg-Editor Problems</strong></p>
<p>Those of You that don&acute;t have Problems with the fck Editor, don&acute;t need to kill it. In my case firefox crashed and in IE there where also some bugs. Anyway i found it better to have a Text-Email+Simple HTML instead a fullblown HTML one, which might not be read by some folks using Webmailers.&nbsp;</p>
<p>To disable the FCk i did it the dirty way for now:</p>
<p>modules/Emails/EditView.html around Line 107 find:</p>
<p> &nbsp;&lt;!&#8211; oFCKeditor.ReplaceTextarea() ; &#8211;&gt;<br /> Commented out the replacement Call</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />  &nbsp;</p>
<p><strong>2. Signature Problem</strong></p>
<p> The signature in the Email is taken from the Users Signature but it is wrapped with font-Tag in the HTML Email. I took those out an killed also the &quot;newLine2break&quot;-nl2br around the signature. Did also looked not very nice and is obsolete.  </p>
<p><strong>modules/Emails/send_mail.php around Line 54 find:</strong></p>
<p>$contents .= &#8216;&lt;br&gt;&lt;br&gt;&lt;font color=darkgrey&gt;&#8217;.nl2br($sign).&#8217;&lt;/font&gt;&#8217;; <br /><font color="#3300ff"><strong>   replace with:</strong></font><br />  $contents .= &#8216;&lt;br&gt;&lt;br&gt;&#8217;.$sign.&#8221;;</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;&nbsp;</p>
<p><strong>3. From-Name in Email needs change</strong></p>
<p>&nbsp; When sending the Emails the vTiger CRM-Username is taken into the From-Name . This is not so nice because the Clients don&acute;t really need to know my Login Name. I made an extra query to fetch another Piece of the users Data:<br />   <strong>modules/Emails/send_mail.php around Line 62 find:</strong></p>
<p>$initialfrom = $from; <br /><font color="#3300ff"><strong>   replace with:</strong></font><br />   $sql=&quot;select department from users where user_name=&#8217;&quot; .$from .&quot;&#8217;&quot; ;<br />   $result = $adb-&gt;query($sql);<br />   $initialfrom = $adb-&gt;query_result($result,0,&quot;department&quot;); </p>
<p>Watch out you can put in any field from the Users-Table in thew select statement. Currently it takes the department as sender name. it would be nice to have an Admin Option for this.  </p>
<p>&nbsp;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; </p>
<p><strong>4. Alternate TEXT Emailtext instead of just HTML&nbsp;</strong></p>
<p> hey cool phpmailer provides a function to add alternative text to a HTMl message&#8230; so why don&acute;t we use it??<br /> &nbsp;This is by far not the only place where there is such an alternate Email text. You can just Search over your vTiger folder to find them all.   </p>
<p><strong> modules/Emails/send_mail.php around Line 155 find:</strong></p>
<p>$mail-&gt;AltBody = &quot;This is the body in plain text for non-HTML mail clients&quot;;<br /><font color="#3300ff"><strong>   replace with:</strong></font><br />   $mail-&gt;AltBody = strip_tags($contents);    </p>
<p>&nbsp;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br /> &nbsp;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; </p>
<p>Those are just some Bugs. There are some more f.Ex. with the Emailtemplate merging. i might cover those later.</p>
<p> By the way, i could provide the patched files. But If you try this yourself, you might bring the vTiger CRM community forward in the future and i&acute;m not yet satisfied with the only the above <img src='http://mediaprojekte.de/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Please feel free to give me some Feedback.&nbsp;   </p>
]]></content:encoded>
			<wfw:commentRss>http://mediaprojekte.de/cms-systeme/vtiger_sugar_crm/vtiger-mod-better-formated-emails-in-vtiger/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Sugar Professional MOD: Add Picture to Products Module</title>
		<link>http://mediaprojekte.de/cms-systeme/vtiger_sugar_crm/sugar-professional-35-add-picture-to-products-module/</link>
		<comments>http://mediaprojekte.de/cms-systeme/vtiger_sugar_crm/sugar-professional-35-add-picture-to-products-module/#comments</comments>
		<pubDate>Thu, 24 Nov 2005 01:57:31 +0000</pubDate>
		<dc:creator>MP:Schorsch</dc:creator>
				<category><![CDATA[vTiger/Sugar CRM]]></category>

		<guid isPermaLink="false">http://www.mediaprojekte.de/?p=110</guid>
		<description><![CDATA[After insering the following code into your Sugar 3.0 Files you will be able to add a picture to a product ... hey great Sugar guy´s it´s not even in you new 4.0 Sugarcrm professional version, at least not in your Demo ... great worxs]]></description>
			<content:encoded><![CDATA[<p>I posted the following Code Snippets as a Forumpost in the Sugar Professional Forum (restricted to clients&nbsp;<img border="0" title="emoticon" alt="emoticon" src="http://www.mediaprojekte.de/wp-content/plugins/Wysi-Wordpress/plugins/emotions/images/wallbash.gif" /> ).</p>
<p>Well it did not get to many attention (like the whole prof. Forum Area!!) so i put it here to the public.</p>
<p>After insering the following code into your Sugar 3.0 Files you will be able to add a picture to a product &#8230; hey great Sugar guy&acute;s it&acute;s not even in you new 4.0 Sugarcrm professional version, at least not in your Demo &#8230; great worxs</p>
<p>I have not looked to deep into the 4.0 Sugarcrm Professional Code and skipped the 3.5 Version. It should be done the same way and you&acute;ll see when you insert it. But maybe there are possibilities to make more use of global classes and hooks &#8230; thats what their marketing said.<br /> If you want to learn a bit how to extend Sugar just see this as a little &quot; How To&quot; &#8211; Lesson  </p>
<p>&nbsp;<strong>Remarks</strong></p>
<p>  &#8211; PLEASE Notice: There might be some hidden probs in my code pieces so be carefull and BAckup Backup..!</p>
<p>  &#8211; The Line numbers are just an orientation .. most pieces can slightly be put somewhere else in the file.</p>
<p>  &#8211; This field can also contain any other allowed file types and then will not show the image in the detailView </p>
<p>  &#8211; it is already very late (in germany) so i&acute;ll hope i don&acute;t miss anything.</p>
<p>- BACKUP BACKUP BACKUP both Files and Database (the Database is extended by two fields in the product table, nothing spectacular) </p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;&nbsp;</p>
<p><strong>Changed files:</strong> all in modules/Products/&#8230;</p>
<blockquote><p>    Product Insert files:   </p></blockquote>
<blockquote><p>  products.php<br />       Save.php<br />       editView.php<br />       editView.html   </p></blockquote>
<blockquote><p>   Product  View Files   </p></blockquote>
<blockquote><p>    DetailView.php<br />       DetailView.html</p></blockquote>
<p>  <strong>Changed Db Tables:</strong></p>
<blockquote><p>table Products   added 2 colums<br />   filename<br />   file_mime_type</p></blockquote>
<p>  <strong>  SQL Insert:</strong><br />  ALTER TABLE `products` ADD `filename` VARCHAR( 100 ) DEFAULT NULL ,<br />  ADD `file_mime_type` VARCHAR( 100 ) DEFAULT NULL ;
<p>&nbsp;</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; </p>
<p>Ok now we go through each file and Apply the changes:</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;&nbsp;</p>
<p><strong> editView.php</strong>  </p>
<p><font color="#000000" /><font color="#ff8000">//around Line 61 change the duplicate checker <br />&nbsp;&nbsp;</font><font color="#007700">if(isset(</font><font color="#0000bb">$_REQUEST</font><font color="#007700">[</font><font color="#dd0000">'isDuplicate'</font><font color="#007700">]) &amp;&amp; </font><font color="#0000bb">$_REQUEST</font><font color="#007700">[</font><font color="#dd0000">'isDuplicate'</font><font color="#007700">] == </font><font color="#dd0000">&#8216;true&#8217;</font><font color="#007700">) { <br />&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#ff8000">//added for product image <br />&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#007700">if (! empty(</font><font color="#0000bb">$focus</font><font color="#007700">-&gt;</font><font color="#0000bb">filename</font><font color="#007700">) ) <br />&nbsp;&nbsp;&nbsp;&nbsp;{ <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#0000bb">$old_id </font><font color="#007700">= </font><font color="#0000bb">$focus</font><font color="#007700">-&gt;</font><font color="#0000bb">id</font><font color="#007700">; <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;} <br />&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#ff8000">//END added for product image </p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#0000bb">$focus</font><font color="#007700">-&gt;</font><font color="#0000bb">id </font><font color="#007700">= </font><font color="#dd0000">&quot;&quot;</font><font color="#007700">; <br />} </p>
<p></font><font color="#ff8000">//&#8212;second Piece&#8212;&#8212;&#8212;- around Line 110 </p>
<p>//added for product image&nbsp;&nbsp;&nbsp;Georg Leciejewski <br /></font><font color="#007700">if (isset(</font><font color="#0000bb">$_REQUEST</font><font color="#007700">[</font><font color="#dd0000">'filename'</font><font color="#007700">]) &amp;&amp; </font><font color="#0000bb">$_REQUEST</font><font color="#007700">[</font><font color="#dd0000">'isDuplicate'</font><font color="#007700">] != </font><font color="#dd0000">&#8216;true&#8217;</font><font color="#007700">) { <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#0000bb">$focus</font><font color="#007700">-&gt;</font><font color="#0000bb">filename </font><font color="#007700">= </font><font color="#0000bb">$_REQUEST</font><font color="#007700">[</font><font color="#dd0000">'filename'</font><font color="#007700">]; <br />} <br />if ( empty(</font><font color="#0000bb">$focus</font><font color="#007700">-&gt;</font><font color="#0000bb">filename</font><font color="#007700">)) <br />{&nbsp;&nbsp;&nbsp; <br />&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#0000bb">$xtpl</font><font color="#007700">-&gt;</font><font color="#0000bb">assign</font><font color="#007700">(</font><font color="#dd0000">&quot;FILENAME_TEXT&quot;</font><font color="#007700">, </font><font color="#dd0000">&quot;&quot;</font><font color="#007700">);&nbsp;&nbsp;</font><font color="#ff8000">//FILENAME_TEXT add to language file please <br />&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#0000bb">$xtpl</font><font color="#007700">-&gt;</font><font color="#0000bb">assign</font><font color="#007700">(</font><font color="#dd0000">&quot;FILENAME&quot;</font><font color="#007700">, </font><font color="#dd0000">&quot;&quot;</font><font color="#007700">);&nbsp;&nbsp;</font><font color="#ff8000">// add FILENAME to language file please <br /></font><font color="#007700">} <br />else <br />{ <br />&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#0000bb">$xtpl</font><font color="#007700">-&gt;</font><font color="#0000bb">assign</font><font color="#007700">(</font><font color="#dd0000">&quot;FILENAME_TEXT&quot;</font><font color="#007700">, </font><font color="#dd0000">&quot;(&quot;</font><font color="#007700">.</font><font color="#0000bb">$focus</font><font color="#007700">-&gt;</font><font color="#0000bb">filename</font><font color="#007700">.</font><font color="#dd0000">&quot;)&quot;</font><font color="#007700">); <br />&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#0000bb">$xtpl</font><font color="#007700">-&gt;</font><font color="#0000bb">assign</font><font color="#007700">(</font><font color="#dd0000">&quot;FILENAME&quot;</font><font color="#007700">, </font><font color="#0000bb">$focus</font><font color="#007700">-&gt;</font><font color="#0000bb">filename</font><font color="#007700">); <br />} <br /></font><font color="#ff8000">//added for product image&nbsp;&nbsp;Georg Leciejewski&nbsp;  </font></p>
<p><font color="#000000" /><font color="#000000">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</font></p>
<p><font color="#000000" /><font color="#000000"><strong>product.php</strong></font></p>
<p><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#ff8000">//added to class-variables on top &#8230; around Line 86 <br />&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#007700">var </font><font color="#0000bb">$filename</font><font color="#007700">;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#ff8000">//product image Georg Leciejewski <br />&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#007700">var </font><font color="#0000bb">$file_mime_type</font><font color="#007700">;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#ff8000">//product image Georg Leciejewski </p>
<p>// &#8212;&#8211;Second Piece &#8212;&#8212;&#8212; <br />//added to&nbsp;&nbsp;colum field Array &#8230; around Line 155 </p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#007700">var </font><font color="#0000bb">$column_fields </font><font color="#007700">= Array(&#8230;.. <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#8230;.. <br />&nbsp;&nbsp;&nbsp;&nbsp;, </font><font color="#dd0000">&quot;filename&quot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#ff8000">//product image Georg Leciejewski <br />&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#007700">, </font><font color="#dd0000">&quot;file_mime_type&quot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#ff8000">//product image Georg Leciejewski&nbsp;  </font></p>
<p><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</font></p>
<p><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000"><strong>Save.php</strong><br /> &nbsp;<font color="#000000" /></font><font color="#ff8000">// Line 35 on the very top .. now you can create instances of the UploadFile Class <img src='http://mediaprojekte.de/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  <br /> </font><font color="#007700">require_once(</font><font color="#dd0000">&#8216;include/upload_file.php&#8217;</font><font color="#007700">); </font><font color="#ff8000">//product image GL </p>
<p> // &#8212;&#8211;Second Piece &#8212;&#8212;&#8212; Line 81 </p>
<p> //Product Image </p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#0000bb">$upload_file </font><font color="#007700">= new </font><font color="#0000bb">UploadFile</font><font color="#007700">(</font><font color="#dd0000">&#8216;uploadfile&#8217;</font><font color="#007700">); <br />&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#0000bb">$do_final_move </font><font color="#007700">= </font><font color="#0000bb">0</font><font color="#007700">; <br />&nbsp;&nbsp;&nbsp;&nbsp;if (isset(</font><font color="#0000bb">$_FILES</font><font color="#007700">[</font><font color="#dd0000">'uploadfile'</font><font color="#007700">]) &amp;&amp; </font><font color="#0000bb">$upload_file</font><font color="#007700">-&gt;</font><font color="#0000bb">confirm_upload</font><font color="#007700">()) <br />&nbsp;&nbsp;&nbsp;&nbsp;{ </p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (!empty(</font><font color="#0000bb">$focus</font><font color="#007700">-&gt;</font><font color="#0000bb">id</font><font color="#007700">) &amp;&amp; !empty(</font><font color="#0000bb">$_REQUEST</font><font color="#007700">[</font><font color="#dd0000">'old_filename'</font><font color="#007700">]) ) <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{ <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#0000bb">$upload_file</font><font color="#007700">-&gt;</font><font color="#0000bb">unlink_file</font><font color="#007700">(</font><font color="#0000bb">$focus</font><font color="#007700">-&gt;</font><font color="#0000bb">id</font><font color="#007700">,</font><font color="#0000bb">$_REQUEST</font><font color="#007700">[</font><font color="#dd0000">'old_filename'</font><font color="#007700">]); <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;} <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#0000bb">$focus</font><font color="#007700">-&gt;</font><font color="#0000bb">filename </font><font color="#007700">= </font><font color="#0000bb">$upload_file</font><font color="#007700">-&gt;</font><font color="#0000bb">get_stored_file_name</font><font color="#007700">(); <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#0000bb">$focus</font><font color="#007700">-&gt;</font><font color="#0000bb">file_mime_type </font><font color="#007700">= </font><font color="#0000bb">$upload_file</font><font color="#007700">-&gt;</font><font color="#0000bb">mime_type</font><font color="#007700">; </p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#0000bb">$do_final_move </font><font color="#007700">= </font><font color="#0000bb">1</font><font color="#007700">; <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;} <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;else if ( isset( </font><font color="#0000bb">$_REQUEST</font><font color="#007700">[</font><font color="#dd0000">'old_filename'</font><font color="#007700">])) <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{ <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#0000bb">$focus</font><font color="#007700">-&gt;</font><font color="#0000bb">filename </font><font color="#007700">= </font><font color="#0000bb">$_REQUEST</font><font color="#007700">[</font><font color="#dd0000">'old_filename'</font><font color="#007700">]; <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;} </p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#0000bb">$return_id </font><font color="#007700">= </font><font color="#0000bb">$focus</font><font color="#007700">-&gt;</font><font color="#0000bb">save</font><font color="#007700">(); </p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (</font><font color="#0000bb">$do_final_move</font><font color="#007700">) <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{ <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#0000bb">$upload_file</font><font color="#007700">-&gt;</font><font color="#0000bb">final_move</font><font color="#007700">(</font><font color="#0000bb">$focus</font><font color="#007700">-&gt;</font><font color="#0000bb">id</font><font color="#007700">); <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;} <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;else if ( ! empty(</font><font color="#0000bb">$_REQUEST</font><font color="#007700">[</font><font color="#dd0000">'old_id'</font><font color="#007700">])) <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{ <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#0000bb">$upload_file</font><font color="#007700">-&gt;</font><font color="#0000bb">duplicate_file</font><font color="#007700">(</font><font color="#0000bb">$_REQUEST</font><font color="#007700">[</font><font color="#dd0000">'old_id'</font><font color="#007700">], </font><font color="#0000bb">$focus</font><font color="#007700">-&gt;</font><font color="#0000bb">id</font><font color="#007700">, </font><font color="#0000bb">$focus</font><font color="#007700">-&gt;</font><font color="#0000bb">filename</font><font color="#007700">); <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;} </p>
<p></font><font color="#ff8000">//END Product Image  </font></p>
<p><font color="#000000"><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /></font><font color="#000000"><font color="#000000" /></font><font color="#000000">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&nbsp;</font></p>
<p><font color="#000000"></font><font color="#000000"><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /></font><font color="#000000"><font color="#000000" /></font><font color="#000000"><strong> editView.html</strong></font></p>
<p><font color="#000000"></font><font color="#000000"></font><font color="#000000"><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /></font><font color="#000000"><font color="#000000" /></font><font color="#000000">&nbsp;</font><em><font color="#000080">&lt;!&#8211; // changed formtype to multipart on top Line 35&#8211;&gt;</font></em>     <font color="#ff8000" /></p>
<p><font color="#000000"></font><font color="#000000"></font><font color="#000000"></font><font color="#000000"></font><font color="#ff8000"><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /></font><font color="#ff8000"><font color="#000000" /></font><font color="#ff8000">&lt;form name=</font><font color="#0000ff">&quot;EditView&quot;</font> method=<font color="#0000ff">&quot;POST&quot;</font> action=<font color="#0000ff">&quot;index.php&quot;</font> enctype=<font color="#0000ff">&quot;multipart/form-data&quot;</font>&gt;</p>
<p><font color="#000000"></font><font color="#000000"></font><font color="#000000"></font><font color="#000000"></font><font color="#ff8000"></font><font color="#ff8000"><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#ff8000" /></font><font color="#000000"><em><font color="#000080">&lt;!&#8211;  // insert upload file field input somewhere  .. just be aware not to break the html structure &#8211;&gt;</font></em></font></p>
<p><font color="#000000"></font><font color="#000000"></font><font color="#000000"></font><font color="#000000"></font><font color="#ff8000"></font><font color="#ff8000"><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#ff8000" /></font><font color="#000000">    </font><font color="#008080">&lt;td width=</font><font color="#0000ff">&quot;dataField&quot;</font> class=<font color="#0000ff">&quot;dataLabel&quot;</font>&gt;<font color="#000080">&lt;slot&gt;</font>{MOD.LBL_FILENAME}<font color="#000080">&lt;/slot&gt;</font><font color="#008080">&lt;/td&gt;</font></p>
<p><font color="#000000"></font><font color="#000000"></font><font color="#000000"></font><font color="#000000"></font><font color="#ff8000"></font><font color="#ff8000"><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /></font><font color="#ff8000"><font color="#000000" /></font><font color="#008080">&lt;td width=</font><font color="#0000ff">&quot;dataField&quot;</font> class=<font color="#0000ff">&quot;dataField&quot;</font>&gt;<font color="#000080">&lt;slot&gt;</font><font color="#ff8000">&lt;input name=</font><font color="#0000ff">&quot;uploadfile&quot;</font> tabindex=<font color="#0000ff">&quot;2&quot;</font> type=<font color="#0000ff">&quot;file&quot;</font> size=<font color="#0000ff">&quot;60&quot;</font>/&gt; {FILENAME_TEXT}<font color="#ff8000">&lt;input type=&#8217;hidden&#8217; name=&#8217;old_filename&#8217; value=&#8217;{FILENAME}&#8217;/&gt;</font><font color="#ff8000">&lt;input type=&#8217;hidden&#8217; name=&#8217;old_id&#8217; value=&#8217;{OLD_ID}&#8217;/&gt;</font><font color="#000000">&lt;/slot&gt;<br /> </font><font color="#000000"></font><font color="#008080">&lt;/td&gt;</font></p>
<p><font color="#000000"></font><font color="#000000"></font><font color="#000000"></font><font color="#000000"></font><font color="#ff8000"></font><font color="#ff8000"></font><font color="#ff8000"></font><font color="#000000"><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /></font><font color="#ff8000">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</font></p>
<p><font color="#000000"></font><font color="#000000"></font><font color="#000000"></font><font color="#000000"></font><font color="#ff8000"></font><font color="#ff8000"></font><font color="#ff8000"></font><font color="#000000"><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /></font><font color="#ff8000"><strong>  DetailView.html</strong><em><font color="#000080" /></em><font color="#000080" /></font></p>
<p><font color="#000000"></font><font color="#000000"></font><font color="#000000"></font><font color="#000000"></font><font color="#ff8000"></font><font color="#ff8000"></font><font color="#ff8000"></font><font color="#000000"></font><font color="#ff8000"><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#ff8000" /></font><font color="#000080"><em><font color="#000080">&lt;!&#8211;i added it around Line 147 but you can put it anywhere you want .. just be aware not to break the html structure&#8211;&gt;</font></em></font></p>
<p><font color="#000000"></font><font color="#000000"></font><font color="#000000"></font><font color="#000000"></font><font color="#ff8000"></font><font color="#ff8000"></font><font color="#ff8000"></font><font color="#000000"></font><font color="#ff8000"><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#ff8000" /></font><font color="#000080"><em><font color="#000080" /></em><font color="#000080" /><font color="#000080" /></font><font color="#008080">&lt;td class=</font><font color="#0000ff">&quot;tabDetailViewDL&quot;</font>&gt;<font color="#000080">&lt;slot&gt;</font>{MOD.LBL_FILENAME}<font color="#000080">&lt;/slot&gt;</font><font color="#008080">&lt;/td&gt;</font></p>
<p><font color="#000000"></font><font color="#000000"></font><font color="#000000"></font><font color="#000000"></font><font color="#ff8000"></font><font color="#ff8000"></font><font color="#ff8000"></font><font color="#000000"></font><font color="#ff8000"></font><font color="#000080"><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#ff8000" /><font color="#000080" /></font><font color="#000080"> </font><font color="#008080">&lt;td class=</font><font color="#0000ff">&quot;tabDetailViewDF&quot;</font>&gt;<font color="#000080">&lt;slot&gt;</font>{FILELINK}<font color="#000080">&lt;/slot&gt;</font><font color="#008080">&lt;/td&gt;</font></p>
<p><font color="#000000"></font><font color="#000000"></font><font color="#000000"></font><font color="#000000"></font><font color="#ff8000"></font><font color="#ff8000"></font><font color="#ff8000"></font><font color="#000000"></font><font color="#ff8000"></font><font color="#000080"><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#ff8000" /><font color="#000080" /></font><font color="#000080">&nbsp;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</font></p>
<p><font color="#000000"></font><font color="#000000"></font><font color="#000000"></font><font color="#000000"></font><font color="#ff8000"></font><font color="#ff8000"></font><font color="#ff8000"></font><font color="#000000"></font><font color="#ff8000"></font><font color="#000080"><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#ff8000" /><font color="#000080" /></font><font color="#000080"><strong> DetailView.php</strong></font></p>
<p><font color="#000000"></font><font color="#000000"></font><font color="#000000"></font><font color="#000000"></font><font color="#ff8000"></font><font color="#ff8000"></font><font color="#ff8000"></font><font color="#000000"></font><font color="#ff8000"></font><font color="#000080"><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#ff8000" /><font color="#000080" /></font><font color="#000080">&nbsp;<font color="#000000" /></font><font color="#ff8000">// on the very top .. Line 38 <br /></font><font color="#007700">require_once(</font><font color="#dd0000">&#8216;include/upload_file.php&#8217;</font><font color="#007700">);&nbsp;&nbsp;</font><font color="#ff8000">// product image Georg Leciejewski </p>
<p>//&#8212;&#8212;&#8212;&#8212;-second piece&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;- .. Line 147 </p>
<p> //added for product image&nbsp;&nbsp;&nbsp;Georg Leciejewski <br /></font><font color="#007700">if ( isset(</font><font color="#0000bb">$focus</font><font color="#007700">-&gt;</font><font color="#0000bb">filename</font><font color="#007700">) &amp;&amp; </font><font color="#0000bb">$focus</font><font color="#007700">-&gt;</font><font color="#0000bb">filename </font><font color="#007700">!= </font><font color="#dd0000">&#8221;</font><font color="#007700">) <br />{ <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#0000bb">$fileurl </font><font color="#007700">= </font><font color="#dd0000">&quot;&lt;a href=\&quot;&quot;</font><font color="#007700">.</font><font color="#0000bb">UploadFile</font><font color="#007700">::</font><font color="#0000bb">get_url</font><font color="#007700">(</font><font color="#0000bb">$focus</font><font color="#007700">-&gt;</font><font color="#0000bb">filename</font><font color="#007700">,</font><font color="#0000bb">$focus</font><font color="#007700">-&gt;</font><font color="#0000bb">id</font><font color="#007700">).</font><font color="#dd0000">&quot;\&quot; target=\&quot;_blank\&quot;&gt;&quot;</font><font color="#007700">. </font><font color="#0000bb">$focus</font><font color="#007700">-&gt;</font><font color="#0000bb">filename </font><font color="#007700">.</font><font color="#dd0000">&quot;&lt;/a&gt;&quot;</font><font color="#007700">; <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#0000bb">$xtpl</font><font color="#007700">-&gt;</font><font color="#0000bb">assign</font><font color="#007700">(</font><font color="#dd0000">&quot;FILELINK&quot;</font><font color="#007700">, </font><font color="#0000bb">$fileurl</font><font color="#007700">); <br />} <br /></font><font color="#ff8000">//END added for product image&nbsp;&nbsp;Georg Leciejewski  </font></p>
<p><font color="#000000"></font><font color="#000000"></font><font color="#000000"></font><font color="#000000"></font><font color="#ff8000"></font><font color="#ff8000"></font><font color="#ff8000"></font><font color="#000000"></font><font color="#ff8000"></font><font color="#000080"></font><font color="#000080"><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#ff8000" /><font color="#000080" /></font><font color="#000080">&nbsp;</font></p>
<p><font color="#000000"></font><font color="#000000"></font><font color="#000000"></font><font color="#000000"></font><font color="#ff8000"></font><font color="#ff8000"></font><font color="#ff8000"></font><font color="#000000"></font><font color="#ff8000"></font><font color="#000080"></font><font color="#000080"><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#000000" /><font color="#ff8000" /><font color="#000080" /></font><font color="#000080"><font color="#000000" /></font><font color="#000000"><font color="#000000" /></font><font color="#000000"> </font></p>
]]></content:encoded>
			<wfw:commentRss>http://mediaprojekte.de/cms-systeme/vtiger_sugar_crm/sugar-professional-35-add-picture-to-products-module/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>vTiger CRM clean Login Site</title>
		<link>http://mediaprojekte.de/cms-systeme/vtiger_sugar_crm/vtiger-crm-clean-login-site/</link>
		<comments>http://mediaprojekte.de/cms-systeme/vtiger_sugar_crm/vtiger-crm-clean-login-site/#comments</comments>
		<pubDate>Sun, 25 Sep 2005 18:55:52 +0000</pubDate>
		<dc:creator>MP:Schorsch</dc:creator>
				<category><![CDATA[vTiger/Sugar CRM]]></category>

		<guid isPermaLink="false">http://mediaprojekte.de/?p=58</guid>
		<description><![CDATA[vTiger  Loginseite aufgr�umt]]></description>
			<content:encoded><![CDATA[<p>Die standart Loginseite des vTiger CRM v. 4.2 ist in drei Spalten aufgeteilt und einfach zu breit. Ausserdem ist die zus&auml;tzlich gebotene Information nicht wirklich n&ouml;tig. <br />  Deshalb habe ich die Loginseite etwas aufgr&auml;umt so das jetzt nur noch der Login gezeigt wird.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8211;<br />  The original Loginpage of vTigerCRM is devided into 3 Parts and much to big.<br />  I cleaned it up, so now there is only the loginbox remaining.  </p>
<p><strong>Vorher / Before:&nbsp;</strong></p>
<p>&nbsp;<img width="312" vspace="5" hspace="5" height="184" border="0" title="vTiger-login-orig.jpg" alt="vTiger-login-orig.jpg" src="http://mediaprojekte.de/blog/wp-content/wp-filez/vTiger-login-orig.jpg" /></p>
<p>&nbsp;</p>
<p><strong>Nacher / After:&nbsp;</strong></p>
<p><img width="150" vspace="5" hspace="5" height="184" border="0" title="vTiger-login-clean" alt="vTiger-login-clean" src="http://mediaprojekte.de/wp-content/wp-filez/vTiger-login-clean.jpg" />&nbsp;</p>
<p>Die php Datei dann in das folgende Verzeichniss einf&uuml;gen / Please put file into this directory:<strong><br />  vTiger/modules/Users/Login.php</strong></p>
<p> <strong> </strong>
<p>(Nat&uuml;rlich wie immer die Empfehlung &#8230; BACKUP FIRST)&nbsp;</p>
<p><a title="vTiger_clean_Login.zip" href="http://www.mediaprojekte.de/wp-content/wp-filez/wp-code/vTiger_clean_Login.zip"><img border="0" alt="vTiger_clean_Login.zip" src="http://www.mediaprojekte.de/wp-content/plugins/Wysi-Wordpress/plugins/filemanager/InsertFile/img/ext/zip_small.gif" />&nbsp;vTiger_clean_Login.zip&nbsp;(<span style="font-size: 80%">05.01.2006 00:56)</span></a>  </p>
<p> <strong> </strong></p>
]]></content:encoded>
			<wfw:commentRss>http://mediaprojekte.de/cms-systeme/vtiger_sugar_crm/vtiger-crm-clean-login-site/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>SugarCRM vs. vTiger</title>
		<link>http://mediaprojekte.de/cms-systeme/vtiger_sugar_crm/sugarcrm-vs-vtiger/</link>
		<comments>http://mediaprojekte.de/cms-systeme/vtiger_sugar_crm/sugarcrm-vs-vtiger/#comments</comments>
		<pubDate>Sat, 30 Jul 2005 05:58:49 +0000</pubDate>
		<dc:creator>MP:Schorsch</dc:creator>
				<category><![CDATA[vTiger/Sugar CRM]]></category>

		<guid isPermaLink="false">http://mediaprojekte.de/?p=25</guid>
		<description><![CDATA[Pack dir den Tiger ins Web !]]></description>
			<content:encoded><![CDATA[<p><a title="Aqua Theme" target="_blank" href="http://mediaprojekte.de/blog/wp-content/wp-photos/vtigercrm_1.jpg"><img width="161" vspace="0" hspace="5" height="99" border="0" align="right" src="http://mediaprojekte.de/blog/wp-content/wp-photos/vtigercrm_1-kl.jpg" alt="VTiger CRM Theme Aqua" title="VTiger CRM Theme Aqua" /></a>Also da bin ich heute nacht ja fast von Stuhl gefallen als ich das gelesen habe&#8230; Ich habe mal so aus Spass bei <a href="http://technorati.com" target="_blank" title="Die Blogsuchmaschine">Technorati</a> nach SugarCRM gesucht und bin auf etwas wirklich krasses gestossen. Da haben doch ein paar Inder Gas gegeben und mal eben das Open Source SugarCrm so richtig aufgebohrt und vergeben es unter der GPL, mit dem Namen<strong> <a href="http://www.vtiger.com/" target="_self" title="Fettaufgebohrtes Sugar">vTiger</a></strong>  </p>
<p>Man findet alle Funktionen die das SugarProfessional bietet und noch so einiges mehr&#8230;und zwar genau die Funktionen die selbst dem SugarProf. fehlen!!  </p>
<p>Nachdem die Entwickler ziemlich schlechte Erfahrungen mit dem Sugar Team gemacht haben, wie einer der Entwickler in ner <a href="http://voip-blog.tmcnet.com/telecom-crm/archives/2005/07/22/first-coffee-for-july-22-2005.asp" target="_self" title="first coffe blog">Email schreibt</a>..&nbsp; haben Sie es einfach selber gemacht.</p>
<p>Ich werde es direkt mal installieren und ihm unter die haube sehen.<strike> Es ist zwar noch nicht in Deutsch &uuml;bersetzt</strike>, die Funktionen und Schalter haben mich schon ziemlich angesteckt <img src='http://mediaprojekte.de/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />   <br /> Ausserdem ist hier keine j&auml;hrliche Geb&uuml;hr von&nbsp; min. 1200$ f&auml;llig, die meiner Meinung nach f&uuml;r manche Sugar Funktionen noch nicht gerechtfertigt ist. </p>
<p>Das kann wieder in durchwachten N&auml;chten enden.. Schaut es euch einfach selber mal an es gibt nat&uuml;rlich auch Testlogins:</p>
<p><a href="http://vtiger.com/products/crm/demo.html" target="_blank" title="Demo Logins vTiger">&nbsp;http://www.vtiger.com/</a></p>
<p>&nbsp;</p>
<p>Bitte entschuldigt meine Wortwahl aber das is mal wieder<strong> echt COOL!!</strong></p>
<p> &nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://mediaprojekte.de/cms-systeme/vtiger_sugar_crm/sugarcrm-vs-vtiger/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
	</channel>
</rss>

