<?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>iTechLog &#187; OpenSource</title>
	<atom:link href="http://itechlog.com/tag/opensource/feed/" rel="self" type="application/rss+xml" />
	<link>http://itechlog.com</link>
	<description>Your source to IT solutions, interesting technology news and code snipets.</description>
	<lastBuildDate>Tue, 10 Jan 2012 17:06:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Cardsave error &#8220;transaction date/time expired&#8221;</title>
		<link>http://itechlog.com/code-snipets/2011/08/10/cardsave-error-transaction-datetime-expired/</link>
		<comments>http://itechlog.com/code-snipets/2011/08/10/cardsave-error-transaction-datetime-expired/#comments</comments>
		<pubDate>Wed, 10 Aug 2011 23:08:53 +0000</pubDate>
		<dc:creator>Alex Costa</dc:creator>
				<category><![CDATA[Code Snipets]]></category>
		<category><![CDATA[e-commerce]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[cardsave]]></category>
		<category><![CDATA[date_default_timezone_set()]]></category>
		<category><![CDATA[opencart]]></category>
		<category><![CDATA[OpenSource]]></category>
		<category><![CDATA[payment gateway]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://itechlog.com/?p=1071</guid>
		<description><![CDATA[<a href="http://itechlog.com/code-snipets/2011/08/10/cardsave-error-transaction-datetime-expired/" title="Cardsave error &quot;transaction date/time expired&quot;"></a>If you are using CardSave (UK Version) and you come across the following error: &#8220;This transaction cannot be processed. It was rejected because the passed transaction date/time has expired. Please press &#8220;Back&#8221; in your browser and resubmit the transaction.&#8221; It&#8217;s &#8230;<p class="read-more"><a href="http://itechlog.com/code-snipets/2011/08/10/cardsave-error-transaction-datetime-expired/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<a href="http://itechlog.com/code-snipets/2011/08/10/cardsave-error-transaction-datetime-expired/" title="Cardsave error &quot;transaction date/time expired&quot;"></a><p style="text-align: left;"><span style="font-size: small;"><img class="alignleft size-full wp-image-977" style="margin-left: 10px; margin-right: 10px;" title="php_logo" src="http://itechlog.com/wp-content/uploads/2011/01/php_logo.png" alt="" width="150" height="80" />If you are using CardSave (UK Version) and you come across the following error:</span></p>
<p style="text-align: left;"><span style="font-size: small;">&#8220;<strong>This transaction cannot be processed. It was rejected because the passed transaction date/time has expired. Please press &#8220;Back&#8221; in your browser and resubmit the transaction</strong>.&#8221;</span></p>
<p style="text-align: left;"><span style="font-size: small;">It&#8217;s caused by your server providing a different timezone to your CardSave Gateway. You need to setup your server/script time zone to UTC.  In PHP you can do this by simply adding this line to your script:  <strong>date_default_timezone_set(&#8216;UTC&#8217;);</strong></span></p>
<p style="text-align: left;"><span style="font-size: small;">For example, I was having a problem with the <a title="Cardsave for Opencart" href="http://www.opencart.com/index.php?route=extension/extension/info&amp;extension_id=449&amp;filter_search=cardsave&amp;sort=e.date_modified&amp;order=DESC" target="_blank">Cardsave(hosted) payment extension for OpenCart</a>.  If you are having the same problem do this:</span></p>
<ol style="text-align: left;">
<li><span style="font-size: small;">Open the file /catalog/controler/payment/cardsave_hosted.php</span></li>
<li><span style="font-size: small;">Find this line  <strong>$this-&gt;data['fields']['TransactionDateTime'] = (date(&#8220;Y-m-d H:i:s&#8221;).  &#8216; +00:00&#8242;);</strong>  (line 305 I think)</span></li>
<li><span style="font-size: small;">Just before that line add this : <strong> date_default_timezone_set(&#8216;UTC&#8217;); </strong></span></li>
<li><span style="font-size: small;">Upload file to server and you are sorted.</span></li>
</ol>
<p style="text-align: left;">
<p style="text-align: left;">

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/cardsave' rel='tag' target='_self'>cardsave</a>, <a class='technorati-link' href='http://technorati.com/tag/date_default_timezone_set%28%29' rel='tag' target='_self'>date_default_timezone_set()</a>, <a class='technorati-link' href='http://technorati.com/tag/e-commerce' rel='tag' target='_self'>e-commerce</a>, <a class='technorati-link' href='http://technorati.com/tag/opencart' rel='tag' target='_self'>opencart</a>, <a class='technorati-link' href='http://technorati.com/tag/OpenSource' rel='tag' target='_self'>OpenSource</a>, <a class='technorati-link' href='http://technorati.com/tag/payment+gateway' rel='tag' target='_self'>payment gateway</a>, <a class='technorati-link' href='http://technorati.com/tag/PHP' rel='tag' target='_self'>PHP</a></p>

<!-- end wp-tags-to-technorati -->
<h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li>August 5, 2010 -- <a href="http://itechlog.com/open-source/2010/08/05/opencart-simple-and-great-e-commerce-system/" title="Opencart simple and great e-commerce system">Opencart simple and great e-commerce system</a></li><li>January 31, 2011 -- <a href="http://itechlog.com/web-programming/2011/01/31/it-is-not-safe-to-rely-on-the-systems-timezone-settings/" title="It is not safe to rely on the system’s timezone settings">It is not safe to rely on the system’s timezone settings</a></li><li>May 20, 2009 -- <a href="http://itechlog.com/web-design/2009/05/20/gimp-tutorial-and-book/" title="GIMP Tutorial and book">GIMP Tutorial and book</a></li><li>May 13, 2009 -- <a href="http://itechlog.com/web-programming/2009/05/13/automatically-display-form-data-with-php/" title="Automatically display form data with PHP">Automatically display form data with PHP</a></li><li>April 14, 2009 -- <a href="http://itechlog.com/web-programming/2009/04/14/pdf-to-email-with-registration/" title="PDF to Email with registration">PDF to Email with registration</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://itechlog.com/code-snipets/2011/08/10/cardsave-error-transaction-datetime-expired/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GIMP Tutorial and book</title>
		<link>http://itechlog.com/web-design/2009/05/20/gimp-tutorial-and-book/</link>
		<comments>http://itechlog.com/web-design/2009/05/20/gimp-tutorial-and-book/#comments</comments>
		<pubDate>Wed, 20 May 2009 20:29:12 +0000</pubDate>
		<dc:creator>Alex Costa</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Books]]></category>
		<category><![CDATA[GIMP]]></category>
		<category><![CDATA[GNU]]></category>
		<category><![CDATA[OpenSource]]></category>

		<guid isPermaLink="false">http://itechlog.com/web-design/2009/05/20/gimp-tutorial-and-book/</guid>
		<description><![CDATA[<a href="http://itechlog.com/web-design/2009/05/20/gimp-tutorial-and-book/" title="GIMP Tutorial and book"></a>GIMP is the GNU Image Manipulation Program. It is a freely distributed piece of software for such tasks as photo retouching, image composition and image authoring. GIMP is a versatile graphics manipulation package and it works on Linux, Windows, Mac, &#8230;<p class="read-more"><a href="http://itechlog.com/web-design/2009/05/20/gimp-tutorial-and-book/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<a href="http://itechlog.com/web-design/2009/05/20/gimp-tutorial-and-book/" title="GIMP Tutorial and book"></a><p><img style="max-width: 800px; float: left; margin-top: 10px; margin-bottom: 10px; margin-right: 10px;" src="http://itechlog.com/wp-content/uploads/2009/05/paint-brush.jpg" alt="" width="116" height="174" /> <a href="http://www.gimp.org" target="_blank">GIMP is the GNU Image Manipulation Program</a>. It is a freely distributed piece of software for such tasks as photo retouching, image composition and image authoring. GIMP is a versatile graphics manipulation package and it works on Linux, Windows, Mac, OpenSolaris and FreeBSD. It is also available in many languages. The official GIMP Project website has a very good <a href="http://www.gimp.org/tutorials/" target="_blank">set of tutorials</a> divided into the following levels:  Beginner, Intermediate, Expert, Photo Editing, Web and Script Authoring.</p>
<p><strong></strong>If you prefer to take your reading away from the screen here are some book that can teach you a lot about this great image manipulation program.</p>
<p><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab" id="Player_64f81f74-8868-463c-8a75-6d27dc385312"  WIDTH="600px" HEIGHT="200px"><param NAME="movie" VALUE="http://ws.amazon.co.uk/widgets/q?ServiceVersion=20070822&#038;MarketPlace=GB&#038;ID=V20070822%2FGB%2Fcostafamily-21%2F8010%2F64f81f74-8868-463c-8a75-6d27dc385312&#038;Operation=GetDisplayTemplate"></param><param NAME="quality" VALUE="high"></param><param NAME="bgcolor" VALUE="#FFFFFF"></param><param NAME="allowscriptaccess" VALUE="always"><embed src="http://ws.amazon.co.uk/widgets/q?ServiceVersion=20070822&#038;MarketPlace=GB&#038;ID=V20070822%2FGB%2Fcostafamily-21%2F8010%2F64f81f74-8868-463c-8a75-6d27dc385312&#038;Operation=GetDisplayTemplate" id="Player_64f81f74-8868-463c-8a75-6d27dc385312" quality="high" bgcolor="#ffffff" name="Player_64f81f74-8868-463c-8a75-6d27dc385312" allowscriptaccess="always"  type="application/x-shockwave-flash" align="middle" height="200px" width="600px"></embed></param></object> <noscript><a HREF="http://ws.amazon.co.uk/widgets/q?ServiceVersion=20070822&#038;MarketPlace=GB&#038;ID=V20070822%2FGB%2Fcostafamily-21%2F8010%2F64f81f74-8868-463c-8a75-6d27dc385312&#038;Operation=NoScript">Amazon.co.uk Widgets</a></noscript></p>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/Books' rel='tag' target='_self'>Books</a>, <a class='technorati-link' href='http://technorati.com/tag/GIMP' rel='tag' target='_self'>GIMP</a>, <a class='technorati-link' href='http://technorati.com/tag/GNU' rel='tag' target='_self'>GNU</a>, <a class='technorati-link' href='http://technorati.com/tag/OpenSource' rel='tag' target='_self'>OpenSource</a>, <a class='technorati-link' href='http://technorati.com/tag/Tutorials' rel='tag' target='_self'>Tutorials</a></p>

<!-- end wp-tags-to-technorati -->
<h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li>August 10, 2011 -- <a href="http://itechlog.com/code-snipets/2011/08/10/cardsave-error-transaction-datetime-expired/" title="Cardsave error &#8220;transaction date/time expired&#8221;">Cardsave error &#8220;transaction date/time expired&#8221;</a></li><li>March 26, 2010 -- <a href="http://itechlog.com/itechlog-news/2010/03/26/books-for-sale-linux-shell-qmail-handbook-and-ssltls/" title="Books for sale &#8211; Linux Shell, Qmail Handbook and SSL/TLS">Books for sale &#8211; Linux Shell, Qmail Handbook and SSL/TLS</a></li><li>September 18, 2009 -- <a href="http://itechlog.com/easy-tips/2009/09/18/open-eps-files-on-gimp-for-windows/" title="Open .eps files on GIMP for Windows">Open .eps files on GIMP for Windows</a></li><li>January 14, 2009 -- <a href="http://itechlog.com/open-source/2009/01/14/openoffice-is-sick/" title="OpenOffice is sick">OpenOffice is sick</a></li><li>December 4, 2008 -- <a href="http://itechlog.com/web-programming/2008/12/04/search-engine-optimization-seo-in-php-book/" title="Search Engine Optimization  SEO in PHP (Book)">Search Engine Optimization  SEO in PHP (Book)</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://itechlog.com/web-design/2009/05/20/gimp-tutorial-and-book/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenOffice is sick</title>
		<link>http://itechlog.com/open-source/2009/01/14/openoffice-is-sick/</link>
		<comments>http://itechlog.com/open-source/2009/01/14/openoffice-is-sick/#comments</comments>
		<pubDate>Wed, 14 Jan 2009 10:08:22 +0000</pubDate>
		<dc:creator>Alex Costa</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Michael Meeks]]></category>
		<category><![CDATA[OpenOffice]]></category>
		<category><![CDATA[OpenSource]]></category>
		<category><![CDATA[Sun]]></category>

		<guid isPermaLink="false">http://itechlog.com/open-source/2009/01/14/openoffice-is-sick/</guid>
		<description><![CDATA[<a href="http://itechlog.com/open-source/2009/01/14/openoffice-is-sick/" title="OpenOffice is sick"></a>According to this article &#8220;Measuring the true success of Openoffice.org&#8221; by Michael Meeks, the beloved OpenOffice is sick, sick because of&#160; Sun. &#8220;&#8230;the statistics show a picture of slow disengagement by Sun, combined with a spectacular lack of growth in &#8230;<p class="read-more"><a href="http://itechlog.com/open-source/2009/01/14/openoffice-is-sick/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<a href="http://itechlog.com/open-source/2009/01/14/openoffice-is-sick/" title="OpenOffice is sick"></a><p><img style="border: 1px solid rgb(0, 0, 0); max-width: 800px; float: left; margin-top: 10px; margin-bottom: 10px; margin-right: 10px;" src="http://itechlog.com/wp-content/uploads/2009/01/openoffice-logo.png" height="104" width="168" />According to this article <a target="_blank" href="http://www.gnome.org/%7Emichael/blog/ooo-commit-stats-2008.html">&#8220;Measuring the true success of Openoffice.org</a>&#8221; by <a target="_blank" href="http://en.wikipedia.org/wiki/Michael_Meeks_%28software%29">Michael Meeks</a>, the beloved OpenOffice is sick, sick because of&nbsp; Sun. </p>
<p> <font color="#666666"><i>&#8220;&#8230;the statistics show a picture of slow disengagement by Sun, combined with a spectacular lack of growth in the developer community. In a healthy project we would expect to see a large number of volunteer developers involved, in addition &#8211; we would expect to see a large number of peer companies contributing to the common code pool; we do not see this in OpenOffice.org. Indeed, quite the opposite we <a href="http://www.gnome.org/%7Emichael/images/2008-09-29-active-both.png">appear</a> to have the lowest number of active developers on OO.o since records began: 24, this contrasts negatively with Linux&#8217;s recent low of 160+. Even spun in the most positive way, OO.o is at best stagnating from a development perspective.&#8221;&nbsp; (<small>extracted from the article  &#8220;Measuring the true success of Openoffice.org&#8221; by Michael Meeks</small>)</i><br /></font></p>
<p>The tight hold Sun has on OpenOffice makes it difficult for developers to to just jump on board and contribute. Contributing code requires that developers commit thier code&#8217;s rights over to Sun making it the sole owner of OO&#8217;s code-base. Less control from Sun and more freedom and power for the developers and the Opensource community appears to be the only way forward for the OpenOffice project.&nbsp; </p>
<p>Read in full: <a target="_blank" href="http://www.gnome.org/%7Emichael/blog/ooo-commit-stats-2008.html">&#8220;Measuring the true success of Openoffice.org</a>&#8221; by <a target="_blank" href="http://en.wikipedia.org/wiki/Michael_Meeks_%28software%29">Michael Meeks</a><br />Read also:&nbsp; <a href="http://blogs.zdnet.com/open-source/?p=3276" rel="bookmark" title="Permanent Link to What Meeks means by OpenOffice being sick">What Meeks means by OpenOffice being sick</a> at zdnet.com</p>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/Michael+Meeks' rel='tag' target='_self'>Michael Meeks</a>, <a class='technorati-link' href='http://technorati.com/tag/OpenOffice' rel='tag' target='_self'>OpenOffice</a>, <a class='technorati-link' href='http://technorati.com/tag/OpenSource' rel='tag' target='_self'>OpenSource</a>, <a class='technorati-link' href='http://technorati.com/tag/Sun' rel='tag' target='_self'>Sun</a></p>

<!-- end wp-tags-to-technorati -->
<h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li>April 21, 2009 -- <a href="http://itechlog.com/open-source/2009/04/21/oracle-to-own-mysql/" title="Oracle to own MySQL">Oracle to own MySQL</a></li><li>August 10, 2011 -- <a href="http://itechlog.com/code-snipets/2011/08/10/cardsave-error-transaction-datetime-expired/" title="Cardsave error &#8220;transaction date/time expired&#8221;">Cardsave error &#8220;transaction date/time expired&#8221;</a></li><li>August 12, 2010 -- <a href="http://itechlog.com/linux/2010/08/12/linuxcon-2010-just-for-fun-poll-results-explained/" title="LinuxCon 2010 Just for Fun Poll Results explained">LinuxCon 2010 Just for Fun Poll Results explained</a></li><li>May 20, 2009 -- <a href="http://itechlog.com/web-design/2009/05/20/gimp-tutorial-and-book/" title="GIMP Tutorial and book">GIMP Tutorial and book</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://itechlog.com/open-source/2009/01/14/openoffice-is-sick/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

