<?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 &#187; oScommerce Issues</title>
	<atom:link href="http://www.oscommercecoders.com/category/oscommerce-issues/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>Tue, 10 Aug 2010 14:48:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Problems with manufacturer image management</title>
		<link>http://www.oscommercecoders.com/problems-with-manufacturer-image-management/</link>
		<comments>http://www.oscommercecoders.com/problems-with-manufacturer-image-management/#comments</comments>
		<pubDate>Tue, 15 Jun 2010 18:10:39 +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=159</guid>
		<description><![CDATA[osCommerce has a problem when editing an existing manufacturer&#8217;s information. If a new manufacturer image is not loaded at the same time then the image that was there previously disappears. osCommerce also fails to delete a manufacturer&#8217;s image from the server when the manufacturer is deleted. The solution to the problems is simple. Open the [...]]]></description>
		<wfw:commentRss>http://www.oscommercecoders.com/problems-with-manufacturer-image-management/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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 [...]]]></description>
		<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 [...]]]></description>
		<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>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;, [...]]]></description>
		<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>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 [...]]]></description>
		<wfw:commentRss>http://www.oscommercecoders.com/iframe-codes-in-oscommerce-stores/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Call To A Member Function Add_current_page() On A Non-object</title>
		<link>http://www.oscommercecoders.com/call-to-a-member-function-add_current_page-on-a-non-object/</link>
		<comments>http://www.oscommercecoders.com/call-to-a-member-function-add_current_page-on-a-non-object/#comments</comments>
		<pubDate>Wed, 13 May 2009 04:23:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[oScommerce Issues]]></category>

		<guid isPermaLink="false">http://www.oscommercecoders.com/?p=55</guid>
		<description><![CDATA[Open /includes/application_top.php if (tep_session_is_registered(&#8216;navigation&#8217;)) { if (PHP_VERSION &#60; 4) { $broken_navigation = $navigation; $navigation = new navigationHistory; $navigation-&#62;unserialize($broken_navigation); } } else { tep_session_register(&#8216;navigation&#8217;); $navigation = new navigationHistory; } $navigation-&#62;add_current_page(); Replace with // navigation history if (tep_session_is_registered(&#8216;navigation&#8217;)) { if (PHP_VERSION &#60; 4) { $broken_navigation = $navigation; $navigation = new navigationHistory; $navigation-&#62;unserialize($broken_navigation); } else { $navigation = [...]]]></description>
		<wfw:commentRss>http://www.oscommercecoders.com/call-to-a-member-function-add_current_page-on-a-non-object/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>osCommerce Database errors</title>
		<link>http://www.oscommercecoders.com/oscommerce-database-errors/</link>
		<comments>http://www.oscommercecoders.com/oscommerce-database-errors/#comments</comments>
		<pubDate>Sun, 10 May 2009 19:21:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[oScommerce Issues]]></category>
		<category><![CDATA[osCommerce Services]]></category>

		<guid isPermaLink="false">http://www.oscommercecoders.com/?p=51</guid>
		<description><![CDATA[1016 &#8211; Can&#8217;t open file The following error message is shown when a database table is corrupt and can no longer be accessed nor read properly: 1016 &#8211; Can&#8217;t open file &#8216;&#60;database table name&#62;.MYI&#8217; (errno: 145) The error message will always be shown until the database table involved has been repaired. 1016 &#8211; Can&#8217;t open [...]]]></description>
		<wfw:commentRss>http://www.oscommercecoders.com/oscommerce-database-errors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OSCommerce error &#8211; Fatal error: Cannot re-assign $this in /admin/includes/classes/upload.php</title>
		<link>http://www.oscommercecoders.com/oscommerce-error-fatal-error-cannot-re-assign-this-in-adminincludesclassesuploadphp/</link>
		<comments>http://www.oscommercecoders.com/oscommerce-error-fatal-error-cannot-re-assign-this-in-adminincludesclassesuploadphp/#comments</comments>
		<pubDate>Sat, 18 Apr 2009 09:26:10 +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=39</guid>
		<description><![CDATA[This happens due to a bug in OSCommerce after the server upgrade is from PHP 4.x to PHP 5. The way the code was written in upload.php was using an undocumented feature that was not officially supported, and subsequently did not carry over into PHP 5. To fix this, edit the &#8216;upload.php&#8217; file mentioned in [...]]]></description>
		<wfw:commentRss>http://www.oscommercecoders.com/oscommerce-error-fatal-error-cannot-re-assign-this-in-adminincludesclassesuploadphp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OsCommerce Errors After PHP5 Upgrade</title>
		<link>http://www.oscommercecoders.com/oscommerce-errors-after-php5-upgrade/</link>
		<comments>http://www.oscommercecoders.com/oscommerce-errors-after-php5-upgrade/#comments</comments>
		<pubDate>Thu, 01 Jan 2009 00:18:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[oScommerce Issues]]></category>

		<guid isPermaLink="false">http://www.oscommercecoders.com/?p=21</guid>
		<description><![CDATA[After upgrading a OsCommerce site to PHP5 the follow errors occurred when using the customer part of the admin section: Warning: array_merge() [function.array-merge]: Argument #1 is not an array in /catalog/admin/customers.php on line 782 Warning: array_merge() [function.array-merge]: Argument #2 is not an array in /catalog/admin/customers.php on line 784 Warning: reset() [function.reset]: Passed variable is not [...]]]></description>
		<wfw:commentRss>http://www.oscommercecoders.com/oscommerce-errors-after-php5-upgrade/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Warning: Too many connections</title>
		<link>http://www.oscommercecoders.com/warning-too-many-connections/</link>
		<comments>http://www.oscommercecoders.com/warning-too-many-connections/#comments</comments>
		<pubDate>Thu, 01 Jan 2009 00:16:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[oScommerce Issues]]></category>
		<category><![CDATA[Oscommerce design integration]]></category>
		<category><![CDATA[oScommerce Errors]]></category>

		<guid isPermaLink="false">http://www.oscommercecoders.com/?p=17</guid>
		<description><![CDATA[Error Messages &#8211; Warning: Too many connections in /path/to/osCommerce/includes/functions/database.php on line 19 Warning: MySQL Connection Failed: Too many connections in /path/to/osCommerce/includes/functions/database.php on line 19. Unable to connect to database server! This problem is generally not a fault of osCommerce, but can be experienced when osCommerce is installed on budget hosting servers. The following error message [...]]]></description>
		<wfw:commentRss>http://www.oscommercecoders.com/warning-too-many-connections/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
