<?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>PHP, CSS, HTML, Web &#38; beyond &#187; Wordpress</title>
	<atom:link href="http://www.joseairosa.com/category/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.joseairosa.com</link>
	<description>Programming Tips &#38; Tricks</description>
	<lastBuildDate>Mon, 23 Jan 2012 12:46:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>WP-RESTful WordPress Plugin</title>
		<link>http://www.joseairosa.com/2010/06/29/wp-restful-wordpress-plugin/</link>
		<comments>http://www.joseairosa.com/2010/06/29/wp-restful-wordpress-plugin/#comments</comments>
		<pubDate>Tue, 29 Jun 2010 10:56:51 +0000</pubDate>
		<dc:creator>José P. Airosa</dc:creator>
				<category><![CDATA[Guide]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[extension]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[rest]]></category>
		<category><![CDATA[restful]]></category>

		<guid isPermaLink="false">http://www.joseairosa.com/?p=246</guid>
		<description><![CDATA[Hello! I&#8217;m 99% sure that you already heard about APIs or REST APIs, it&#8217;s what Twitter, flickr and a lot more companies use to share they&#8217;re resources with a consumer. A consumer can be anything from a website (for example, showing your Twitter updates on your blog or personal website) to a desktop / mobile [...]]]></description>
			<content:encoded><![CDATA[<p>Hello!</p>
<p>I&#8217;m 99% sure that you already heard about APIs or REST APIs, it&#8217;s what Twitter, flickr and a lot more companies use to share they&#8217;re resources with a consumer.<br />
A consumer can be anything from a website (for example, showing your Twitter updates on your blog or personal website) to a desktop / mobile application (iPhone, Android, Windows Mobile, &#8230;).<br />
This is possible because all information sent to and from the API is encoded in either two common, inter-platform language, XML and JSON.<br />
The difference between a regular API and a REST API is on the way they work. A REST API requires two entities to work, a client and a server.</p>
<h3><a title='Original Link: http://wordpress.org/extend/plugins/wp-restful/'  href="http://www.joseairosa.com/?Ndwkpfbo" target="_blank">Download WP-RESTful</a> <em>(Version 0.1)</em></h3>
<h3><a title='Original Link: http://wordpress.org/extend/plugins/wp-restful-users-plugin/'  href="http://www.joseairosa.com/?MHcP7Ghn" target="_blank">Download WP-RESTful Users Plugin</a> <em>(Version 0.1)</em></h3>
<h3><a title='Original Link: http://wordpress.org/extend/plugins/wp-restful-categories-plugin/'  href="http://www.joseairosa.com/?EyjonMf1" target="_blank">Download WP-RESTful Categories Plugin</a> <em>(Version 0.1)</em></h3>
<h3><a title='Original Link: http://wordpress.org/extend/plugins/wp-restful-tags-plugin/'  href="http://www.joseairosa.com/?tKIJ3z9F" target="_blank">Download WP-RESTful Tags Plugin</a> <em>(Version 0.1)</em></h3>
<h2 style="margin-top: 15px;"><em><strong>Follow me for  real-time updates</strong></em></h2>
<p><a title='Original Link: http://twitter.com/joseairosa'  href="http://www.joseairosa.com/?cXam8aSF">Twitter</a></p>
<h2 style="margin-top: 15px;"><em><strong>How does it work?</strong></em></h2>
<p>WP-RESTful uses OAuth, a widely, commonly and open source API implementation used all over the World (Wide Web).<br />
The way it work is fairly simple.</p>
<p>First a Consumer registers with a Server. At this point the Server will provide the Consumer with 2 tokens, a public and a private token. The public token will be used to communicate and identify the Consumer with the Server while the private token will be stored locally for security and integrity reasons.<br />
After this the Consumer will request the Server with a Request Token. This Request Token will be used to initiate the Authentication Protocol in where the Consumer will be required to authorize the Server.<br />
The Server will create 2 new token (definitive tokens). They will be our authentication tokens.</p>
<p>I know this sounds and seems complicated but you won&#8217;t need to do anything as the Plugin will do almost everything for you (Registration and Authentication process are manual).</p>
<h2 style="margin-top: 15px;"><em><strong>Plugin features</strong></em></h2>
<ul>
<li>Add new Plugins to API Plugin to extend functionalities to any way you want/need. (See next group)</li>
<li>Fully manageable Client and Server side.</li>
<li>Ability to choose what fields are allowed to be returned to the consumer.</li>
<li>Ability to restrict modules to OAuth authentication process or liberated them and make them open.</li>
<li>Load balance system where you can specify how many requests a given consumer is allowed in a 60 minute timeframe.</li>
<li>Out of the box Post and Comments management.</li>
<li>And much more&#8230;</li>
</ul>
<h2 style="margin-top: 15px;"><em><strong>Plugins</strong></em></h2>
<p>As stated on &#8220;Plugin Features&#8221; you have the ability to develop and/or add new modules to your REST API. This means, for example, if you use a plugin like WP E-Commerce, you can develop a plugin for the REST API in order to provide support for WP E-Commerce resources.<br />
The way these plugins are developed is very similar to how plugins for WordPress are developed.<br />
You can see this video that explains how plugins work and how you can develop them.</p>
<h2 style="margin-top: 15px;"><em><strong>Requirements?</strong></em></h2>
<p>All requirements for the plugin  to work properly are addressed by the plugin itself, upon activation.  You can see your system status on WP-RESTful link after activation the  plugin.</p>
<h2 style="margin-top: 15px;"><em><strong>How to install?</strong></em></h2>
<p>This plugin is installed like any other WordPress plugin out there.</p>
<ol>
<li>First you need to download it from WordPress Plugin Repository.</li>
<li>Upload the contents of the compacted file to your plugin folder on  your WordPress installation.</li>
<li>Go to your WordPress Administration page and activate the Plugin (Plugins → Installed → WP-RESTful → Activate)</li>
<li>Create a new page, name it API, set the permalink to /api and set the content as &#91;REST_return&#93; and save the page.</li>
<li>Go to WP-RESTful → WP-RESTful to check your system status.</li>
</ol>
<h2 style="margin-top: 15px;"><em><strong><em><strong>I need  help!</strong></em></strong></em></h2>
<p>Check these two videos. They will help you starting up.</p>
<div style="margin: 10px 0;"><object width="556" height="438"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=12940958&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=12940958&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="556" height="438"></embed></object>
<p><a title='Original Link: http://vimeo.com/12940958'  href="http://www.joseairosa.com/?byFNurYF">WP-RESTful &#8211; Starting and setting up</a> from <a title='Original Link: http://vimeo.com/joseairosa'  href="http://www.joseairosa.com/?QcbEwEWF">José Airosa</a> on <a title='Original Link: http://vimeo.com'  href="http://www.joseairosa.com/?tz2GLZGJ">Vimeo</a>.</p>
</div>
<div style="margin: 10px 0;"><object width="556" height="438"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=12941005&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=12941005&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="556" height="438"></embed></object>
<p><a title='Original Link: http://vimeo.com/12941005'  href="http://www.joseairosa.com/?TljfG9PY">WP-RESTful &#8211; Working with Plugins</a> from <a title='Original Link: http://vimeo.com/joseairosa'  href="http://www.joseairosa.com/?QcbEwEWF">José Airosa</a> on <a title='Original Link: http://vimeo.com'  href="http://www.joseairosa.com/?tz2GLZGJ">Vimeo</a>.</p>
</div>
<p>This post will be updated, if needed, to reflect changes made to the  plugin.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.joseairosa.com/2010/06/29/wp-restful-wordpress-plugin/feed/</wfw:commentRss>
		<slash:comments>71</slash:comments>
		</item>
		<item>
		<title>BarCampPT Talk</title>
		<link>http://www.joseairosa.com/2010/06/06/barcamppt-talk/</link>
		<comments>http://www.joseairosa.com/2010/06/06/barcamppt-talk/#comments</comments>
		<pubDate>Sun, 06 Jun 2010 00:38:40 +0000</pubDate>
		<dc:creator>José P. Airosa</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[barcamppt]]></category>
		<category><![CDATA[slideshow]]></category>
		<category><![CDATA[talk]]></category>

		<guid isPermaLink="false">http://www.joseairosa.com/?p=238</guid>
		<description><![CDATA[Hello! Today I presented a talk at BarCampPT about WordPress and its Plugins. The reactions wore fantastic and I would like to share the presentation documents. Warning: The presentation was made in Portuguese.]]></description>
			<content:encoded><![CDATA[<p>Hello!</p>
<p>Today I presented a talk at <a title='Original Link: http://barcamppt.org/wiki/index.php/Primavera10'  href="http://www.joseairosa.com/?hnKvIb_e">BarCampPT</a> about WordPress and its Plugins. The reactions wore fantastic and I would like to share the presentation documents.</p>
<p>Warning: The presentation was made in <span style="text-decoration: underline;">Portuguese</span>.</p>
<iframe src="http://www.slideshare.net/slideshow/embed_code/4418509" width="550" height="451" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe><br/><br/>
]]></content:encoded>
			<wfw:commentRss>http://www.joseairosa.com/2010/06/06/barcamppt-talk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Plugin &#8211; Parallel Loading System</title>
		<link>http://www.joseairosa.com/2010/05/17/wordpress-plugin-parallel-loading-system/</link>
		<comments>http://www.joseairosa.com/2010/05/17/wordpress-plugin-parallel-loading-system/#comments</comments>
		<pubDate>Mon, 17 May 2010 17:04:21 +0000</pubDate>
		<dc:creator>José P. Airosa</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[image optimization]]></category>
		<category><![CDATA[loading]]></category>
		<category><![CDATA[parallel]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[speed improve]]></category>
		<category><![CDATA[system]]></category>

		<guid isPermaLink="false">http://www.joseairosa.com/?p=138</guid>
		<description><![CDATA[The WP-PLS (short for Parallel Loading System) is a WordPress plugin that will enhance the loading efficiency of your Blog. It's very simple to use and it will require a small amount of time to configure in the start.]]></description>
			<content:encoded><![CDATA[<p>Hello!</p>
<p>The WP-PLS (short for Parallel Loading System) is a WordPress plugin that will enhance the loading efficiency of your Blog. It&#8217;s very simple to use and it will only require a small amount of time to configure at the start.</p>
<h3><a title='Original Link: http://wordpress.org/extend/plugins/parallel-loading-system/'  href="http://www.joseairosa.com/?aLdgCt33" target="_blank">Download from WordPress Plugin Repository</a> <em>(Updated to version 0.1.8)</em></h3>
<h2 style="margin-top: 30px; margin-bottom: 10px;"><em><strong>Follow me for real-time updates</strong></em></h2>
<p><a title='Original Link: http://twitter.com/joseairosa'  href="http://www.joseairosa.com/?cXam8aSF">Twitter</a></p>
<h2 style="margin-top: 30px; margin-bottom: 10px;"><em><strong>Why use it?</strong></em></h2>
<p>If you have an image intensive Blog, or even if you don&#8217;t, this plugin will boost the loading time of your Blog. The more images you have the more it will improve.</p>
<p>The amount of people that will visit your website for the first time or visit with an empty cache or disabled cache is huge, therefore, the best your website performs on that first visit the more chances that person will remain to view your website.</p>
<p>It is also known that nowadays, Google (and other search engines), are taking into account, for ranking purposes, your website page speed. Google Bot does not conserve a cache when it visits your website, so, the faster your website loads the more chances you have to rank higher.</p>
<p>This plug will <strong><span style="text-decoration: underline;">not</span></strong> change anything on your Blog. Every change that it makes will be processed in real time, right before the HTML code of your Blog is sent to the browser.</p>
<h2 style="margin-top: 30px; margin-bottom: 10px;"><em><strong>How does it work?</strong></em></h2>
<p>Standard HTTP v1.1 requests only allow 2 connections, at the same time, from the same  domain.</p>
<p>This plugin will virtualize connections, through defined  subdomains. You can have as many subdomains as you like, but I do  recomend using a maximum of 5.</p>
<p style="text-align: center;"><a href="http://www.joseairosa.com/wp-content/uploads/2010/05/plugin1-e1274117124373.jpg"><img class="size-full wp-image-156 aligncenter" title="WP-PLS Comparison" src="http://www.joseairosa.com/wp-content/uploads/2010/05/plugin1-e1274117124373.jpg" alt="WP-PLS Comparison" width="551" height="223" /></a></p>
<h2 style="margin-top: 30px; margin-bottom: 10px;"><em><strong>Requirements?</strong></em></h2>
<p>The plugin is programmed to be aware of this requirements, and if not fulfilled it will not change anything on your Blog.<br />
<span style="text-decoration: underline;">It will not break your Blog code!</span></p>
<ul>
<li>Your server needs to have a working <a title='Original Link: http://php.net/manual/en/book.image.php'  href="http://www.joseairosa.com/?tjCK3N_W">GD Library</a> module for  PHP.</li>
<li>You should have a PHP installation with a minimum version of <strong>5.1.3</strong></li>
<li>Access to your server Administration Painel (cPanel, DirectAdmin, Plesk) in order to create new sub-domains for your domain.<br />
Lets say your domain is <strong>wp-pls.com</strong>. You will need to create domains like<br />
image1.<strong>wp-pls.com</strong><br />
image2.<strong>wp-pls.com</strong><br />
&#8230;</li>
</ul>
<h2 style="margin-top: 30px; margin-bottom: 10px;"><em><strong>How to install?</strong></em></h2>
<p>This plugin is installed like any other WordPress plugin out there.</p>
<ol>
<li>First you need to download it from WordPress Plugin Repository.</li>
<li>Upload the contents of the compacted file to your plugin folder on your WordPress installation.</li>
<li>Go to your WordPress Administration page and activate the Plugin (Plugins → Installed → WP-PLS → Activate)</li>
<li>Go to Settings → Parallel Loading System</li>
</ol>
<h2 style="margin-top: 30px; margin-bottom: 10px;"><em><strong>Plugin features?</strong></em></h2>
<p>Some of the features that you can expect when using this plugin:</p>
<ul>
<li>Automatic Image Optimization.</li>
<li>Parallelize HTTP connections.</li>
<li>Page speed improvement.</li>
<li>Auto-Path find (Automatically find server root path, sub-domain path, plugin resources path&#8230;).</li>
<li>Cache loss minimization.</li>
<li>Sub-domain real-time health tracking.</li>
<li>Auto recovery from resource files bad sync.</li>
<li>Ability to activate / deactivate sub-domains</li>
<li>Plugin Updates aware. (automatically re-sync files and database after an update)</li>
</ul>
<h2 id="whats-in-the-cooking-pan" style="margin-top: 30px; margin-bottom: 10px;"><em><strong>What&#8217;s in the cooking pan?</strong></em></h2>
<p>This was only the first release of the plugin. I&#8217;ve got a lot of new ideas that I would like to see implemented on next releases.<br />
Some of them are:</p>
<ul>
<li>Also parallelize CSS and JavaScript loading.</li>
<li>Add support to also load external images. At the moment it will only load locally stored images.</li>
<li>Add real-time rewrite functions to CSS and JavaScript. That way, images that have been called from the CSS file will also be parallelized.</li>
<li>Overall improve of the code.</li>
<li>Add options to manage image quality rendering.</li>
<li>Bug fixes (when found or reported).</li>
<li>And much more&#8230;</li>
</ul>
<p>If you have any features that you would like to see implemented, please don&#8217;t hesitate to <a title='Original Link: #comments'  href="http://www.joseairosa.com/?SLazTfgR">comment this post</a>, <a title='Original Link: http://twitter.com/joseairosa'  href="http://www.joseairosa.com/?cXam8aSF" target="_blank">tweet me</a> or <a title='Original Link: mailto:me@joseairosa.com'  href="http://www.joseairosa.com/?gfylCmKb" target="_blank">mail me</a> <img src='http://www.joseairosa.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<h2 style="margin-top: 30px; margin-bottom: 10px;"><em><strong><em><strong>I need help!</strong></em></strong></em></h2>
<p>It&#8217;s normal if you run into problems and I&#8217;m here to tell you how to fix them.</p>
<p>If for any reason the plugin is telling you that it doesn&#8217;t have permissions to alter a given file you will need to access your server, using your favorite FTP Client (Filezilla, Cyberduck, FlashFXP&#8230;) and change the permissions of the file to <strong>777</strong>. You can revert them back to <strong>644</strong> (normal permissions of a file) after the plugin finishes the modifications.</p>
<p>If you get a sub-domain health notification stating that your sub-domain is returning a 500 HTTP error code the most probable explanation is that your sub-domain folder has <strong>777</strong> permissions. Revert them back to <strong>755</strong> and you should be fine.</p>
<p>If you have any further questions please don&#8217;t hesitate to <a title='Original Link: mailto:me@joseairosa.com'  href="http://www.joseairosa.com/?gfylCmKb">send me an email</a> or add a comment on this post.</p>
<h2 style="margin-top: 30px; margin-bottom: 10px;"><em><strong>Creating sub-domains on cPanel?</strong></em></h2>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/-6NeRF_G8EQ&amp;hl=pt_PT&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="385" src="http://www.youtube.com/v/-6NeRF_G8EQ&amp;hl=pt_PT&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<h2 style="margin-top: 30px; margin-bottom: 10px;"><em><strong><em><strong>Creating  sub-domains on Plesk?</strong></em></strong></em></h2>
<ol>
<li>Log in to Plesk</li>
<li>Once logged in, click the &#8216;Home&#8217; button in the left navigation  frame.</li>
<li>Click on the domain name you wish to create a subdomain for.</li>
<li>Click on the ‘Subdomains’ button. This will take you to the  subdomain manager.</li>
<li>Add a new subdomain by clicking the corresponding button (Add New  Subdomain).</li>
<li>Enter the subdomain in the associated field. The SSL support  checkbox is optional, and should be used if you intend on using SSL with  your subdomain.</li>
<li>If you’d like to use the same FTP information as your main domain to  access the subdomain, skip down to the ‘Services’ section. If not,  select the checkbox ‘Create a separate FTP user account for this  subdomain’. Enter an FTP username and password, along with a hard disk  quota. If you do not enter a hard disk quota, the subdomain will be  allowed to use all resources included with your main domain.</li>
<li>In the ‘Services’ section, it is advised to check all services. This  will ensure that your subdomain can support all the features our  hosting accounts offer.</li>
<li>Click the ‘OK’ button to create the subdomain.</li>
</ol>
<h2 style="margin-top: 30px; margin-bottom: 10px;"><em><strong><em><strong>Creating  sub-domains on DirectAdmin?</strong></em></strong></em></h2>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="640" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/wUgb7KkKaiA&amp;hl=pt_PT&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="640" height="385" src="http://www.youtube.com/v/wUgb7KkKaiA&amp;hl=pt_PT&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<h2 style="margin-top: 30px; margin-bottom: 10px;"><em><strong><em><strong>Creating  sub-domains on manually on your server?</strong></em></strong></em></h2>
<p>To create a sub-domain, if don&#8217;t use a Control Panel, edit your http.conf file (normally located on <em>/etc/http/conf/http.conf</em>) and add the following at the end:</p>
<p><code>NameVirtualHost *:443</code></p>
<p><code>&lt;VirtualHost *:80&gt;<br />
ServerName YOUR SUBDOMAIN<br />
DocumentRoot ROOT TO SUBDOMAIN PATH<br />
ErrorLog ROOT TO SUBDOMAIN LOG<br />
&lt;/VirtualHost&gt;</code></p>
<p><code>&lt;VirtualHost *:443&gt;<br />
ServerName YOUR SUBDOMAIN<br />
DocumentRoot ROOT TO SUBDOMAIN PATH (SSL)<br />
ErrorLog ROOT TO SUBDOMAIN LOG (SSL)<br />
&lt;/VirtualHost&gt;</code></p>
<p>This post will be updated, if needed, to reflect changes made to the plugin.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.joseairosa.com/2010/05/17/wordpress-plugin-parallel-loading-system/feed/</wfw:commentRss>
		<slash:comments>196</slash:comments>
		</item>
		<item>
		<title>WP e-commerce SKU on variations</title>
		<link>http://www.joseairosa.com/2010/03/30/wp-e-commerce-sku-on-variations/</link>
		<comments>http://www.joseairosa.com/2010/03/30/wp-e-commerce-sku-on-variations/#comments</comments>
		<pubDate>Tue, 30 Mar 2010 21:30:52 +0000</pubDate>
		<dc:creator>José P. Airosa</dc:creator>
				<category><![CDATA[Guide]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[e-commerce]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[sku]]></category>
		<category><![CDATA[wordpress plugin]]></category>
		<category><![CDATA[wp e-commerce]]></category>

		<guid isPermaLink="false">http://www.joseairosa.com/?p=124</guid>
		<description><![CDATA[UPDATE &#8211; 22/02/2011 Files for the 3.7.8 version of wp-e-commerce. I have provided only the altered files and full plugin if you just want to replace it.DON&#8217;T FORGET TO BACKUP FIRST!!Download &#8594; http://bit.ly/3-7-8-SKU UPDATE &#8211; 01/09/2010 If you need additions that are not contemplated in this fix package you can email me for a specific [...]]]></description>
			<content:encoded><![CDATA[<h2><strong>UPDATE &#8211; 22/02/2011</strong></h2>
<p>Files for the 3.7.8 version of wp-e-commerce. I have provided only the altered files and full plugin if you just want to replace it.<br/>DON&#8217;T FORGET TO BACKUP FIRST!!<br/><br/>Download &rarr; <a title='Original Link: http://bit.ly/3-7-8-SKU'  href="http://www.joseairosa.com/?2S2axg2s" target="_blank">http://bit.ly/3-7-8-SKU</a><br/></p>
<h2><em>UPDATE &#8211; 01/09/2010</em></h2>
<p>If you need additions that are not contemplated in this fix package you can email me for a specific quote.</p>
<h2><em>UPDATE &#8211; 18/05/2010</em></h2>
<p>There has been an update on wp-e-commerce a few days ago and if you have applied my add-on you&#8217;ll probably have problems with the plugin. Post a comment or <a title='Original Link: mailto:me@joseairosa.com'  href="http://www.joseairosa.com/?gfylCmKb">email me</a> if you&#8217;re having problems.</p>
<p>===============================</p>
<p>If you are using wp-ecommerce plugin for wordpress and you ran into some missing functionalities this might help you.</p>
<p>The specific mod I&#8217;ll show you today will enable you to specify SKU to any variation on any product on your system.</p>
<p>I don&#8217;t know how proficient your are on programming WordPress, but let me know if you run into any difficulty.</p>
<p>So, first of all you need to add a new field on your database on table <strong>wp_wpsc_variations_properties</strong> called &#8220;sku&#8221;. I added this field as <strong>varchar</strong> with a length of <strong>64 characters</strong>, but do adapt this one to fit your needs.</p>
<p><strong>Backup your e-commerce plugin folder.</strong></p>
<p><a title='Original Link: http://bit.ly/3-7-8-SKU'  href="http://www.joseairosa.com/?2S2axg2s">DOWNLOAD 3.7.8 FILES HERE</a></p>
<p>This should get you up and running. Let me know if you need anything.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.joseairosa.com/2010/03/30/wp-e-commerce-sku-on-variations/feed/</wfw:commentRss>
		<slash:comments>63</slash:comments>
		</item>
	</channel>
</rss>

