<?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>from me for you world</title>
	<atom:link href="http://noemet.com/feed" rel="self" type="application/rss+xml" />
	<link>http://noemet.com</link>
	<description>Linux Knowledges and Troubleshooting</description>
	<lastBuildDate>Fri, 03 Sep 2010 08:12:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>How to kill processes (application) in console mode</title>
		<link>http://noemet.com/how-to-kill-processes-application-in-console-mode.html</link>
		<comments>http://noemet.com/how-to-kill-processes-application-in-console-mode.html#comments</comments>
		<pubDate>Thu, 02 Sep 2010 06:37:31 +0000</pubDate>
		<dc:creator>sugi</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[console]]></category>
		<category><![CDATA[kill]]></category>
		<category><![CDATA[ps x]]></category>

		<guid isPermaLink="false">http://noemet.com/?p=1117</guid>
		<description><![CDATA[Actually this is my (late) response for my friend yalmove. Sorry friend. To find out what process running in the memory/ computer through console mode is using ps x command. Let say you use ubuntu, type this command in your console #sudo ps x Then you will see lots of processes running. The number in [...]]]></description>
			<content:encoded><![CDATA[<p>Actually this is my (late) response for my friend yalmove. Sorry friend.<br />
To find out what process running in the memory/ computer through console mode is using ps x command.<br />
Let say you use ubuntu, type this command in your console<br />
#sudo ps x<br />
<img src="http://i212.photobucket.com/albums/cc195/rajamalingjagung/noemet/snapshot_ps_x.png" border="0" alt="snapshot dari photobuckeeet" /><br />
Then you will see lots of processes running. The number in the left side is an unique number for an application. That number that we will use to shut off the application when it hang.</p>
<p>This is how to shut off the application in console, let&#8217;s say you have open office writer running , the ps x command will result something like this<br />
4223 ? R+  1:00 /opt/openoffice.org3/program/swriter</p>
<p>Kill it by typing this command<br />
#sudo kill 4223</p>
<p>Then the application will close.</p>
]]></content:encoded>
			<wfw:commentRss>http://noemet.com/how-to-kill-processes-application-in-console-mode.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>squid cache_dir performance</title>
		<link>http://noemet.com/squid-cache_dir-performance.html</link>
		<comments>http://noemet.com/squid-cache_dir-performance.html#comments</comments>
		<pubDate>Thu, 02 Sep 2010 06:27:41 +0000</pubDate>
		<dc:creator>sugi</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[cache_dir]]></category>
		<category><![CDATA[squid]]></category>

		<guid isPermaLink="false">http://noemet.com/?p=1114</guid>
		<description><![CDATA[I m using squid in my ubuntu 9.10 server edition. I always try to look for the best configuration for my network. My server spec is Pentium III with 128 MB and 10 GB harddisk. This is the part of the squid configuration in /etc/squid/squid.conf I use. cache_mem 50 MB cache_swap_low 60 cache_swap_high 70 cache_dir [...]]]></description>
			<content:encoded><![CDATA[<p>I m using squid in my ubuntu 9.10 server edition. I always try to look for the best configuration for my network. My server spec is Pentium III with 128 MB and 10 GB harddisk.</p>
<p>This is the part of the squid configuration in /etc/squid/squid.conf I use.</p>
<div style="color: red;">cache_mem 50 MB<br />
cache_swap_low 60<br />
cache_swap_high 70<br />
cache_dir ufs /mnt/sda6/ 2960 10 256<br />
access_log /var/log/squid/access.log squid</div>
<p>I divided the harddisk into 6 and 4 GB partition. The 4GB is special for the squid disk cache.<br />
I always change the cache_mem and cache_dir size for maximum performance of my network.<br />
Because I only have 128 MB in memory, I put 50 MB only for my squid and the rest for my server system.<br />
Then limit the cache swap in 60 to 70%.<br />
Finally the cache_dir, I use 2960 mean 2,9 GB of 3,7 GB (it should 4GB) or about 80% of the disk space I use for squid. I use 80% from the squid manual setting.<br />
Then using this formula from <a href="http://heru-setya.blogspot.com/2009/06/menghitung-disk-cache.html">a friend</a> ((( x / y ) / 256 ) / 256 ) * 2 = L1<br />
x is the size of the partition, in KB unit.<br />
y is the size of object that 13KB average<br />
L1 is the option in cache_dir means how many directory exist in the partition<br />
L2 is the option in cache_dir means how many folder inside the L1 folder. Usually 256<br />
So my calculation is this ((( 2960000 KB / 13 KB) / 256 ) / 256 ) * 2 = 6.9</p>
<p>Then the cache dir will be </p>
<div style="color: red;">cache_dir 2960 7 256</div>
<p>I still watch the performance of this setting. I don&#8217;t know is it still the best setting for the growing network in my office or not. But we&#8217;ll see about that.</p>
]]></content:encoded>
			<wfw:commentRss>http://noemet.com/squid-cache_dir-performance.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Evolution-alarm-notify crash ubuntu 9</title>
		<link>http://noemet.com/evolution-alarm-notify-crash-ubuntu-9.html</link>
		<comments>http://noemet.com/evolution-alarm-notify-crash-ubuntu-9.html#comments</comments>
		<pubDate>Fri, 27 Aug 2010 03:52:04 +0000</pubDate>
		<dc:creator>sugi</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[crash]]></category>
		<category><![CDATA[evolution]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://noemet.com/?p=1078</guid>
		<description><![CDATA[I got this message on one pc today. &#8220;Failed to contact configuration server; some possible causes are that you need to enable TCP/IP networking for ORBit, or you have stale NFS locks due to a system crash. See http://projects.gnome.org/gconf/ for information&#8221; According to a discussion in bugs.launchpad.net I will try a suggestion posted by a [...]]]></description>
			<content:encoded><![CDATA[<p>I got this message on one pc today.</p>
<p>&#8220;Failed to contact configuration server; some possible causes are that you need to enable TCP/IP networking for ORBit, or you have stale NFS locks due to a system crash. See http://projects.gnome.org/gconf/ for information&#8221;</p>
<p>According to a discussion in bugs.launchpad.net I will try a suggestion posted by a friend right there.</p>
<p>mv ~/.gconfd/saved_state saved_state.old&#8221;</p>
<p>Restart the computer and it works.</p>
]]></content:encoded>
			<wfw:commentRss>http://noemet.com/evolution-alarm-notify-crash-ubuntu-9.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Canon LBP-3050 laser printer in Slackware 13</title>
		<link>http://noemet.com/canon-lbp-3050-laser-printer-in-slackware-13.html</link>
		<comments>http://noemet.com/canon-lbp-3050-laser-printer-in-slackware-13.html#comments</comments>
		<pubDate>Wed, 18 Aug 2010 02:37:55 +0000</pubDate>
		<dc:creator>sugi</dc:creator>
				<category><![CDATA[Printer]]></category>
		<category><![CDATA[Slackware]]></category>
		<category><![CDATA[canon]]></category>
		<category><![CDATA[lbp3050]]></category>

		<guid isPermaLink="false">http://noemet.com/?p=1094</guid>
		<description><![CDATA[Try to install CAPT_Printer_Driver_for_Linux_V190_uk_EN.tar.gz that I downloaded from support-ph.canon-asia.com. You can download it here too. Because there are only rpm files inside the Driver folder, we can change the rpm to tgz. #su #rpm2tgz *.rpm Install them. #installpkg *.tgz Then edit /etc/ccpd.conf #nano /etc/ccpd.conf add this line DevicePath /dev/usb/lp0 make file /var/ccpd/fifo0 #mkdir -p /var/ccpd/ [...]]]></description>
			<content:encoded><![CDATA[<p>Try to install CAPT_Printer_Driver_for_Linux_V190_uk_EN.tar.gz that I downloaded from support-ph.canon-asia.com. You can download it <a href="http://www.ziddu.com/downloadlink/7735384/CAPT_Printer_Driver_for_Linux_Driver_V190_uk_EN.tar.gz" target="_blank">here</a> too.<br />
Because there are only rpm files inside the Driver folder, we can change the rpm to tgz.<br />
#su<br />
#rpm2tgz *.rpm<br />
Install them.<br />
#installpkg *.tgz</p>
<p>Then edit /etc/ccpd.conf<br />
#nano /etc/ccpd.conf<br />
add this line</p>
<p>DevicePath /dev/usb/lp0</p>
<p>make file /var/ccpd/fifo0<br />
#mkdir -p /var/ccpd/<br />
#mkfifo /var/ccpd/fifo0<br />
#chmod 777 /var/ccpd/fifo0<br />
#chown root /var/ccpd/fifo0<br />
#chmod -R a+rx /usr/share/cups/model</p>
<p>Restart cups<br />
#/etc/rc.d/rc.cups restart</p>
<p>Type this command to add a printer to /var/ccpd/fifo0<br />
#/usr/sbin/lpadmin -p LBP3050 -m CNCUPSLBP3050CAPTK.ppd -v ccp:/var/ccpd/fifo0 -E</p>
<p>Arrange the output of ccpd to /dev/usb/lp0<br />
#/usr/sbin/ccpdadmin -p LBP3050 -o /dev/usb/lp0</p>
<p>Copy ccpd command to rc.d so it will restart everytime the computer boot<br />
#cp /usr/sbin/ccpd /etc/rc.d/rc.ccpd</p>
<p>Restart ccpd<br />
#/etc/rc.d/rc.ccpd restart</p>
<p>Check to your browser with http://localhost:631<br />
There should be your LBP3050 right there. Print test page. Mine is work.</p>
]]></content:encoded>
			<wfw:commentRss>http://noemet.com/canon-lbp-3050-laser-printer-in-slackware-13.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Slackware 13.1 already?</title>
		<link>http://noemet.com/slackware-13-1-already.html</link>
		<comments>http://noemet.com/slackware-13-1-already.html#comments</comments>
		<pubDate>Mon, 16 Aug 2010 11:37:27 +0000</pubDate>
		<dc:creator>sugi</dc:creator>
				<category><![CDATA[Slackware]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[slackware 13]]></category>

		<guid isPermaLink="false">http://noemet.com/?p=1075</guid>
		<description><![CDATA[wow I missed this news. I don&#8217;t know if slackware now has gone through 13.1 version. Here is the news : === That&#8217;s right, another stable release of Slackware is finally ready to go. Slackware 13.1 is available in both 32-bit x86 and 64-bit x86_64 editions, and brings with it many major improvements, like KDE [...]]]></description>
			<content:encoded><![CDATA[<p>wow I missed this news. I don&#8217;t know if slackware now has gone through 13.1 version. Here is the news :<br />
===<br />
That&#8217;s right, another stable release of Slackware is finally ready to go. Slackware 13.1 is available in both 32-bit x86 and 64-bit x86_64 editions, and brings with it many major improvements, like KDE SC version 4.4.3, the 2.6.33.4 Linux kernel, a new toolchain, updated libraries, and major applications such as Firefox and Thunderbird.</p>
<p>More details may by found in the official announcement and in the release notes. For a complete list of included packages, see the package list.</p>
<p>Please consider supporting the Slackware project by picking up a copy of the Slackware 13.1 release from the Slackware Store. The discs are off to replication, but we&#8217;re accepting pre-orders for the official 6 CD set and the DVD. The CD set is the 32-bit x86 release, while the DVD is a special edition dual-sided disc with the 32-bit x86 release on one side and the 64-bit x86_64 release on the other. And, we still have T-shirts and other Slackware stuff there, so have a look around. Thanks to our subscribers and supporters for keeping Slackware going all these years.</p>
<p>Thanks are again due to the Slackware crew, the developers of slackbuilds.org, the community on linuxquestions.org, Slackware IRC channels, and everyone else who helped out with this release.</p>
<p>Have fun, and enjoy the new stable release!</p>
<p>Pat and the Slackware crew</p>
<p>===</p>
]]></content:encoded>
			<wfw:commentRss>http://noemet.com/slackware-13-1-already.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>vino-server setting</title>
		<link>http://noemet.com/vino-server-setting.html</link>
		<comments>http://noemet.com/vino-server-setting.html#comments</comments>
		<pubDate>Mon, 09 Aug 2010 01:28:33 +0000</pubDate>
		<dc:creator>sugi</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[vino]]></category>

		<guid isPermaLink="false">http://noemet.com/?p=1082</guid>
		<description><![CDATA[Ubuntu 9.04 to 10.04 has application called vino. This is remote desktop application. But it has advance function compare to standard remote desktop that I usually use in System-Preferences-Remote Desktop menu. Vino server could run in the background and put it in rc.local which will be executed every computer start. And it will display ubuntu [...]]]></description>
			<content:encoded><![CDATA[<p>Ubuntu 9.04 to 10.04 has application called vino. This is remote desktop application. But it has advance function compare to standard remote desktop that I usually use in System-Preferences-Remote Desktop menu.</p>
<p>Vino server could run in the background and put it in rc.local which will be executed every computer start. And it will display ubuntu login area so the remote control can choose which user he will be enter to.</p>
<p>But now the question is how to configure the setting of this vino, while the standard remote desktop application could be easily be set in the system menu.</p>
<p>We need to go to terminal session.<br />
Application-Accesories-Terminal</p>
<p>Then type this command<br />
#sudo vino-preferences</p>
<p>The vino will  display the exact dialog box like standard remote desktop app.<br />
<img src="http://lh5.ggpht.com/_xROjKe4wXFI/Sk72SZttyYI/AAAAAAAAAu4/ISkd0wNpV5o/%5BUNSET%5D.png?imgmax=800" alt="vino-preferences" /></p>
<p>Set the setting you want and click close. Now your vino will run even your standard remote desktop is off.</p>
]]></content:encoded>
			<wfw:commentRss>http://noemet.com/vino-server-setting.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Minimum Requirements for Slackware 12.2</title>
		<link>http://noemet.com/minimum-requirements-for-slackware-12-2.html</link>
		<comments>http://noemet.com/minimum-requirements-for-slackware-12-2.html#comments</comments>
		<pubDate>Wed, 04 Aug 2010 07:45:37 +0000</pubDate>
		<dc:creator>sugi</dc:creator>
				<category><![CDATA[Slackware]]></category>

		<guid isPermaLink="false">http://noemet.com/?p=1066</guid>
		<description><![CDATA[Just a little experiment. I wonder if I install slackware 12.2 into old pc, is it work or not. I have amd athlon processor with 128 mb memory, 40 giga of hard drive, foxcon motherboard with intel chipset and integrated vga and sound card. So I install the slack into it. It worked perfectly well. [...]]]></description>
			<content:encoded><![CDATA[<p>Just a little experiment. I wonder if I install slackware 12.2 into old pc, is it work or not. I have amd athlon processor with 128 mb memory, 40 giga of hard drive, foxcon motherboard with intel chipset and integrated vga and sound card. So I install the slack into it. It worked perfectly well.<br />
Slackware has no problem to be installed in such machine. I even tried the kde. It worked fine but a little slow. But not that slow. I am satisfy with the result.</p>
]]></content:encoded>
			<wfw:commentRss>http://noemet.com/minimum-requirements-for-slackware-12-2.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>restore trash icon in dolphin &#8211; slackware 13</title>
		<link>http://noemet.com/restore-trash-icon-in-dolphin-slackware-13.html</link>
		<comments>http://noemet.com/restore-trash-icon-in-dolphin-slackware-13.html#comments</comments>
		<pubDate>Mon, 02 Aug 2010 03:26:35 +0000</pubDate>
		<dc:creator>sugi</dc:creator>
				<category><![CDATA[Slackware]]></category>
		<category><![CDATA[dolphin]]></category>

		<guid isPermaLink="false">http://noemet.com/?p=1047</guid>
		<description><![CDATA[I accidentally remove trash icon again in dolphin. This is the second one. I accidentally click on remove trash while I want to empty trash. The old one I just delete the .kde folder in /home/user to restore it. But it erased the mail setting in kmail too. Fortunately I have a backup in other [...]]]></description>
			<content:encoded><![CDATA[<p>I accidentally remove trash icon again in dolphin. This is the second one.<br />
I accidentally click on remove trash while I want to empty trash. The old one I just delete the .kde folder in /home/user to restore it. But it erased the mail setting in kmail too. Fortunately I have a backup in other folder.<br />
Today I discover a good news in http://forum.kde.org/viewtopic.php?f=66&#038;t=87237<br />
and there is a guy who tell us about what to do.</p>
<p>edit ~/.kde4/share/apps/kfileplaces/bookmarks.xml<br />
and add this line</p>
<div style="color: red;"><bookmark href="trash:/" ></p>
<p>  <info><br />
   <metadata owner="http://freedesktop.org" ><br />
    <bookmark:icon name="user-trash" /><br />
   </metadata><br />
   <metadata owner="http://www.kde.org" ><br />
    <id>1257057166/3</id><br />
    <issystemitem>true</issystemitem><br />
   </metadata><br />
  </info><br />
</bookmark></div>
<p>Now start dolphin, and the trash icon come back.</p>
]]></content:encoded>
			<wfw:commentRss>http://noemet.com/restore-trash-icon-in-dolphin-slackware-13.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jwimagerotator – NextGen Gallery in my web doesn’t work</title>
		<link>http://noemet.com/jwimagerotator-nextgen-gallery-in-my-web-doesnt-work-2.html</link>
		<comments>http://noemet.com/jwimagerotator-nextgen-gallery-in-my-web-doesnt-work-2.html#comments</comments>
		<pubDate>Sun, 25 Jul 2010 20:40:18 +0000</pubDate>
		<dc:creator>sugi</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[nextgen]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://noemet.com/?p=1050</guid>
		<description><![CDATA[NextGen Gallery is one of the best plugin for displaying images in our site in better way. You can browse this plugin in your plugins menu in your wordpress. After installing it and trying to activate, there is a message said I need jwimagerotator that i should download somewhere and put imagerotator.swf file in my [...]]]></description>
			<content:encoded><![CDATA[<p>NextGen Gallery is one of the best plugin for displaying images in our site in better way. You can browse this plugin in your plugins menu in your wordpress. After installing it and trying to activate, there is a message said I need jwimagerotator that i should download somewhere and put imagerotator.swf file in my uploads folder. It is a standar folder for uploading something. Ow use cpanel or ftp software to upload to your web server.<br />
When you finished with that then go back to wordpress and go to nextgen gallery setting, click option find slideshow. The slideshow function that need the jw image rotator. Download directly the jwimagerotator <a href="http://www.ziddu.com/downloadlink/10413004/imagerotator.zip">here</a>.</p>
<p>In the wordpress nextgen gallery setting go to option and slideshow. Fill in the box of Path to the Image Rotator (URL) with this</p>
<div style="color: red;">http://mydomain.com/wp-content/uploads/imagerotator.swf</div>
<p><img src="http://i212.photobucket.com/albums/cc195/rajamalingjagung/noemet/nextgen-gallery-swf.png" alt="" /><br />
The important thing is to write down the imagerotor.swf. I made mistake before with guessing it was only need to fill with the directory path only. And the slideshow is not working.</p>
<p>After that, upload your image with nextgen menu. Put it in necessary album and gallery.<br />
Then go to your post in Visual mode and add the nextgen media as an icon in your editing menu.<br />
Choose your desire setting. Then test it.</p>
<p>Download the nextgen-gallery manually <a href="http://www.ziddu.com/downloadlink/10413087/nextgen-gallery.zip">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://noemet.com/jwimagerotator-nextgen-gallery-in-my-web-doesnt-work-2.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Build wp-ecommerce plugin in wordpress</title>
		<link>http://noemet.com/build-wp-ecommerce-plugin-in-wordpress.html</link>
		<comments>http://noemet.com/build-wp-ecommerce-plugin-in-wordpress.html#comments</comments>
		<pubDate>Wed, 14 Jul 2010 02:58:20 +0000</pubDate>
		<dc:creator>sugi</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[e-commerce]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://noemet.com/?p=1044</guid>
		<description><![CDATA[Wp-E commerce plugin is one of the best plugin in wordpress for commercial use. We can build online shop built in wordpress platform. This is how to use it. I made example on my localhost computer that ready for server use. I m gonna start it with wordpress installation in the machine with the wordpress [...]]]></description>
			<content:encoded><![CDATA[<p>Wp-E commerce plugin is one of the best plugin in wordpress for commercial use. We can build online shop built in wordpress platform. This is how to use it. I made example on my localhost computer that ready for server use.<br />
I m gonna start it with wordpress installation in the machine with the wordpress 2.9.2 version and wp-e-commerce version 3.7.6.1 and craftycart themes.</p>
<p>Unzip wordpress latest to /var/www/htdoc/<br />
Copy /var/www/htdocs/wordpress/wp-config-sample.php to wp-config.php and edit it.</p>
<div style="color: red;">$cd /var/www/htdocs/wordpress<br />
$cp wp-config-sample.php wp-config.php<br />
$nano wp-config.php</div>
<p>Change these line</p>
<div style="color: red;">
/** The name of the database for WordPress */<br />
define(&#8216;DB_NAME&#8217;, &#8216;database name&#8217;);<br />
/** MySQL database username */<br />
define(&#8216;DB_USER&#8217;, &#8216;root&#8217;);<br />
/** MySQL database password */<br />
define(&#8216;DB_PASSWORD&#8217;, &#8216;dbpassword&#8217;);<br />
/** MySQL hostname */<br />
define(&#8216;DB_HOST&#8217;, &#8216;localhost&#8217;);</div>
<p>Open your browser and type localhost/wordpress/wp-admin/install.php<br />
Then follow the instruction there.</p>
<p>Now download your e-commerce plugin <a href="http://www.ziddu.com/downloadlink/10699672/wp-e-commerce.3.7.6.1.zip">here</a>. Extract it to /var/www/htdoc/wordpress/wp-content/plugins<br />
Change the permission of the /var/www/htdocs/wordpress/wp-content to 666<br />
#chmod -R 666 /var/www/htdocs/wordpress/wp-content/</p>
<p>Wp-ecommerce plugin need to activate port 21.<br />
It means we neet to activate ftp function.<br />
edit /etc/inetd.conf<br />
as root $nano /etc/inetd.conf<br />
uncommented this line.<br />
ftp     stream  tcp     nowait  root    /usr/sbin/tcpd  vsftpd</p>
<p>as root edit /etc/vsftpd.conf and uncomment local_enable=YES</p>
<p>Now install wp-e-commerce after ftp active<br />
The extraction file contains wp-shopping-cart folder. Move it to /var/www/htdocs/wordpress/wp-content/plugins<br />
Now the plugin is active.</p>
<p>Go to your wordpress dashboard. Usually in the web browser typing this</p>
<p>http://localhost/wordpress/wp-login.php</p>
<p>Log into.<br />
Go to Plugins section on your left screen. Activate wp-e commerce. Edit it, add it to your web.<br />
But remember only use appropriate themes for wp-e-commerce. Not all themes is suit to wp-e-commerce. One of them is this <a href="http://www.ziddu.com/downloadlink/10699708/CraftyCart.zip">theme</a>.<br />
I hope this plugin is work for you.</p>
<p>done.</p>
]]></content:encoded>
			<wfw:commentRss>http://noemet.com/build-wp-ecommerce-plugin-in-wordpress.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
