<?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>osCommerce</title>
	<atom:link href="http://blogs.oscommerce.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.oscommerce.com</link>
	<description>Open Source E-Commerce Solutions</description>
	<lastBuildDate>Fri, 19 Jun 2009 20:21:20 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Introducing Checkout by Amazon</title>
		<link>http://blogs.oscommerce.com/2009/06/19/introducing-checkout-by-amazon/</link>
		<comments>http://blogs.oscommerce.com/2009/06/19/introducing-checkout-by-amazon/#comments</comments>
		<pubDate>Fri, 19 Jun 2009 20:21:20 +0000</pubDate>
		<dc:creator>Amazon Payments Team</dc:creator>
				<category><![CDATA[Partners]]></category>
		<category><![CDATA[addons]]></category>
		<category><![CDATA[amazon]]></category>
		<category><![CDATA[payment]]></category>

		<guid isPermaLink="false">http://blogs.oscommerce.com/?p=291</guid>
		<description><![CDATA[Amazon Payments is proud to be a Corporate Sponsor of osCommerce! We look forward to enhancing the Checkout by Amazon solution with the osCommerce community for an even better customer buying and store owner selling experience.
Checkout by Amazon is a complete e-commerce checkout solution that provides your customers with the same secure and trusted checkout [...]]]></description>
			<content:encoded><![CDATA[<p><a href="https://payments.amazon.com/sdui/sdui/business?sn=cba/osCommerce&amp;apaysccid=AP_offer_osc_blog" target="_blank">Amazon Payments</a> is proud to be a Corporate Sponsor of osCommerce! We look forward to enhancing the Checkout by Amazon solution with the osCommerce community for an even better customer buying and store owner selling experience.</p>
<p>Checkout by Amazon is a complete e-commerce checkout solution that provides your customers with the same secure and trusted checkout experience available on Amazon.com today. It offers unique features including Amazon&#8217;s 1-Click®; and tools for businesses to manage shipping charges, sales tax, promotions, and post-sale activities including refunds, cancellations, and chargebacks.</p>
<p>You can now integrate Checkout by Amazon with your osCommerce based online store using the latest certified versions of our add-ons:</p>
<ul>
<li><a href="http://addons.oscommerce.com/info/6647" target="_blank">Checkout by Amazon (for osCommerce Online Merchant v2.2MS2 and v2.2RC1)</a></li>
<li><a href="http://addons.oscommerce.com/info/6591" target="_blank">Checkout by Amazon 2.1 (for osCommerce Online Merchant v2.2RC2)</a></li>
</ul>
<p><strong><span style="text-decoration: underline;">Free Processing Offer!</span></strong></p>
<p>We are pleased to offer <strong>free payment processing through September 30, 2009</strong> to businesses and organizations that begin accepting Amazon Payments using Checkout by Amazon and Amazon Simple Pay. <a href="http://www.amazonpayments.com/offer?apaysccid_AP_offer_osc_blog" target="_blank">If you haven’t signed up yet, learn more and sign up today. See details, terms and conditions of the offer here.</a></p>
<p><strong><span style="text-decoration: underline;">Free Webinar!</span></strong></p>
<p><a href="https://www1.gotomeeting.com/register/352672609" target="_blank"><strong>Checkout by Amazon: Inviting Amazon customers to shop on your site</strong></a></p>
<p><strong>Wednesday, July 1, 2009</strong></p>
<p>In this webinar we will introduce you to Checkout by Amazon. We will talk about the important features of Checkout by Amazon and demonstrate the customer experience. We will also highlight how you can use our osCommerce add-ons to integrate with Checkout by Amazon. If you are a merchant, a solution provider or a developer working with merchants, this webinar is for you.</p>
<p><a href="https://www1.gotomeeting.com/register/352672609" target="_blank">Register Now!</a></p>
<p>Feel free to contact us with questions/comments/feedback in our support channel on the osCommerce community support forums:</p>
<p><a href="http://forums.oscommerce.com/index.php?showforum=72" target="_blank">http://forums.oscommerce.com/index.php?showforum=72</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.oscommerce.com/2009/06/19/introducing-checkout-by-amazon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ensuring Database Integrity With Foreign Keys</title>
		<link>http://blogs.oscommerce.com/2009/06/18/ensuring-database-integrity-with-foreign-keys/</link>
		<comments>http://blogs.oscommerce.com/2009/06/18/ensuring-database-integrity-with-foreign-keys/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 11:06:07 +0000</pubDate>
		<dc:creator>Harald Ponce de Leon</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[osCommerce]]></category>

		<guid isPermaLink="false">http://blogs.oscommerce.com/?p=379</guid>
		<description><![CDATA[The database schema for osCommerce Online Merchant v3.0 has been updated to include foreign key relationships between related tables. This update allows MySQL to natively support foreign keys on InnoDB databases that are directly defined in the database schema, and uses a fallback mechanism for MyISAM databases where foreign key relationships are defined in a [...]]]></description>
			<content:encoded><![CDATA[<p>The database schema for osCommerce Online Merchant v3.0 has been updated to include foreign key relationships between related tables. This update allows MySQL to natively support foreign keys on InnoDB databases that are directly defined in the database schema, and uses a fallback mechanism for MyISAM databases where foreign key relationships are defined in a database table.</p>
<p>Foreign key relationships allows records to be linked together through multiple database tables, for example, linking products to categories. Until now, when a product was to be deleted using the Administration Tool, extra PHP code had to be written within the delete function to also delete entries in other database tables that shared a relationship with the product being deleted.</p>
<p>This is fine for standard installations where the relationships between database tables are known, however when add-ons create new database tables during installation, changes were required in core source code files to also perform database actions on the tables they created.</p>
<p>Now with foreign key relationships, changes to core source code files are no longer required and changes to the related database tables are performed natively on InnoDB databases or automatically through the database class for MyISAM databases. This cleans the codebase considerably and allows one simple query to take care of the whole database. For example:</p>
<p><code>delete from osc_products where products_id = 1</code></p>
<p>This one simple query now automatically takes care of deleting the product language definitions, product reviews, category assignments, special prices, shopping cart entries, and any other product table relationships without any additional queries or PHP code necessary.</p>
<p>The following foreign key constraints are supported for MyISAM databases for both <strong>ON UPDATE</strong> and <strong>ON DELETE</strong> operations:</p>
<ul>
<li><strong>CASCADE</strong>, automatically update or delete child records when a parent record is being updated or deleted (eg, delete all product related information when a product is being deleted)</li>
<li><strong>SET NULL</strong>, automatically sets the child record field value to null when a parent record is being updated or deleted (eg, clear the product manufacturer value when a manufacturer is being deleted)</li>
<li><strong>RESTRICT</strong>, prevents a parent record from being updated or deleted if child records depend on it (eg, don&#8217;t allow order status levels to be deleted if they are in use by orders)</li>
</ul>
<p>Add-On developers can take advantage of foreign keys by defining relationships directly in the database schema for InnoDB databases, and by entering relationships in the osc_fk_relationships table for MyISAM databases. Examples of foreign keys defined in the osc_fk_relationships table are:</p>
<p><img src="http://blogs.oscommerce.com/wp-content/uploads/2009/06/fk.gif" alt="fk" title="fk" width="624" height="99" class="aligncenter size-full wp-image-392" /></p>
<p>The osc_fk_relationships table is only used for MyISAM databases and is used by the database class to check on the defined constraints when <strong>UPDATE</strong> and <strong>DELETE</strong> queries are being performed.</p>
<p>There are currently 68 foreign key relationships defined that will be introduced in the osCommerce Online Merchant v3.0 Beta 1 release.</p>
<p>The changes are currently available in my development branch at GitHub and will be pushed to the main development branch after further testing and code clean up has been performed. My branch is available at:</p>
<p><a href="http://github.com/haraldpdl/oscommerce/" target="_blank">http://github.com/haraldpdl/oscommerce/</a></p>
<p>Documentation on MySQL&#8217;s foreign key implementation can be found here:</p>
<p><a href="http://dev.mysql.com/doc/refman/5.0/en/innodb-foreign-key-constraints.html" target="_blank">http://dev.mysql.com/doc/refman/5.0/en/innodb-foreign-key-constraints.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.oscommerce.com/2009/06/18/ensuring-database-integrity-with-foreign-keys/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Working with the Development Repository on Github</title>
		<link>http://blogs.oscommerce.com/2009/03/27/working-with-the-development-repository-on-github/</link>
		<comments>http://blogs.oscommerce.com/2009/03/27/working-with-the-development-repository-on-github/#comments</comments>
		<pubDate>Fri, 27 Mar 2009 14:18:03 +0000</pubDate>
		<dc:creator>Harald Ponce de Leon</dc:creator>
				<category><![CDATA[osCommerce]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[github]]></category>
		<category><![CDATA[screencast]]></category>

		<guid isPermaLink="false">http://blogs.oscommerce.com/?p=279</guid>
		<description><![CDATA[Together with the osCommerce Online Merchant v3.0 Alpha 5 release, we have migrated the development repository from a centralized Subversion server to decentralized Git repositories. This replaces the need to access a central server, and requiring the permissions to do so, to allowing you to instantly clone or fork the official development repository to your [...]]]></description>
			<content:encoded><![CDATA[<p>Together with the osCommerce Online Merchant v3.0 Alpha 5 release, we have migrated the development repository from a centralized Subversion server to decentralized Git repositories. This replaces the need to access a central server, and requiring the permissions to do so, to allowing you to instantly clone or fork the official development repository to your local development machine. This gives you the complete history of the repository on your local machine where you can start committing your changes to and to share them with others.</p>
<p>The official Git development repository is hosted on <a href="http://www.github.com/osCommerce">Github</a> where developers can network with each other and share the changes they have made.</p>
<p>A screencast presentation is available to show you how easy it is to fork the official repository to make your changes to, and how these changes can be merged back to the official repository.</p>
<p><embed src="http://blip.tv/play/g4M39oN1AA" type="application/x-shockwave-flash" width="640" height="430" allowscriptaccess="always" allowfullscreen="true"></embed></p>
<p>This is our first screencast presentation and look forward to your feedback. Have fun!</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.oscommerce.com/2009/03/27/working-with-the-development-repository-on-github/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Error Reporting in osCommerce Online Merchant v3.0 Alpha 5</title>
		<link>http://blogs.oscommerce.com/2009/03/18/error-reporting-in-oscommerce-online-merchant-v30-alpha-5/</link>
		<comments>http://blogs.oscommerce.com/2009/03/18/error-reporting-in-oscommerce-online-merchant-v30-alpha-5/#comments</comments>
		<pubDate>Wed, 18 Mar 2009 14:04:31 +0000</pubDate>
		<dc:creator>Harald Ponce de Leon</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[osCommerce]]></category>
		<category><![CDATA[error logging]]></category>

		<guid isPermaLink="false">http://blogs.oscommerce.com/?p=270</guid>
		<description><![CDATA[osCommerce Online Merchant v3.0 Alpha 5 introduces a strict level of error reporting directly in the core framework. This is performed by setting the PHP error reporting setting to E_ALL and by setting the MySQL sql_mode to STRICT_ALL_TABLES at runtime.
All warnings and errors are logged in a text file located in the &#8220;work&#8221; directory and [...]]]></description>
			<content:encoded><![CDATA[<p>osCommerce Online Merchant v3.0 Alpha 5 introduces a strict level of error reporting directly in the core framework. This is performed by setting the PHP error reporting setting to <a href="http://www.php.net/manual/en/errorfunc.constants.php">E_ALL</a> and by setting the MySQL sql_mode to <a href="http://dev.mysql.com/doc/refman/5.0/en/server-sql-mode.html">STRICT_ALL_TABLES</a> at runtime.</p>
<p>All warnings and errors are logged in a text file located in the &#8220;work&#8221; directory and can be easily viewed in the Administration Tool -> Tools -> Error Log application and summary module.</p>
<p>This is the only Administration Tool application where it&#8217;s a good sign when it doesn&#8217;t show anything. It gives a nice feeling knowing that any sort of warning or error in the core framework has been checked for, from uninitialized PHP variables to problems with MySQL queries.</p>
<p>Setting the error reporting at such strict levels ensures a high quality of coding standards is kept in the core framework and passes this along to add-ons that are developed and installed.</p>
<p>This makes it easier for developers working on addons where they can see where warnings and errors are occuring in what they have been working on, and motivates them to fix the problems to improve the quality of the finalized work.</p>
<p>A configuration parameter will be introduced in v3.0 Beta 1 to disable the output of PHP warnings and errors on the catalog frontend. This allows the output of warnings and errors to occur under development environments, and to be disabled on production servers.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.oscommerce.com/2009/03/18/error-reporting-in-oscommerce-online-merchant-v30-alpha-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Social Network Section on osCommerce Website</title>
		<link>http://blogs.oscommerce.com/2009/03/17/new-social-network-section-on-oscommerce-website/</link>
		<comments>http://blogs.oscommerce.com/2009/03/17/new-social-network-section-on-oscommerce-website/#comments</comments>
		<pubDate>Tue, 17 Mar 2009 07:56:57 +0000</pubDate>
		<dc:creator>Nick Weisser</dc:creator>
				<category><![CDATA[osCommerce]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[xing]]></category>

		<guid isPermaLink="false">http://blogs.oscommerce.com/?p=264</guid>
		<description><![CDATA[According to the New York Times 
Twitter is one of the fastest-growing phenomena on the Internet
with 25 million users already. Some osCommerce team members are also actively using Twitter to update others on what they&#8217;re currently doing and working on. Although it&#8217;s not always of general interest what others might be eating or drinking, I [...]]]></description>
			<content:encoded><![CDATA[<p>According to the New York Times <a title="Twitter" href="http://twitter.com" target="_blank"></a></p>
<blockquote><p><a title="Twitter" href="http://twitter.com" target="_blank">Twitter</a> is one of the fastest-growing phenomena on the Internet</p></blockquote>
<p>with 25 million users already. Some osCommerce team members are also actively using Twitter to update others on what they&#8217;re currently doing and working on. Although it&#8217;s not always of general interest what others might be eating or drinking, I personally find it very inspiring to see what Harald is working on and to know it before everyone else does.</p>
<p>On our new <a title="osCommerce Social Network Section" href="http://www.oscommerce.com/about/social" target="_blank">Social Network Section</a> you can see what the osCommerce team members are currently up to and you are welcome to follow them on Twitter. If you prefer to not drown yourself in too much information or think that your privacy is more important than following the social web trends and rather get the occasional news message, you can just subscribe to <a title="osCommerce Blog RSS Feed" href="http://blogs.oscommerce.com/feed/" target="_blank">this blog&#8217;s RSS feed</a> <img src='http://blogs.oscommerce.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>The <a title="osCommerce Team Page" href="http://www.oscommerce.com/about/team" target="_blank">osCommerce team page</a> has also been updated with links to the members&#8217; Twitter profiles.</p>
<p>There are yet two other platforms where you can connect with the osCommerce project which you might not have been aware of:</p>
<ul>
<li><a title="osCommerce Group on XING" href="https://www.xing.com/net/oscommerce/" target="_blank">osCommerce Group on XING</a></li>
<li><a title="osCommerce Group on Facebook" href="http://www.facebook.com/group.php?gid=4872216729" target="_blank">osCommerce Group on Facebook</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blogs.oscommerce.com/2009/03/17/new-social-network-section-on-oscommerce-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Minimum Requirements for osCommerce Online Merchant v3.0 Alpha 5</title>
		<link>http://blogs.oscommerce.com/2009/03/16/minimum-requirements-for-oscommerce-online-merchant-v30-alpha-5/</link>
		<comments>http://blogs.oscommerce.com/2009/03/16/minimum-requirements-for-oscommerce-online-merchant-v30-alpha-5/#comments</comments>
		<pubDate>Mon, 16 Mar 2009 01:04:43 +0000</pubDate>
		<dc:creator>Harald Ponce de Leon</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[osCommerce]]></category>

		<guid isPermaLink="false">http://blogs.oscommerce.com/?p=260</guid>
		<description><![CDATA[osCommerce Online Merchant v3.0 Alpha 5 has taken a big step forward in utilizing newer PHP and MySQL features. The minimum requirements to run v3.0 Alpha 5 are PHP v5.2.0+ and MySQL v4.1.13+ or v5.0.7+. A further requirement is the mysqli extension in PHP as the normal mysql database class was removed from v3.0 Alpha [...]]]></description>
			<content:encoded><![CDATA[<p>osCommerce Online Merchant v3.0 Alpha 5 has taken a big step forward in utilizing newer PHP and MySQL features. The minimum requirements to run v3.0 Alpha 5 are PHP v5.2.0+ and MySQL v4.1.13+ or v5.0.7+. A further requirement is the mysqli extension in PHP as the normal mysql database class was removed from v3.0 Alpha 5.</p>
<p>Both <a href="http://www.php.net/manual/en/mysqli.overview.php">PHP</a> and <a href="http://forge.mysql.com/wiki/Which_PHP_Driver_for_MySQL_should_I_use">MySQL</a> highly recommend the use of the newer mysqli extension over the older mysql extension.</p>
<p>It&#8217;s been <a href="http://forums.oscommerce.com/index.php?s=&#038;showtopic=331314&#038;view=findpost&#038;p=1380316">reported</a> that there are still service providers using MySQL v5.0.67. This is actually fine as it is a much newer version than the minimum requirement of v5.0.7.</p>
<p>To clarify the <a href="http://dev.mysql.com/doc/refman/5.1/en/choosing-version.html">MySQL versioning scheme</a>, the third number in the version string (&#8221;7&#8243;) is incremented for each new release in the release level.</p>
<p>MySQL v5.0.7 was actually a beta released on the <a href="http://lists.mysql.com/announce/289">15th June 2005</a>, and v5.0.67 was released on the <a href="http://lists.mysql.com/announce/542">8th August 2008</a>.</p>
<p>There have also been some reports that some service providers are still using PHP v5.1.6. RedHat Enterprise Linux and CentOS are vendors still using PHP v5.1.6. This is unfortunate as it does not meet the minimum PHP v5.2.0 requirement to install and use osCommerce Online Merchant v3.0 Alpha 5.</p>
<p>PHP v5.2.0 was released on the 2nd November 2006.</p>
<p>The <a href="http://forums.oscommerce.com/index.php?showtopic=331276">first reports</a> of v3.0 Alpha 5 not running properly was due to the use of PHP v5.1.6 which does not contain the <a href="http://www.php.net/json_encode">json_encode()</a> function introduced in PHP v5.2.0. This function is used heavily in the Administration Tool with the new dynamic table listing and live search features.</p>
<p>A <a href="http://www.boutell.com/scripts/jsonwrapper.html">compatibility function</a> exists that might be the saviour to the json_encode() problem for earlier PHP v5.X versions. If you are interested in testing this out, feel free to <a href="https://github.com/osCommerce/oscommerce/tree">fork osCommerce on Github</a> and report back of your findings.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.oscommerce.com/2009/03/16/minimum-requirements-for-oscommerce-online-merchant-v30-alpha-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>osCommerce Online Merchant v3.0 Alpha 5 Pre-Release Notes</title>
		<link>http://blogs.oscommerce.com/2009/03/07/oscommerce-online-merchant-v30-alpha-5-pre-release-notes/</link>
		<comments>http://blogs.oscommerce.com/2009/03/07/oscommerce-online-merchant-v30-alpha-5-pre-release-notes/#comments</comments>
		<pubDate>Sat, 07 Mar 2009 00:46:55 +0000</pubDate>
		<dc:creator>Harald Ponce de Leon</dc:creator>
				<category><![CDATA[osCommerce]]></category>

		<guid isPermaLink="false">http://blogs.oscommerce.com/?p=214</guid>
		<description><![CDATA[osCommerce Online Merchant v3.0 Alpha 5 was scheduled for release by the end of February and has been postponed to ensure the quality of the release. It will now be released on Wednesday the 11th of March. This release also brings in a new roadmap and release strategy for the v3.x series.
Our focus has changed [...]]]></description>
			<content:encoded><![CDATA[<p>osCommerce Online Merchant v3.0 Alpha 5 was scheduled for release by the end of February and has been postponed to ensure the quality of the release. It will now be released on Wednesday the 11th of March. This release also brings in a new roadmap and release strategy for the v3.x series.</p>
<p>Our focus has changed with this release from implementing additional features into the core to concentrating on the framework and to add the features to future releases. This allows v3.0 to be released sooner with a stable framework, and allows a much faster release cycle for new features compared to the previous &#8220;release every 6 months&#8221; release strategy.</p>
<p>This release is a stable production-ready release and will be the first supported release in the v3.x series. This release is still marked as an Alpha release due to framework changes that are still planned. We therefore recommend the installation of this release to those that are performing it themselves, and for hosting and service providers to wait until the final release of v3.0 before making it available to their customers.</p>
<p>The community add-ons site will be accepting uploads for this release and discussion channels will be available on the community support forums.</p>
<p>The v2.2 -&gt; v3.0 Alpha 5 migration tool will be made available by the end of March for existing installations to use, and is only recommended to those that will be updating their installations leading up to the final v3.0 release.</p>
<p>The roadmap for v3.0 is now:</p>
<p><strong>v3.0 Alpha 5</strong></p>
<ul>
<li>Product Attributes Implementation</li>
<li>Dynamic Table Listings (Administration Tool)</li>
<li>Live Search (Administration Tool)</li>
<li>Administration Tool sections now self-contained Applications</li>
<li>Error Logging; both PHP and MySQL errors and warnings now logged (forced runtime usage of PHP E_ALL and MySQL STRICT_ALL_TABLES)</li>
<li>Stabilized Framework</li>
<li>Usage of JSON for RPC calls</li>
<li>Inclusion of jQuery v1.3.2 and jQuery UI v1.6rc6</li>
</ul>
<p><strong>v3.0 Beta 1</strong></p>
<ul>
<li>HTML E-Mails</li>
<li>Purchase Without Account</li>
<li>Frozen Framework</li>
<li>Updated Frontend/GUI</li>
<li>Upgrade from v2.2 and v3.0 Alpha 5</li>
</ul>
<p><strong>v3.0</strong></p>
<ul>
<li>Bugfixes</li>
<li>Finalize Updated Frontend/GUI</li>
<li>Documentation</li>
<li>Certified Modules</li>
<li>Upgrade from v2.2 and v3.0 Beta 1</li>
</ul>
<p><strong>v3.1</strong></p>
<ul>
<li>Backup/Import/Export Features</li>
</ul>
<p><strong>v3.2</strong></p>
<ul>
<li>Gift Vouchers and Coupons</li>
</ul>
<p>The v3.0 Alpha 5 release will also be the first osCommerce Online Merchant release using Git to attract an even greater wave of developers to help with add-ons and core framework improvements. Git is a distributed version control system which allows developers to clone and create branches on their own local development machines. A discussion channel will be made available on the community support forums to manage the discussions on clones, patches, and keeping up to date with everyones changes.</p>
<p>The Git development repository is hosted at:</p>
<p><a href="http://github.com/osCommerce/oscommerce/">http://github.com/osCommerce/oscommerce/</a></p>
<p>Developers, feel free to fork the git master branch now and keep up to date with the commits leading up to the release. Be ready to show the world your creativity in making osCommerce Online Merchant an even better e-commerce solution <img src='http://blogs.oscommerce.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.oscommerce.com/2009/03/07/oscommerce-online-merchant-v30-alpha-5-pre-release-notes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PayPal Promotion for UK Merchants</title>
		<link>http://blogs.oscommerce.com/2008/03/14/win-no-paypal-fees/</link>
		<comments>http://blogs.oscommerce.com/2008/03/14/win-no-paypal-fees/#comments</comments>
		<pubDate>Fri, 14 Mar 2008 10:39:32 +0000</pubDate>
		<dc:creator>John Fitchett</dc:creator>
				<category><![CDATA[Partners]]></category>

		<guid isPermaLink="false">http://blogs.oscommerce.com/2008/03/14/win-no-paypal-fees/</guid>
		<description><![CDATA[PayPal are pleased to offer this exclusive promotion to UK osCommerce merchants.  Sign up to Website Payments Pro or Express Checkout by the 7th June 2008 and  you could be in with a chance of winning one of 10 prizes allowing you to pay no  monthly fees or transactional fees for three [...]]]></description>
			<content:encoded><![CDATA[<p>PayPal are pleased to offer this exclusive promotion to UK osCommerce merchants.  Sign up to Website Payments Pro or Express Checkout by the 7th June 2008 and  you could be in with a chance of winning one of 10 prizes allowing you to pay no  monthly fees or transactional fees for three months with PayPal!</p>
<p>Simply call 0800 358 9450 and quote osCommerce. (<a title="PayPal offer to osCommerce customers - Terms and Conditions" href="https://www.paypal-marketing.co.uk/legal/cart_promotion/oscommerce.htm" target="_blank">Terms and Conditions</a>)</p>
<p><a title="osCommerce Online Merchant" href="http://www.oscommerce.com/solutions/oscommerce">osCommerce V2.2RC2a</a> comes with the PayPal modules as default payment options, including Website Payments Standard, Website Payments Pro (UK &amp; US) and Express Checkout (as a stand alone option).  These new modules can also be downloaded as <a title="PayPal Community Add-Ons" href="http://addons.oscommerce.com/service/paypal">Add-Ons</a> for osCommerce merchants running version 2.2MS2 and above.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.oscommerce.com/2008/03/14/win-no-paypal-fees/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Community Add-Ons Site</title>
		<link>http://blogs.oscommerce.com/2007/09/22/new-community-add-ons-site/</link>
		<comments>http://blogs.oscommerce.com/2007/09/22/new-community-add-ons-site/#comments</comments>
		<pubDate>Sat, 22 Sep 2007 01:52:25 +0000</pubDate>
		<dc:creator>Harald Ponce de Leon</dc:creator>
				<category><![CDATA[osCommerce]]></category>

		<guid isPermaLink="false">http://blogs.oscommerce.com/2007/09/22/new-community-add-ons-site/</guid>
		<description><![CDATA[The new community add-ons site is now live which aims to replace the current contributions section on the support site by providing additional features to help developers maintain their add-on packages.
The new site will be rolled out in 3 stages with the first stage contemplating the existing contributions section. In addition, community members and developers [...]]]></description>
			<content:encoded><![CDATA[<p>The new community add-ons site is now live which aims to replace the current contributions section on the support site by providing additional features to help developers maintain their add-on packages.</p>
<p>The new site will be rolled out in 3 stages with the first stage contemplating the existing contributions section. In addition, community members and developers can help clean the structure of add-on packages by reporting uploads to be removed.</p>
<p>The following changes are planned for the second and third stages of updating the new site:</p>
<p>2nd Stage Updates:</p>
<ul>
<li>register_globals compatibility flag for 2.2-RC1 and 2.2-Final installations</li>
<li>Maintainers can assign their add-ons as public or private to allow or disallow additional uploads from other community members</li>
<li>If an add-on is private, maintainers can assign other community members as maintainers who are allowed to upload files to the package</li>
</ul>
<p>3rd Stage Updates:</p>
<ul>
<li>Allow maintainers to edit descriptions</li>
<li>Allow maintainers to link their uploads to a forum topic (for support)</li>
<li>Allow maintainers to upload screenshots of the add-on in action</li>
<li>Allow maintainers to link to other add-ons as a &#8220;related&#8221; feature</li>
<li>Allow community members to adopt an inactive add-on</li>
</ul>
<p>The new community add-ons site can be reached at:</p>
<p><a href="http://addons.oscommerce.com">http://addons.oscommerce.com</a></p>
<p>We look forward to rolling out the additional features in the coming weeks and look forward to the additional suggestions the community has for improving the experience of finding, downloading, and contributing additional add-on packages.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.oscommerce.com/2007/09/22/new-community-add-ons-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introducing Product Attributes</title>
		<link>http://blogs.oscommerce.com/2007/09/03/introducing-product-attributes/</link>
		<comments>http://blogs.oscommerce.com/2007/09/03/introducing-product-attributes/#comments</comments>
		<pubDate>Mon, 03 Sep 2007 21:16:36 +0000</pubDate>
		<dc:creator>Harald Ponce de Leon</dc:creator>
				<category><![CDATA[osCommerce]]></category>

		<guid isPermaLink="false">http://blogs.oscommerce.com/2007/09/03/introducing-product-attributes/</guid>
		<description><![CDATA[Although the product attributes implementation has been replaced with the newer Product Variants feature, a new feature of the same title is being introduced to 3.0 Alpha 5 which deals with non-core related product data with a flexible and modular implementation.
This allows modules to be created to define new data parameters for a product which [...]]]></description>
			<content:encoded><![CDATA[<p>Although the product attributes implementation has been replaced with the newer Product Variants feature, a new feature of the same title is being introduced to 3.0 Alpha 5 which deals with non-core related product data with a flexible and modular implementation.</p>
<p>This allows modules to be created to define new data parameters for a product which can easily be accessed via its module code.</p>
<p>Once a product attribute module has been installed via the Administration Tool (in the same manner payment and shipping modules are installed), its field is automatically added to the edit product page where the module controls the presentation of having its value defined.</p>
<p>This allows add-ons to be installed that add data fields to the product without the need to modify the edit product page in order to save the data in the database.</p>
<p>A minor change to the database class has also been performed to automatically bind the database table names in SQL queries which allows any database table to be accessed without the need to define it first in the includes/database_tables.php file. (This file will be removed in the 3.0 release)</p>
<p>Here is a short QuickTime movie showing the new Product Attributes feature with the following attribute modules:</p>
<p>1) Date Available (javascript controlled input field)<br />
2) Manufacturer (pull down menu)<br />
3) Shipping Availability (pull down menu)</p>
<p align="center"><a id="p208" href="http://blogs.oscommerce.com/wp-content/uploads/2007/09/osc30a5attributes.mov"><img id="image209" src="http://blogs.oscommerce.com/wp-content/uploads/2007/09/osc30a5attributes.jpg" alt="osCommerce Online Merchant Product Attributes QuickTime Movie" /></a><br /><b><i>osCommerce Online Merchant Product Attributes QuickTime Movie; 1.1MB</i></b></p>
<p>The product information page on the store front-end has also been updated to allow the dynamic product variant combination values to control certain data on the page, such as the product price and the product model.</p>
<p align="center"><img id="image210" src="http://blogs.oscommerce.com/wp-content/uploads/2007/09/osc30a5productinfo.jpg" alt="osCommerce Online Merchant Product Info Page" /><br /><b><i>osCommerce Online Merchant Product Info Page</i></b></p>
<p>The introduction of the new Product Attributes feature is currently defined for master products only, which product variants will use, and will be definable at the product variants level once the edit product page has been redesigned to handle the presentation of the data.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.oscommerce.com/2007/09/03/introducing-product-attributes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://blogs.oscommerce.com/wp-content/uploads/2007/09/osc30a5attributes.mov" length="1136902" type="video/quicktime" />
		</item>
	</channel>
</rss>
