<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.0.7" -->
<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/"
	>

<channel>
	<title>Kliky.Net - Web Development Blog</title>
	<link>http://www.kliky.net</link>
	<description>Web Development and Internet Traffic Matters</description>
	<pubDate>Sat, 04 Oct 2008 20:33:31 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.0.7</generator>
	<language>en</language>
			<item>
		<title>Shopping Cart Empty in osCommerce with SSL</title>
		<link>http://www.kliky.net/oscommerce/oscommerce-with-ssl-shopping-cart-empty/</link>
		<comments>http://www.kliky.net/oscommerce/oscommerce-with-ssl-shopping-cart-empty/#comments</comments>
		<pubDate>Sat, 04 Oct 2008 20:32:50 +0000</pubDate>
		<dc:creator>ed</dc:creator>
		
		<category>osCommerce</category>

		<guid isPermaLink="false">http://www.kliky.net/oscommerce/oscommerce-with-ssl-shopping-cart-empty/</guid>
		<description><![CDATA[There is a minor issue with osCommerce when using either 3rd party or ssl certificates assigned to a sub-domain which results in an error reading &#8220;Your Shopping Cart is empty!&#8221;. This happens when ENABLE_SSL is set to true in the configuration file. There has been some discussion on the osCommerce Forums regarding &#8220;Shopping cart empty [...]]]></description>
			<content:encoded><![CDATA[<p>There is a minor issue with <a href="http://www.oscommerce.com/">osCommerce</a> when using either 3rd party or ssl certificates assigned to a sub-domain which results in an error reading &#8220;Your Shopping Cart is empty!&#8221;. This happens when ENABLE_SSL is set to <em>true</em> in the configuration file. There has been some discussion on the <a href="http://forums.oscommerce.com">osCommerce Forums</a> regarding &#8220;<a href="http://forums.oscommerce.com/index.php?showtopic=54626">Shopping cart empty when checkout is clicked</a>&#8220;.<br />
The error is most often seen after adding a product to your <a href="http://www.oscommerce.com/">osCommerce</a> Shopping Cart. The shopping cart will show the proper products, however, when navigating to checkout the screen returns &#8220;Your Shopping Cart is empty!&#8221;. This happens due to <a href="http://www.oscommerce.com/">osCommerce</a> storing the cookie on 2 separate domains. In most osCommerce configurations you&#8217;ll see people setting up their sites like so:</p>
<blockquote><p>define(&#8217;HTTP_SERVER&#8217;, &#8216;http://www.domain.com&#8217;);<br />
define(&#8217;HTTPS_SERVER&#8217;, &#8216;https://secure.domain.com&#8217;);<br />
define(&#8217;ENABLE_SSL&#8217;, true);<br />
define(&#8217;HTTP_COOKIE_DOMAIN&#8217;, &#8216;www.domain.com&#8217;);<br />
define(&#8217;HTTPS_COOKIE_DOMAIN&#8217;, &#8217;secure.domain.com&#8217;);<br />
define(&#8217;HTTP_COOKIE_PATH&#8217;, &#8216;www.domain.com&#8217;);<br />
define(&#8217;HTTPS_COOKIE_PATH&#8217;, &#8217;secure.domain.com&#8217;);</p></blockquote>
<p>This configuration is incorrect in that <a href="http://www.oscommerce.com/">osCommerce</a> has a hard time distinguishing the cookies. What you need to do is store the cookies at the main domain without the sub. I had changed the configuration file to read:</p>
<blockquote><p>define(&#8217;HTTP_SERVER&#8217;, &#8216;http://www.domain.com&#8217;);<br />
define(&#8217;HTTPS_SERVER&#8217;, &#8216;https://secure.domain.com&#8217;);<br />
define(&#8217;ENABLE_SSL&#8217;, true);<br />
define(&#8217;HTTP_COOKIE_DOMAIN&#8217;, &#8216;domain.com&#8217;);<br />
define(&#8217;HTTPS_COOKIE_DOMAIN&#8217;, &#8216;domain.com&#8217;);<br />
define(&#8217;HTTP_COOKIE_PATH&#8217;, &#8216;/&#8217;);<br />
define(&#8217;HTTPS_COOKIE_PATH&#8217;, &#8216;/&#8217;);</p></blockquote>
<p>By changing my <a href="http://www.oscommerce.com/">osCommerce</a> configuration file to set the cookie at the root domain, I have been able straigten out the SSL/HTTPS issue and allow the shopping cart to flow forward with the order.</p>
<p>I am using both <a href="http://www.oscommerce.com/community/contributions,355">Purchase Without Account</a> and <a href="http://www.magneticone.com/store/osCommerce.Modules/Advanced.SEO.for.osCommerce...osCommerce.module">Advanced SEO for osCommerce</a> through <a href="http://www.magneticone.com/">MagneticOne</a> and everything is stable and processing orders.
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kliky.net/oscommerce/oscommerce-with-ssl-shopping-cart-empty/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Increase Category Name Length in osCommerce</title>
		<link>http://www.kliky.net/howto/increase-category-name-length-in-oscommerce/</link>
		<comments>http://www.kliky.net/howto/increase-category-name-length-in-oscommerce/#comments</comments>
		<pubDate>Wed, 10 Sep 2008 02:44:03 +0000</pubDate>
		<dc:creator>ed</dc:creator>
		
		<category>How To</category>

		<guid isPermaLink="false">http://www.kliky.net/howto/increase-category-name-length-in-oscommerce/</guid>
		<description><![CDATA[osCommerce allows only 32 characters for the Category name length. In order to allow for longer osCommerce category names you can simply update your database table.
There are two ways to do this.
The first is by using something like phpMyAdmin to increase the length of the categories_name field in the categories_description table.
If you&#8217;re a command line [...]]]></description>
			<content:encoded><![CDATA[<p>osCommerce allows only 32 characters for the Category name length. In order to allow for longer osCommerce category names you can simply update your database table.</p>
<p>There are two ways to do this.</p>
<p>The first is by using something like phpMyAdmin to increase the length of the <em>categories_name</em> field in the <em>categories_description</em> table.</p>
<p>If you&#8217;re a command line person, you can increase the length of your osCommerce category names by using the following:</p>
<blockquote><p><span class="syntax"><span class="syntax_alpha syntax_alpha_reservedWord">ALTER</span>  <span class="syntax_alpha syntax_alpha_reservedWord">TABLE</span>  <span class="syntax_quote syntax_quote_backtick">`categories_description`</span>  <span class="syntax_alpha syntax_alpha_reservedWord">CHANGE</span>  <span class="syntax_quote syntax_quote_backtick">`categories_name`</span>  <span class="syntax_quote syntax_quote_backtick">`categories_name`</span> <span class="syntax_alpha syntax_alpha_columnType">VARCHAR</span><span class="syntax_punct syntax_punct_bracket_open_round">(</span> <span class="syntax_digit syntax_digit_integer">64</span>  <span class="syntax_punct syntax_punct_bracket_close_round">)</span>  <span class="syntax_alpha syntax_alpha_reservedWord">CHARACTER</span>  <span class="syntax_alpha syntax_alpha_reservedWord">SET</span> <span class="syntax_alpha syntax_alpha_charset">latin1</span> <span class="syntax_alpha syntax_alpha_reservedWord">COLLATE</span> <span class="syntax_alpha syntax_alpha_charset">latin1_swedish_ci</span> <span class="syntax_alpha syntax_alpha_reservedWord">NOT</span>  <span class="syntax_alpha syntax_alpha_reservedWord">NULL</span></span></p></blockquote>
<p>That&#8217;s it. Just updating the categories_description table will allow you to use longer category names with osCommerce.
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kliky.net/howto/increase-category-name-length-in-oscommerce/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to Install Joomla FireBoard with Community Builder</title>
		<link>http://www.kliky.net/howto/how-to-install-joomla-fireboard-with-community-builder/</link>
		<comments>http://www.kliky.net/howto/how-to-install-joomla-fireboard-with-community-builder/#comments</comments>
		<pubDate>Tue, 09 Sep 2008 16:06:06 +0000</pubDate>
		<dc:creator>ed</dc:creator>
		
		<category>How To</category>

		<category>Joomla</category>

		<guid isPermaLink="false">http://www.kliky.net/howto/how-to-install-joomla-fireboard-with-community-builder/</guid>
		<description><![CDATA[I recently installed FireBoard with my Joomla installation, which also uses Community Builder. One thing I noticed is the absence of a decent set of step-by-step instructions for the FireBoard install.
I&#8217;ll list here the quick and dirty installation instructions for Joomla FireBoard using Community Builder which I found to be quite simple.
You must note that [...]]]></description>
			<content:encoded><![CDATA[<p>I recently installed <a href="http://extensions.joomla.org/component/option,com_mtree/task,viewlink/link_id,2134/Itemid,35/">FireBoard</a> with my Joomla installation, which also uses Community Builder. One thing I noticed is the absence of a decent set of step-by-step instructions for the FireBoard install.</p>
<p>I&#8217;ll list here the quick and dirty installation instructions for Joomla <a href="http://extensions.joomla.org/component/option,com_mtree/task,viewlink/link_id,2134/Itemid,35/">FireBoard</a> using Community Builder which I found to be quite simple.</p>
<p>You must note that this is a &#8216;clean&#8217; installation. I had not had any other Board component installed with Community Builder before hand.</p>
<p>The first step is to download the <a href="http://extensions.joomla.org/component/option,com_mtree/task,viewlink/link_id,2134/Itemid,35/">FireBoard </a>component and <a href="http://www.bestofjoomla.com/component/option,com_extensions/page,show_extension/adid,27/catid,5/Itemid,67/">FireBoard CB Plugin</a>. Links for downloading the 2 are below:</p>
<p>1.  FireBoard - <a href="http://extensions.joomla.org/component/option,com_mtree/task,viewlink/link_id,2134/Itemid,35/">Download Info<br />
</a>2. FireBoard CB Plugin - <a href="http://www.bestofjoomla.com/component/option,com_extensions/page,show_extension/adid,27/catid,5/Itemid,67/">Download Info</a></p>
<p>Installation:</p>
<p>FireBoard is a Component, so you will install it as so. The following steps walks you through installing the component, setup of database tables, and loading sample data.</p>
<blockquote><p>1. fire up your Admin<br />
2. select Installers => Components<br />
3. browse for file (component_Fireboard_Forum_1.0.0) and Install<br />
4. select Components => Fireboard Forums<br />
5. select Apply for &#8216;Clean Installation&#8217;<br />
6. select Compoents => FireBoard Forums<br />
7. select &#8216;Load Sample Data&#8217;</p></blockquote>
<p>Now, that should be enough to have loaded up FireBoard for your Joomla installation. The next thing is to load the FireBoard CB Plugin.</p>
<blockquote><p>1. still in Admin<br />
2. select Components => Community Builder => Plugin Management<br />
3. select Install Plugin<br />
4. select Publish the new Plugin</p></blockquote>
<p>Now, the next thing to do is to link it. In this case I linked it to the main public menu, but you can link it to anything you&#8217;d like. Personal preference I suppose.</p>
<blockquote><p>1. still in Admin<br />
2. select Menu => mainmenu<br />
3. select New<br />
4. select Component<br />
5. select Next<br />
6. select Fireboard Forum (Name it: Forum (or whatever))<br />
7. select Save</p></blockquote>
<p>Ok, so that&#8217;s the quick and dirty. I&#8217;ll be sure to update this with any additional information I find.
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kliky.net/howto/how-to-install-joomla-fireboard-with-community-builder/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Print Category Name as Title in osCommerce</title>
		<link>http://www.kliky.net/howto/oscommerce-print-category-name-as-title/</link>
		<comments>http://www.kliky.net/howto/oscommerce-print-category-name-as-title/#comments</comments>
		<pubDate>Thu, 24 Jul 2008 18:41:26 +0000</pubDate>
		<dc:creator>ed</dc:creator>
		
		<category>How To</category>

		<category>osCommerce</category>

		<guid isPermaLink="false">http://www.kliky.net/howto/oscommerce-print-category-name-as-title/</guid>
		<description><![CDATA[I couldn&#8217;t figure out why osCommerce would print a default heading title (HEADING_TITLE) as the category page titles. In order to use the category name as the page title with osCommerce I had to edit the main index.php file. Find the lines which prints the category and nested category titles in and around line 68 [...]]]></description>
			<content:encoded><![CDATA[<p>I couldn&#8217;t figure out why osCommerce would print a default heading title (HEADING_TITLE) as the category page titles. In order to use the category name as the page title with osCommerce I had to edit the main index.php file. Find the lines which prints the category and nested category titles in and around line 68 and 233. You can look for the language definition: HEADING_TITLE.</p>
<p>Replace this with data from the breadcrumb array. So, basically, replace this line:</p>
<blockquote><p>< ? php echo HEADING_TITLE; ?></p></blockquote>
<p>With this line:</p>
<blockquote><p>< ? php echo $breadcrumb->_trail[end(array_keys($breadcrumb->_trail))][&#8217;title&#8217;]; ?></p></blockquote>
<p>Basically what this does is take the title element of the breadcrumb->_trail object and prints it. There&#8217;s two places in the index file where this will need to be used. One is for main category listings and the other is for sub category listings. The single echo above should do it.</p>
<p>This may prove to be a bad hack and will need updating by me later on, but for now, this is the way I was able to use the category name as the title for my osCommerce installation.
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kliky.net/howto/oscommerce-print-category-name-as-title/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Link osCommerce infoBox Heading</title>
		<link>http://www.kliky.net/howto/link-oscommerce-infobox-heading/</link>
		<comments>http://www.kliky.net/howto/link-oscommerce-infobox-heading/#comments</comments>
		<pubDate>Thu, 24 Jul 2008 16:42:49 +0000</pubDate>
		<dc:creator>ed</dc:creator>
		
		<category>How To</category>

		<category>osCommerce</category>

		<guid isPermaLink="false">http://www.kliky.net/howto/link-oscommerce-infobox-heading/</guid>
		<description><![CDATA[The osCommerce infoBox arrows are far too small to effectively communicate a linkable area. Instead, I&#8217;d think many would just like to make the infoBox title linkable. To accomplish this do the following:
=> open file /includes/classes/boxes.php
=> find the 2 $right_corner if statements (around line 112 and 118)
=> comment these 2 if statements out
=> then add [...]]]></description>
			<content:encoded><![CDATA[<p>The osCommerce infoBox arrows are far too small to effectively communicate a linkable area. Instead, I&#8217;d think many would just like to make the infoBox title linkable. To accomplish this do the following:</p>
<blockquote><p>=> open file /includes/classes/boxes.php<br />
=> find the 2 $right_corner if statements (around line 112 and 118)<br />
=> comment these 2 if statements out<br />
=> then add the following lines:</p></blockquote>
<blockquote><p>$right_corner = tep_image(DIR_WS_IMAGES . &#8216;infobox/corner_right.gif&#8217;)</p>
<p>$headingTitle = &#8216;&#8217;;<br />
$headingTitle = $contents[0][&#8217;text&#8217;];</p>
<p>if ($right_arrow == true) {<br />
$headingTitle = &#8216;<a href="http://www.kliky.net/%27%20.%20$right_arrow%20.%20%27">&#8216; . $headingTitle . &#8216;</a>&#8216;;</p>
<p>}</p></blockquote>
<blockquote><p>=> in the info_box_contents array<br />
=> find: &#8216;text&#8217; => $contents[0][&#8217;text&#8217;]),<br />
=> replace with: &#8216;text&#8217; => $headingTitle),</p></blockquote>
<p>That should be all there is to change the osCommerce infoBox headings to links the title instead of using the arrow.</p>
<p><strong>* Note</strong>: I&#8217;d already modified this file to always print the right corner box. In any other case, keep the second right_arrow &#8220;if&#8221; statement and remove only the append of $right_arrow.
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kliky.net/howto/link-oscommerce-infobox-heading/feed/</wfw:commentRss>
		</item>
		<item>
		<title>osCommerce Popular Contributions Lists</title>
		<link>http://www.kliky.net/howto/oscommerce-contributions-top-lists/</link>
		<comments>http://www.kliky.net/howto/oscommerce-contributions-top-lists/#comments</comments>
		<pubDate>Thu, 24 Jul 2008 05:12:43 +0000</pubDate>
		<dc:creator>ed</dc:creator>
		
		<category>How To</category>

		<category>osCommerce</category>

		<guid isPermaLink="false">http://www.kliky.net/howto/oscommerce-contributions-top-lists/</guid>
		<description><![CDATA[I find that checking out these favorites, or top ten lists, or best of lists often times helps one get an idea of what&#8217;s available for these open source applications. In this case, here&#8217;s a few links to some lists ranking osCommerce contributions:
* The Best osCommerce Contributions
* 4 osCommerce Contributions to Know
* Most Popular osCommerce [...]]]></description>
			<content:encoded><![CDATA[<p>I find that checking out these favorites, or top ten lists, or best of lists often times helps one get an idea of what&#8217;s available for these open source applications. In this case, here&#8217;s a few links to some lists ranking <a href="http://www.oscommerce.com/">osCommerce</a> contributions:</p>
<p>* <a href="http://www.dynamicajax.com/fr/Best_osCommerce_Contributions-.html">The Best osCommerce Contributions</a><br />
* <a href="http://www.squidoo.com/oscommercecontributions">4 osCommerce Contributions to Know</a><br />
* <a href="http://www.siteground.com/oscommerce_modules.htm">Most Popular osCommerce Contributions</a><br />
* <a href="http://www.pcscribbles.com/2008/05/top-10-essential-oscommerce-contributions/">Top 10+ Essential osCommerce Contributions </a></p>
<p>Here&#8217;s the official <a href="http://www.oscommerce.com/community/contributions">osCommerce Contributions</a> page:</p>
<p>* <a href="http://www.oscommerce.com/community/contributions">http://www.oscommerce.com/community/contributions</a></p>
<p>It seems much easier to navigate than their <a href="http://addons.oscommerce.com/">Add-Ons</a> page which links from the Community menu:</p>
<p>* <a href="http://addons.oscommerce.com/">http://addons.oscommerce.com/</a></p>
<p>Here&#8217;s the official <a href="http://www.oscommerce.com/community/contributions/top,all">osCommerce Top Contributions Downloads</a> page:</p>
<p>* <a href="http://www.oscommerce.com/community/contributions/top,all">http://www.oscommerce.com/community/contributions/top,all </a></p>
<p>That&#8217;s about it from what I see. Surprised there isn&#8217;t more of these types of lists (Joomla&#8217;s got a ton of them), but it&#8217;s a start. They all seem to point to the same basic contributions (wink wink), but even without the lists, jut going by the <a href="http://www.oscommerce.com/community/contributions/top,all">osCommerce Top Contributions Downloads</a> page should give you an idea of what the <a href="http://www.oscommerce.com/community/contributions/top,all">most popular osCommerce contributions</a> are.
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kliky.net/howto/oscommerce-contributions-top-lists/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Add Product Name to Breadcrumb in osCommerce</title>
		<link>http://www.kliky.net/howto/oscommerce-add-product-name-to-breadcrumb/</link>
		<comments>http://www.kliky.net/howto/oscommerce-add-product-name-to-breadcrumb/#comments</comments>
		<pubDate>Wed, 23 Jul 2008 04:35:41 +0000</pubDate>
		<dc:creator>ed</dc:creator>
		
		<category>How To</category>

		<category>osCommerce</category>

		<guid isPermaLink="false">http://www.kliky.net/howto/oscommerce-add-product-name-to-breadcrumb/</guid>
		<description><![CDATA[Found this useful contribution which allows you to place the actual product name in the breadcrumb. Not sure why this isn&#8217;t part of the core, but that&#8217;s not for me to ask:
http://addons.oscommerce.com/info/5807
By piggy banking on this contribution, I was also able to use the breadcrumb to put the Category Name in as the Title.

]]></description>
			<content:encoded><![CDATA[<p>Found this useful contribution which allows you to place the actual product name in the breadcrumb. Not sure why this isn&#8217;t part of the core, but that&#8217;s not for me to ask:</p>
<blockquote><p>http://addons.oscommerce.com/info/5807</p></blockquote>
<p>By piggy banking on this contribution, I was also able to use the breadcrumb to put the Category Name in as the Title.
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kliky.net/howto/oscommerce-add-product-name-to-breadcrumb/feed/</wfw:commentRss>
		</item>
		<item>
		<title>osCommerce Button Generator - oscButtons</title>
		<link>http://www.kliky.net/tools/oscommerce-button-generator-oscbuttons/</link>
		<comments>http://www.kliky.net/tools/oscommerce-button-generator-oscbuttons/#comments</comments>
		<pubDate>Wed, 23 Jul 2008 04:22:15 +0000</pubDate>
		<dc:creator>ed</dc:creator>
		
		<category>Tools</category>

		<category>osCommerce</category>

		<guid isPermaLink="false">http://www.kliky.net/howto/oscommerce-button-generator-oscbuttons/</guid>
		<description><![CDATA[Found quick and dirty online button generator that does a decent enough job. oscButtons allows you to quickly mock up buttons, dump into your images directory and give a you a decent idea of what it would look like. Check it out here:
http://www.oscbuttons.com/
]]></description>
			<content:encoded><![CDATA[<p>Found quick and dirty online button generator that does a decent enough job. <a href="http://www.oscbuttons.com/">oscButtons</a> allows you to quickly mock up buttons, dump into your images directory and give a you a decent idea of what it would look like. Check it out here:</p>
<blockquote><p>http://www.oscbuttons.com/</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.kliky.net/tools/oscommerce-button-generator-oscbuttons/feed/</wfw:commentRss>
		</item>
		<item>
		<title>osCommerce Purchase Without Account Database Error</title>
		<link>http://www.kliky.net/howto/oscommerce-purchase-without-account-database-error/</link>
		<comments>http://www.kliky.net/howto/oscommerce-purchase-without-account-database-error/#comments</comments>
		<pubDate>Wed, 23 Jul 2008 04:18:53 +0000</pubDate>
		<dc:creator>ed</dc:creator>
		
		<category>How To</category>

		<category>osCommerce</category>

		<guid isPermaLink="false">http://www.kliky.net/howto/oscommerce-purchase-without-account-database-error/</guid>
		<description><![CDATA[I&#8217;ve just recently began a project using osCommerce and needed to streamline the checkout process. I wanted to allow the purchaser the options of navigating directly to payment, instead of having to first login or create an account. I found the osCommerce contribution &#8220;Purchase Without Account&#8221; to be the answer:
http://www.oscommerce.com/community/contributions,355/page,8
Downloading and installing v2.2rc.2a was simple [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just recently began a project using osCommerce and needed to streamline the checkout process. I wanted to allow the purchaser the options of navigating directly to payment, instead of having to first login or create an account. I found the osCommerce contribution &#8220;Purchase Without Account&#8221; to be the answer:</p>
<p>http://www.oscommerce.com/community/contributions,355/page,8</p>
<p>Downloading and installing v2.2rc.2a was simple enough. However, the following error was thrown when attempting a login:</p>
<blockquote><p>Unknown column &#8216;customers_block&#8217; in &#8216;field list&#8217;</p></blockquote>
<p>My initial fix for this was to open the login.php file and edit the following line:</p>
<blockquote><p>select customers_id, customers_firstname, customers_password, customers_email_address, customers_default_address_id, customers_block, guest_account from &#8221; . TABLE_CUSTOMERS . &#8221; where customers_email_address = &#8216;&#8221; . tep_db_input($email_address). &#8220;&#8216; and guest_account=&#8217;0&#8242;</p></blockquote>
<p>All I ended up doing was remove the the filed &#8220;customers_block&#8221; from the query above. Since I see this field name/parameter nowhere in the osCommerce catalog and because it&#8217;s nowhere to be found in any of the sql update files of the contribution, I&#8217;m thinking it should do the trick.
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kliky.net/howto/oscommerce-purchase-without-account-database-error/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Add and Edit Images with Joomla JCE Editor</title>
		<link>http://www.kliky.net/howto/add-and-edit-images-with-joomla-jce-editor/</link>
		<comments>http://www.kliky.net/howto/add-and-edit-images-with-joomla-jce-editor/#comments</comments>
		<pubDate>Thu, 27 Mar 2008 21:32:10 +0000</pubDate>
		<dc:creator>ed</dc:creator>
		
		<category>How To</category>

		<category>Joomla</category>

		<guid isPermaLink="false">http://www.kliky.net/howto/add-and-edit-images-with-joomla-jce-editor/</guid>
		<description><![CDATA[This addition to the Joomla Documentation addresses adding/editing/managing images for both Static and regular Content Items.
The editor an Administrator will be using is JCE Editor, which provides more advanced tools then Joomla&#8217;s default editor TinyMCE.
The following instructions will be based on editing an existing Content Item. To add an image you would:
=> select Content Items [...]]]></description>
			<content:encoded><![CDATA[<p>This addition to the Joomla Documentation addresses adding/editing/managing images for both Static and regular Content Items.</p>
<p>The editor an Administrator will be using is JCE Editor, which provides more advanced tools then Joomla&#8217;s default editor TinyMCE.</p>
<p>The following instructions will be based on editing an existing Content Item. To add an image you would:</p>
<p>=> select Content Items Manager<br />
=> select a Content Item<br />
=> place curser at intended image location<br />
=> select Insert/Edit Image icon<br />
=> select appropriate Folder<br />
=> select Upload Icon<br />
=> browse for appropriate image<br />
=> add Name for image<br />
=> select preferred options (overwriting)<br />
=> select image you just uploaded<br />
=> select Insert</p>
<p>The image will now be inserted into your Content Item. You can also adjust things such as Size, Alignment, and Border size and color within the Insert/Edit control panel.</p>
<p>You can now Save your Content Item and view with the image you&#8217;d just uploaded. As a note; Adding/Editing images through the Administrator handles images technically different then going through the steps of Adding New Memorial or Gallery Item. However, it is not noticable on the front end.
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kliky.net/howto/add-and-edit-images-with-joomla-jce-editor/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
