<?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>osCommerceCoders.com</title>
	<atom:link href="http://www.oscommercecoders.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.oscommercecoders.com</link>
	<description>Affordable end to end oscommerce solutions with Search Engine Optimization</description>
	<lastBuildDate>Thu, 11 Mar 2010 03:39:32 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Shipping and Payment modules not saving in store admin</title>
		<link>http://www.oscommercecoders.com/shipping-and-payment-modules-not-saving-in-store-admin/</link>
		<comments>http://www.oscommercecoders.com/shipping-and-payment-modules-not-saving-in-store-admin/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 03:39:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[oScommerce Issues]]></category>
		<category><![CDATA[osCommerce Tips]]></category>

		<guid isPermaLink="false">http://www.oscommercecoders.com/?p=124</guid>
		<description><![CDATA[This is a known bug in the latest osCommerce 060817 release and has to  do with the modules not refreshing with udated changes in the admin.
This fix has worked for several users:
1. Open the catalog/admin/includes/functions/compatibility.php.
2. At the end of the “do_magic_quotes_gpc” routine, add the following  code
reset($ar);
It will end up looking like this:
function do_magic_quotes_gpc(&#38;$ar) [...]]]></description>
			<content:encoded><![CDATA[<p>This is a known bug in the latest osCommerce 060817 release and has to  do with the modules not refreshing with udated changes in the admin.</p>
<p>This fix has worked for several users:<br />
1. Open the catalog/admin/includes/functions/compatibility.php.<br />
2. At the end of the “do_magic_quotes_gpc” routine, add the following  code</p>
<pre>reset($ar);</pre>
<p>It will end up looking like this:</p>
<pre>function do_magic_quotes_gpc(&amp;$ar) {
if (!is_array($ar)) return false;
while (list($key, $value) = each($ar)) {
if (is_array($ar[$key])) {
do_magic_quotes_gpc($ar[$key]);
} else {
$ar[$key] = addslashes($value);
}
}
reset($ar);
}</pre>
<p>3.  Do the same for the compatibility.php file located in  catalog/includes/functions/compatibility.php.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.oscommercecoders.com/shipping-and-payment-modules-not-saving-in-store-admin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fatal error: Call to undefined function tep_date_raw()</title>
		<link>http://www.oscommercecoders.com/fatal-error-call-to-undefined-function-tep_date_raw/</link>
		<comments>http://www.oscommercecoders.com/fatal-error-call-to-undefined-function-tep_date_raw/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 18:12:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[oScommerce Issues]]></category>
		<category><![CDATA[oScommerce Upgrade]]></category>

		<guid isPermaLink="false">http://www.oscommercecoders.com/?p=122</guid>
		<description><![CDATA[This means that the function is not defined in the store files or is defined by the store is not getting the file loaded.
this happens in badly customized templates of oscommerce.
quick fix is to delete the functions in the language files in english.php, german.php etc and then define the function in includes/functions/general.php so that is [...]]]></description>
			<content:encoded><![CDATA[<p>This means that the function is not defined in the store files or is defined by the store is not getting the file loaded.</p>
<p>this happens in badly customized templates of oscommerce.</p>
<p>quick fix is to delete the functions in the language files in english.php, german.php etc and then define the function in includes/functions/general.php so that is loads all the time irrespective of the language file selected.</p>
<p>If you need support in fixing it you can use the contact us form to get in touch with us.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.oscommercecoders.com/fatal-error-call-to-undefined-function-tep_date_raw/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>oscommerce php 5.3 upgrade services</title>
		<link>http://www.oscommercecoders.com/oscommerce-php-5-3-upgrade-services/</link>
		<comments>http://www.oscommercecoders.com/oscommerce-php-5-3-upgrade-services/#comments</comments>
		<pubDate>Fri, 19 Feb 2010 10:57:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[oScommerce Upgrade]]></category>

		<guid isPermaLink="false">http://www.oscommercecoders.com/?p=115</guid>
		<description><![CDATA[these are the steps for oscommerce upgrade to make it work with php 5.3

 Replace ereg functions with preg functions for OSC-999
 Replace ereg functions with preg functions for OSC-999
 Replace split function with preg_split and explode functions for OSC-999
 Commit cleanup and fix some warnings in phplot and typo in banners_infobox  for OSC-999
 [...]]]></description>
			<content:encoded><![CDATA[<p>these are the steps for oscommerce upgrade to make it work with php 5.3</p>
<ul class="bbc">
<li> <a rel="nofollow" class="bbc_url" title="External link" rel="nofollow" href="http://github.com/osCommerce/oscommerce2/commit/79c601a7b3ee87943b92a5e6d77ce02480b49ffe">Replace ereg functions with preg functions for OSC-999</a></li>
<li> <a rel="nofollow" class="bbc_url" title="External link" rel="nofollow" href="http://github.com/osCommerce/oscommerce2/commit/88d550f392d86c02d2fe16d0b93f1de8aa6a6770">Replace ereg functions with preg functions for OSC-999</a></li>
<li> <a rel="nofollow" class="bbc_url" title="External link" rel="nofollow" href="http://github.com/osCommerce/oscommerce2/commit/1bfed2f6bf0e9c1c0ce4b160bce1e881cc6e6ef8">Replace split function with preg_split and explode functions for OSC-999</a></li>
<li> <a rel="nofollow" class="bbc_url" title="External link" rel="nofollow" href="http://github.com/osCommerce/oscommerce2/commit/15101263fa27b523139b405f99b1613c71a8e2c1">Commit cleanup and fix some warnings in phplot and typo in banners_infobox  for OSC-999</a></li>
<li> <a rel="nofollow" class="bbc_url" title="External link" rel="nofollow" href="http://github.com/osCommerce/oscommerce2/commit/bc2bcd9b1bd2148bf852409b3843543555bc01e2">Fix ereg-&gt;preg updates</a></li>
</ul>
<p>if you need your oscommerce store to make it work with php5.3 , you can use the contact us form to get in touch with us or call us</p>
<p>A nominal fee of 150USD for the upgrade of the core version of oscommerce. upgradation of other custom features and contributions for php5.3 compatible is extra.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.oscommercecoders.com/oscommerce-php-5-3-upgrade-services/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Spam Emails Being Sent from oscommerce</title>
		<link>http://www.oscommercecoders.com/spam-emails-being-sent-from-oscommerce/</link>
		<comments>http://www.oscommercecoders.com/spam-emails-being-sent-from-oscommerce/#comments</comments>
		<pubDate>Thu, 24 Dec 2009 20:39:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[oScommerce Security]]></category>

		<guid isPermaLink="false">http://www.oscommercecoders.com/?p=111</guid>
		<description><![CDATA[customer database are being sent spam emails from the osCommerce store.
Many oscommerce stores which is not secure are having this issue
Solution
Passoword protect with htaccess
http://code.google.com/p/oscmax2/source/diff?spec=svn169&#38;r=169&#38;format=side&#38;path=/trunk/catalog/admin/includes/application_top.php
For a nominal fee of 50 usd we will secure the site for spam emails from oscommerce store
]]></description>
			<content:encoded><![CDATA[<p>customer database are being sent spam emails from the osCommerce store.</p>
<p>Many oscommerce stores which is not secure are having this issue</p>
<p>Solution</p>
<p>Passoword protect with htaccess</p>
<p>http://code.google.com/p/oscmax2/source/diff?spec=svn169&amp;r=169&amp;format=side&amp;path=/trunk/catalog/admin/includes/application_top.php</p>
<p>For a nominal fee of <strong>50 usd</strong> we will secure the site for spam emails from oscommerce store</p>
]]></content:encoded>
			<wfw:commentRss>http://www.oscommercecoders.com/spam-emails-being-sent-from-oscommerce/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fatal error: Class &#8216;httpClient&#8217; not found in /home/xxxxxxx/public_html/myshop/includes/modules/shipping/ups.php on line 265</title>
		<link>http://www.oscommercecoders.com/fatal-error-class-httpclient-not-found-in-homexxxxxxxpublic_htmlmyshopincludesmodulesshippingups-php-on-line-265/</link>
		<comments>http://www.oscommercecoders.com/fatal-error-class-httpclient-not-found-in-homexxxxxxxpublic_htmlmyshopincludesmodulesshippingups-php-on-line-265/#comments</comments>
		<pubDate>Fri, 30 Oct 2009 10:34:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[oScommerce Issues]]></category>

		<guid isPermaLink="false">http://www.oscommercecoders.com/?p=108</guid>
		<description><![CDATA[Fatal error: Class &#8216;httpClient&#8217; not found in /home/xxxxxx/public_HTML/catalog/includes/modules/shipping/ups.php on line 265
To solve this issue in ups module
Find this at line 265:
$http = new httpClient();
if ($http-&#62;Connect(&#8216;www.ups.com&#8217;, 80)) {
$http-&#62;addHeader(&#8216;Host&#8217;, &#8216;www.ups.com&#8217;);
$http-&#62;addHeader(&#8216;User-Agent&#8217;, &#8216;osCommerce&#8217;);
$http-&#62;addHeader(&#8216;Connection&#8217;, &#8216;Close&#8217;);
And replace with this:
if (!class_exists(&#8216;httpClient&#8217;)) {
include(&#8216;includes/classes/http_client.php&#8217;);
}
$http = new httpClient();
if ($http-&#62;Connect(&#8216;www.ups.com&#8217;, 80)) {
$http-&#62;addHeader(&#8216;Host&#8217;, &#8216;www.ups.com&#8217;);
$http-&#62;addHeader(&#8216;User-Agent&#8217;, &#8216;osCommerce&#8217;);
$http-&#62;addHeader(&#8216;Connection&#8217;, &#8216;Close&#8217;);
]]></description>
			<content:encoded><![CDATA[<p>Fatal error: Class &#8216;httpClient&#8217; not found in /home/xxxxxx/public_HTML/catalog/includes/modules/shipping/ups.php on line 265<br />
To solve this issue in ups module</p>
<p>Find this at line 265:</p>
<p>$http = new httpClient();<br />
if ($http-&gt;Connect(&#8216;www.ups.com&#8217;, 80)) {<br />
$http-&gt;addHeader(&#8216;Host&#8217;, &#8216;www.ups.com&#8217;);<br />
$http-&gt;addHeader(&#8216;User-Agent&#8217;, &#8216;osCommerce&#8217;);<br />
$http-&gt;addHeader(&#8216;Connection&#8217;, &#8216;Close&#8217;);</p>
<p>And replace with this:</p>
<p>if (!class_exists(&#8216;httpClient&#8217;)) {<br />
include(&#8216;includes/classes/http_client.php&#8217;);<br />
}<br />
$http = new httpClient();<br />
if ($http-&gt;Connect(&#8216;www.ups.com&#8217;, 80)) {<br />
$http-&gt;addHeader(&#8216;Host&#8217;, &#8216;www.ups.com&#8217;);<br />
$http-&gt;addHeader(&#8216;User-Agent&#8217;, &#8216;osCommerce&#8217;);<br />
$http-&gt;addHeader(&#8216;Connection&#8217;, &#8216;Close&#8217;);</p>
]]></content:encoded>
			<wfw:commentRss>http://www.oscommercecoders.com/fatal-error-class-httpclient-not-found-in-homexxxxxxxpublic_htmlmyshopincludesmodulesshippingups-php-on-line-265/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change the current order number in osCommerce</title>
		<link>http://www.oscommercecoders.com/change-the-current-order-number-in-oscommerce/</link>
		<comments>http://www.oscommercecoders.com/change-the-current-order-number-in-oscommerce/#comments</comments>
		<pubDate>Thu, 08 Oct 2009 17:59:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.oscommercecoders.com/?p=106</guid>
		<description><![CDATA[ALTER TABLE orders  AUTO_INCREMENT =new_number_here
]]></description>
			<content:encoded><![CDATA[<p>ALTER TABLE orders  AUTO_INCREMENT =new_number_here</p>
]]></content:encoded>
			<wfw:commentRss>http://www.oscommercecoders.com/change-the-current-order-number-in-oscommerce/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Securing oscommerce stores and prevent being hacked</title>
		<link>http://www.oscommercecoders.com/oscommerce-stores-prevent-being-hacked/</link>
		<comments>http://www.oscommercecoders.com/oscommerce-stores-prevent-being-hacked/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 06:37:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[oScommerce Security]]></category>
		<category><![CDATA[osCommerce Services]]></category>

		<guid isPermaLink="false">http://www.oscommercecoders.com/?p=103</guid>
		<description><![CDATA[If you need help in doing all the above we charge a nominal  rate of 200 USD.
Please use the contact us form  to get in touch with us.
You need to secure oscommerce by doing the following steps
1) Remove admin/file_manager.php
2) Remove admin/define_language.php
3) Make backups of your database and site files, saves a great deal [...]]]></description>
			<content:encoded><![CDATA[<h2><strong>If you need help in doing all the above we charge a nominal  rate of 200 USD.</strong></h2>
<h2><strong>Please use the <a rel="nofollow" title="contact us" href="/contact_us/">contact us</a> form  to get in touch with us.</strong></h2>
<p><strong>You need to secure oscommerce by doing the following steps</strong></p>
<p>1) Remove admin/file_manager.php<br />
2) Remove admin/define_language.php<br />
3) Make backups of your database and site files, saves a great deal of time &amp; effort cleaning up should anything nasty happen.<br />
4) Install the following useful contributions</p>
<p>Prevent any injection attacks with Security Pro http://addons.oscommerce.com/info/5752</p>
<p>Monitor sites for unauthorised changes with SiteMonitor http://addons.oscommerce.com/info/4441</p>
<p>Block elicit access attempts with IP trap http://addons.oscommerce.com/info/5914</p>
<p>htaccess protection http://addons.oscommerce.com/info/6066</p>
<p>Stop Cross Site Scripting attacks with Anti XSS http://addons.oscommerce.com/info/6044</p>
<p>Make sure that all files, except for the two configure.php files have permissions no higher than 644.</p>
<p>The permissions for the two configure.php files will vary according to the server your site is on &#8211; it could be 644, 444 or 400 which is correct.</p>
<p>Permissions on folders should be no higher than 755. If your hosting setup demands permissions of 777 on folders then change host</p>
<p>You can use the contribution at http://addons.oscommerce.com/info/6134 to assist with permission settings.</p>
<p>Other steps to be followed</p>
<p><strong>SECURING THE ADMIN:</strong></p>
<p>By re-naming &amp; password protection</p>
<p><strong>FORMS:</strong></p>
<p>Security Pro cleans the query string, however any forms using $_POST are un-affected, if you have any forms using the post method you would be advised to do the following on pages accepting $_POST vars.</p>
<p>after:</p>
<p>CODE<br />
require(&#8216;includes/application_top.php&#8217;);</p>
<p>add:<br />
CODE</p>
<p>// clean posted vars<br />
reset($_POST);<br />
while (list($key, $value) = each($_POST)) {<br />
if (!is_array($_POST[$key])) {<br />
$_POST[$key] = preg_replace(&#8220;/[^ a-zA-Z0-9@%:{}_.-]/i&#8221;, &#8220;&#8221;, urldecode($_POST[$key]));<br />
} else { unset($_POST[$key]); } // no arrays expected<br />
}</p>
<p>following the above steps makes the store secure</p>
<p><strong>If you need help in doing all the above we charge a nominal rate of 200 USD.</strong></p>
<p><strong>Please use the contact us form to get in touch with us.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.oscommercecoders.com/oscommerce-stores-prevent-being-hacked/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>date format from mm/dd/yyyy to dd/mm/yyyy</title>
		<link>http://www.oscommercecoders.com/date-format-from-mmddyyyy-to-ddmmyyyy/</link>
		<comments>http://www.oscommercecoders.com/date-format-from-mmddyyyy-to-ddmmyyyy/#comments</comments>
		<pubDate>Tue, 18 Aug 2009 16:09:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[osCommerce Tips]]></category>

		<guid isPermaLink="false">http://www.oscommercecoders.com/?p=81</guid>
		<description><![CDATA[Here&#8217;s how to do it. (remember to backup before any modification)
Also change the country code to match yours (this example uses GB for UK)
********************************************************************
* Open catalog/includes/languages/english.php (this is for your catalog section)
* The changes are highlighted.
********************************************************************
@setlocale(LC_TIME, &#8216;en_GB.ISO_8859-1&#8242;);
define(&#8216;DATE_FORMAT_SHORT&#8217;, &#8216;%d/%m/%Y&#8217;); // this is used for strftime()
define(&#8216;DATE_FORMAT_LONG&#8217;, &#8216;%A %d %B, %Y&#8217;); // this is used for strftime()
define(&#8216;DATE_FORMAT&#8217;, &#8216;d/m/Y&#8217;); [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s how to do it. (remember to backup before any modification)</p>
<p>Also change the country code to match yours (this example uses GB for UK)</p>
<p>********************************************************************<br />
* Open catalog/includes/languages/english.php (this is for your catalog section)<br />
* The changes are highlighted.<br />
********************************************************************<br />
@setlocale(LC_TIME, &#8216;en_GB.ISO_8859-1&#8242;);</p>
<p>define(&#8216;DATE_FORMAT_SHORT&#8217;, &#8216;%d/%m/%Y&#8217;); // this is used for strftime()<br />
define(&#8216;DATE_FORMAT_LONG&#8217;, &#8216;%A %d %B, %Y&#8217;); // this is used for strftime()<br />
define(&#8216;DATE_FORMAT&#8217;, &#8216;d/m/Y&#8217;); // this is used for date()<br />
define(&#8216;DATE_TIME_FORMAT&#8217;, DATE_FORMAT_SHORT . &#8216; %H:%M:%S&#8217;);</p>
<p>////<br />
// Return date in raw format<br />
// $date should be in format mm/dd/yyyy<br />
// raw date is in format YYYYMMDD, or DDMMYYYY<br />
function tep_date_raw($date, $reverse = false) {<br />
if ($reverse) {<br />
return substr($date, 0, 2) . substr($date, 3, 2) . substr($date, 6, 4);<br />
} else {<br />
return substr($date, 6, 4) . substr($date, 3, 2) . substr($date, 0, 2);<br />
}<br />
}</p>
<p>*********************<br />
Also change the following<br />
*********************</p>
<p>CODE<br />
define(&#8216;ENTRY_DATE_OF_BIRTH_ERROR&#8217;, &#8216;Your Date of Birth must be in this format: MM/DD/YYYY (eg 05/21/1970)&#8217;);<br />
to<br />
CODE<br />
define(&#8216;ENTRY_DATE_OF_BIRTH_ERROR&#8217;, &#8216;Your Date of Birth must be in this format: DD/MM/YYYY (eg 21/05/1970)&#8217;);</p>
<p>CODE<br />
define(&#8216;ENTRY_DATE_OF_BIRTH_TEXT&#8217;, &#8216;* (eg. 05/21/1970)&#8217;);<br />
to<br />
CODE<br />
define(&#8216;ENTRY_DATE_OF_BIRTH_TEXT&#8217;, &#8216;* (eg. 21/05/1970)&#8217;);</p>
<p>CODE<br />
define(&#8216;DOB_FORMAT_STRING&#8217;, &#8216;mm/dd/yyyy&#8217;);<br />
to<br />
CODE<br />
define(&#8216;DOB_FORMAT_STRING&#8217;, &#8216;dd/mm/yyyy&#8217;);</p>
]]></content:encoded>
			<wfw:commentRss>http://www.oscommercecoders.com/date-format-from-mmddyyyy-to-ddmmyyyy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Model Number field in oscommerce</title>
		<link>http://www.oscommercecoders.com/model-number-field-in-oscommerce/</link>
		<comments>http://www.oscommercecoders.com/model-number-field-in-oscommerce/#comments</comments>
		<pubDate>Fri, 31 Jul 2009 16:54:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[osCommerce Tips]]></category>

		<guid isPermaLink="false">http://www.oscommercecoders.com/?p=78</guid>
		<description><![CDATA[How to Change Product Model Length
The default 12 character limit for product model strings may be too short for certain needs, and can be easily increased with phpMyAdmin or directly with MySQL.
Two database tables need to be modified when changing the length of the product model
field: products, and orders_products.
Using phpMyAdmin

Select the products table on the [...]]]></description>
			<content:encoded><![CDATA[<p><strong>How to Change Product Model Length</strong><br />
The default 12 character limit for product model strings may be too short for certain needs, and can be easily increased with phpMyAdmin or directly with MySQL.</p>
<p>Two database tables need to be modified when changing the length of the product model<br />
field: products, and orders_products.</p>
<p><strong>Using phpMyAdmin<br />
</strong><br />
Select the products table on the left side of phpMyAdmin<br />
Select the product_model check box<br />
Click on the Change button<br />
Set the new size value under the Length/Values field, and click on the Save button. The same steps need to be reproduced for the orders_products table.</p>
<p><strong>Using MySQL<br />
</strong>alter table products change products_model products_model varchar(255);<br />
alter table orders_products change products_model products_model varchar(255);</p>
]]></content:encoded>
			<wfw:commentRss>http://www.oscommercecoders.com/model-number-field-in-oscommerce/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Iframe codes in oscommerce stores</title>
		<link>http://www.oscommercecoders.com/iframe-codes-in-oscommerce-stores/</link>
		<comments>http://www.oscommercecoders.com/iframe-codes-in-oscommerce-stores/#comments</comments>
		<pubDate>Thu, 30 Jul 2009 19:32:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[oScommerce Issues]]></category>
		<category><![CDATA[oScommerce Security]]></category>
		<category><![CDATA[osCommerce Services]]></category>

		<guid isPermaLink="false">http://www.oscommercecoders.com/?p=75</guid>
		<description><![CDATA[There has been a recent increase of attacks on osCommerce websites using old versions.
Hackers exploit a vulnerability that is usually used for uploading product pictures to the /images directory.
Php files are uploaded in the images directory and executed.
CUstomer and order details are displayed and also emailed to the hackers email address.
Sometimes traces are left by [...]]]></description>
			<content:encoded><![CDATA[<p>There has been a recent increase of attacks on osCommerce websites using old versions.</p>
<p>Hackers exploit a vulnerability that is usually used for uploading product pictures to the /images directory.</p>
<p>Php files are uploaded in the images directory and executed.</p>
<p>CUstomer and order details are displayed and also emailed to the hackers email address.</p>
<p>Sometimes traces are left by the hacker.<br />
PHP files show up in the images directory (though sometimes they&#8217;re deleted after being run).</p>
<p>Gengerally, the following code iframe is added to every product_description and categories_description</p>
<p>We have a process to clean up the database and clean up the images directory</p>
<h2><span style="color: #ff0000;"><strong>150 USD</p>
<p></strong></span></h2>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input name="cmd" type="hidden" value="_xclick" />
<input name="business" type="hidden" value="sales@flugelsoft.com" />
<input name="item_name" type="hidden" value="osCommerce iframe cleaning" />
<input name="amount" type="hidden" value="150.00" />
<input name="no_shipping" type="hidden" value="0" />
<input name="no_note" type="hidden" value="1" />
<input name="currency_code" type="hidden" value="USD" />
<input name="lc" type="hidden" value="IN" />
<input name="bn" type="hidden" value="PP-BuyNowBF" />
<input alt="Make payments with PayPal - it's fast, free and secure!" name="submit" src="https://www.paypal.com/en_US/i/btn/x-click-but23.gif" type="image" /> <img src="https://www.paypal.com/en_US/i/scr/pixel.gif" border="0" alt="" width="1" height="1" /><br />
</form>
]]></content:encoded>
			<wfw:commentRss>http://www.oscommercecoders.com/iframe-codes-in-oscommerce-stores/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
