<?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"
	>

<channel>
	<title>SoftDux Blog - Technical articles on Linux, Web Development, Wordpress &#038; more....</title>
	<atom:link href="http://blog.softdux.com/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.softdux.com</link>
	<description>Software, Linux &#038; Networking Blog &#038; HOWTOs, Web Development</description>
	<pubDate>Sun, 16 Nov 2008 15:28:01 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
	<language>en</language>
			<item>
		<title>How to recover (and even rename) a broken LVM volume</title>
		<link>http://blog.softdux.com/everything-todo-with-linux/linux-howtos/hot-tips/how-to-recover-and-even-rename-a-broken-lvm-volume.html</link>
		<comments>http://blog.softdux.com/everything-todo-with-linux/linux-howtos/hot-tips/how-to-recover-and-even-rename-a-broken-lvm-volume.html#comments</comments>
		<pubDate>Sun, 16 Nov 2008 15:28:01 +0000</pubDate>
		<dc:creator>Rudi Ahlers</dc:creator>
		
		<category><![CDATA[Hot Tips]]></category>

		<guid isPermaLink="false">http://blog.softdux.com/?p=107</guid>
		<description><![CDATA[I was looking for a way to rename a Logical Volume on a Linux system, and found the following website useful. 
Unfortunately my attempt to rename a LVM based Linux installation failed miserably, and it never booted. So, I&#8217;ll have to retry it sometime later again. 

    

	]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>I was looking for a way to rename a Logical Volume on a Linux system, and found the <a href="http://www.whoopis.com/howtos/linux_lvm_recovery.html" target="_blank">following website</a> useful. </p>
<p>Unfortunately my attempt to rename a LVM based Linux installation failed miserably, and it never booted. So, I&#8217;ll have to retry it sometime later again. </p>
<!-- google_ad_section_end --><p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=SoftDux%20Blog%20-%20Technical%20articles%20on%20Linux%2C%20Web%20Development%2C%20Wordpress%20%26%20more....&amp;siteurl=http%3A%2F%2Fblog.softdux.com%2F&amp;linkname=How%20to%20recover%20%28and%20even%20rename%29%20a%20broken%20LVM%20volume&amp;linkurl=http%3A%2F%2Fblog.softdux.com%2Feverything-todo-with-linux%2Flinux-howtos%2Fhot-tips%2Fhow-to-recover-and-even-rename-a-broken-lvm-volume.html"><img src="http://blog.softdux.com/wp-content/plugins/add-to-any/share_save_120_16.gif" width="120" height="16" alt="Share/Save/Bookmark"/></a>

	</p>]]></content:encoded>
			<wfw:commentRss>http://blog.softdux.com/everything-todo-with-linux/linux-howtos/hot-tips/how-to-recover-and-even-rename-a-broken-lvm-volume.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>How to change file &#038; folder permissions recursively in Linux</title>
		<link>http://blog.softdux.com/everything-todo-with-linux/how-to-change-file-folder-permissions-recursively-in-linux.html</link>
		<comments>http://blog.softdux.com/everything-todo-with-linux/how-to-change-file-folder-permissions-recursively-in-linux.html#comments</comments>
		<pubDate>Sun, 16 Nov 2008 12:24:08 +0000</pubDate>
		<dc:creator>Rudi Ahlers</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[cPanel]]></category>

		<guid isPermaLink="false">http://blog.softdux.com/?p=92</guid>
		<description><![CDATA[Often times it&#8217;s necessary to change the permissions on many files &#038; folders recursively - i.e. change the permisssions on every file &#038; folder. 
Todo so, login to your Server via SSH, and run the following commands as root. 

find /home/username/public_html/ -type d -exec chmod 755 {} \;
find /home/username/public_html/ -type f -exec chmod 644 {} [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>Often times it&#8217;s necessary to change the permissions on many files &#038; folders recursively - i.e. change the permisssions on every file &#038; folder. </p>
<p>Todo so, login to your Server via SSH, and run the following commands as root. </p>
<pre class="syntax-highlight:bash">
find /home/username/public_html/ -type d -exec chmod 755 {} \;
find /home/username/public_html/ -type f -exec chmod 644 {} \;
</pre>
<p>The first line will change all folders (the &#8220;d&#8221; specifies directory) to mode 755<br />
The second line will change all files to mode 644. </p>
<!-- google_ad_section_end --><p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=SoftDux%20Blog%20-%20Technical%20articles%20on%20Linux%2C%20Web%20Development%2C%20Wordpress%20%26%20more....&amp;siteurl=http%3A%2F%2Fblog.softdux.com%2F&amp;linkname=How%20to%20change%20file%20%26%23038%3B%20folder%20permissions%20recursively%20in%20Linux&amp;linkurl=http%3A%2F%2Fblog.softdux.com%2Feverything-todo-with-linux%2Fhow-to-change-file-folder-permissions-recursively-in-linux.html"><img src="http://blog.softdux.com/wp-content/plugins/add-to-any/share_save_120_16.gif" width="120" height="16" alt="Share/Save/Bookmark"/></a>

	</p>]]></content:encoded>
			<wfw:commentRss>http://blog.softdux.com/everything-todo-with-linux/how-to-change-file-folder-permissions-recursively-in-linux.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>How to make Windows auto-login to network shares upon a reboot</title>
		<link>http://blog.softdux.com/general/how-to-make-windows-auto-login-to-network-shares-upon-a-reboot.html</link>
		<comments>http://blog.softdux.com/general/how-to-make-windows-auto-login-to-network-shares-upon-a-reboot.html#comments</comments>
		<pubDate>Mon, 20 Oct 2008 06:53:25 +0000</pubDate>
		<dc:creator>Rudi Ahlers</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blog.softdux.com/?p=86</guid>
		<description><![CDATA[Running a Linux file server, without it being a Domain Controller on a Windows network has it&#8217;s own set of &#8220;pit falls&#8221; One of the most annoying problems, is that of mapped network shares, and not being able to automatically logging in once Windows has rebooted. 
So, currently a Windows user needs to manually login [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>Running a Linux file server, without it being a Domain Controller on a Windows <a href="http://www.SoftDux.com" class="kblinker" title="More about network &raquo;">network</a> has it&#8217;s own set of &#8220;pit falls&#8221; One of the most annoying problems, is that of mapped network shares, and not being able to automatically logging in once Windows has rebooted. </p>
<p>So, currently a Windows user needs to manually login to the mapped network drive everytime Windows was shutdown, or rebooted. </p>
<p>Here&#8217;s a quick a dirty trick to automatically log the user in, without them having todo anything themselves. </p>
<p>Right click on the &#8220;Windows Menu&#8221;, and click on &#8220;Explore&#8221; - this will explore you to the C:\Documents and Settings\{username}\Start Menu. Now double click on Programs > Startup. Click on File > New > Text Document, and create a file called shares. Now, double click on this file to edit it in NotePad, and add the following:</p>
<pre class="syntax-highlight:bash">
@echo off
net use x: \\{server}\{share1} /USER:{username} {password} /persistent:yes
net use y: \\{server}\{share2} /USER:{username} {password} /persistent:yes
net use z: \\{server}\{share3} /USER:{username} {password} /persistent:yes
exit
</pre>
<p>P.S. Replace the following items with your own values:<br />
<strong>{server}</strong>            =  the server, or computer which has the shares, for example \\computer or \\dean or \\pete<br />
<strong>{share} </strong>            =  the share on the server, for exampe \music or \games or \data<br />
<strong>{username}</strong>        = the username for the share<br />
<strong>{password} </strong>       = the password for the share. </p>
<p>NOTE: If there&#8217;s no username, but just a password, you can ommit the <em>/USER:{username}</em> part</p>
<!-- google_ad_section_end --><p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=SoftDux%20Blog%20-%20Technical%20articles%20on%20Linux%2C%20Web%20Development%2C%20Wordpress%20%26%20more....&amp;siteurl=http%3A%2F%2Fblog.softdux.com%2F&amp;linkname=How%20to%20make%20Windows%20auto-login%20to%20network%20shares%20upon%20a%20reboot&amp;linkurl=http%3A%2F%2Fblog.softdux.com%2Fgeneral%2Fhow-to-make-windows-auto-login-to-network-shares-upon-a-reboot.html"><img src="http://blog.softdux.com/wp-content/plugins/add-to-any/share_save_120_16.gif" width="120" height="16" alt="Share/Save/Bookmark"/></a>

	</p>]]></content:encoded>
			<wfw:commentRss>http://blog.softdux.com/general/how-to-make-windows-auto-login-to-network-shares-upon-a-reboot.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>List of useful Linux system management scripts</title>
		<link>http://blog.softdux.com/everything-todo-with-linux/list-of-useful-linux-system-management-scripts.html</link>
		<comments>http://blog.softdux.com/everything-todo-with-linux/list-of-useful-linux-system-management-scripts.html#comments</comments>
		<pubDate>Wed, 15 Oct 2008 11:14:23 +0000</pubDate>
		<dc:creator>Rudi Ahlers</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://blog.softdux.com/?p=83</guid>
		<description><![CDATA[I was looking for a way to properly monitor XEN VPS&#8217;s traffic, when I found this site: http://wikicompany.org/fs//system_management.html#traffic_accounting
It has a long list Linux system management scripts

    

	]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>I was looking for a way to properly monitor XEN VPS&#8217;s traffic, when I found this site: <a href="http://wikicompany.org/fs//system_management.html#traffic_accounting">http://wikicompany.org/fs//system_management.html#traffic_accounting</a></p>
<p>It has a long list Linux system management scripts</p>
<!-- google_ad_section_end --><p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=SoftDux%20Blog%20-%20Technical%20articles%20on%20Linux%2C%20Web%20Development%2C%20Wordpress%20%26%20more....&amp;siteurl=http%3A%2F%2Fblog.softdux.com%2F&amp;linkname=List%20of%20useful%20Linux%20system%20management%20scripts&amp;linkurl=http%3A%2F%2Fblog.softdux.com%2Feverything-todo-with-linux%2Flist-of-useful-linux-system-management-scripts.html"><img src="http://blog.softdux.com/wp-content/plugins/add-to-any/share_save_120_16.gif" width="120" height="16" alt="Share/Save/Bookmark"/></a>

	</p>]]></content:encoded>
			<wfw:commentRss>http://blog.softdux.com/everything-todo-with-linux/list-of-useful-linux-system-management-scripts.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Radio controlled Airplane</title>
		<link>http://blog.softdux.com/stuff-for-sale/radio-controlled-airplane.html</link>
		<comments>http://blog.softdux.com/stuff-for-sale/radio-controlled-airplane.html#comments</comments>
		<pubDate>Tue, 07 Oct 2008 17:48:58 +0000</pubDate>
		<dc:creator>Rudi Ahlers</dc:creator>
		
		<category><![CDATA[Stuff For Sale]]></category>

		<guid isPermaLink="false">http://blog.softdux.com/?p=79</guid>
		<description><![CDATA[radio controlled airoplane. twin motor, includes radio &#038; extra battery.
It&#8217;s a Seagull II WITH extra long run-time battery. 


&#8211; R600

    

	]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>radio controlled airoplane. twin motor, includes radio &#038; extra battery.</p>
<p>It&#8217;s a Seagull II WITH extra long run-time battery. </p>
<p><img src="http://www.softdux.com/forsale/seagull2(1).gif" alt="" /></p>
<p><img src="http://www.softdux.com/forsale/seagull2.bmp" alt="" /></p>
<p>&#8211; R600</p>
<!-- google_ad_section_end --><p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=SoftDux%20Blog%20-%20Technical%20articles%20on%20Linux%2C%20Web%20Development%2C%20Wordpress%20%26%20more....&amp;siteurl=http%3A%2F%2Fblog.softdux.com%2F&amp;linkname=Radio%20controlled%20Airplane&amp;linkurl=http%3A%2F%2Fblog.softdux.com%2Fstuff-for-sale%2Fradio-controlled-airplane.html"><img src="http://blog.softdux.com/wp-content/plugins/add-to-any/share_save_120_16.gif" width="120" height="16" alt="Share/Save/Bookmark"/></a>

	</p>]]></content:encoded>
			<wfw:commentRss>http://blog.softdux.com/stuff-for-sale/radio-controlled-airplane.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>book - JSP, A beginner&#8217;s guide</title>
		<link>http://blog.softdux.com/stuff-for-sale/book-jsp-a-beginners-guide.html</link>
		<comments>http://blog.softdux.com/stuff-for-sale/book-jsp-a-beginners-guide.html#comments</comments>
		<pubDate>Tue, 07 Oct 2008 17:31:40 +0000</pubDate>
		<dc:creator>Rudi Ahlers</dc:creator>
		
		<category><![CDATA[Stuff For Sale]]></category>

		<guid isPermaLink="false">http://blog.softdux.com/?p=77</guid>
		<description><![CDATA[JSP - A beginner&#8217;s guide, by Gary Bollinger. Learn the fundemantals of JavaServer Pages programming.
Essential skills for first-time programmers! JSP: A Beginner&#8217;s Guide explains the fundamentals of JSP programming. You&#8217;ll learn how and when to use comments, directives, JSP scripts, and implicit objects and how to build JSP applications. The modular approach of this series&#8211;including [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>JSP - A beginner&#8217;s guide, by Gary Bollinger. Learn the fundemantals of JavaServer Pages programming.</p>
<p>Essential skills for first-time programmers! JSP: A Beginner&#8217;s Guide explains the fundamentals of JSP programming. You&#8217;ll learn how and when to use comments, directives, JSP scripts, and implicit objects and how to build JSP applications. The modular approach of this series&#8211;including drills, sample projects, and mastery checks&#8211;makes it easy to learn JSP programming quickly.</p>
<p><img src="http://www.softdux.com/forsale/JSP_beginners.jpeg" alt="" /></p>
<p>Secondand book &#8212; R150</p>
<!-- google_ad_section_end --><p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=SoftDux%20Blog%20-%20Technical%20articles%20on%20Linux%2C%20Web%20Development%2C%20Wordpress%20%26%20more....&amp;siteurl=http%3A%2F%2Fblog.softdux.com%2F&amp;linkname=book%20-%20JSP%2C%20A%20beginner%26%238217%3Bs%20guide&amp;linkurl=http%3A%2F%2Fblog.softdux.com%2Fstuff-for-sale%2Fbook-jsp-a-beginners-guide.html"><img src="http://blog.softdux.com/wp-content/plugins/add-to-any/share_save_120_16.gif" width="120" height="16" alt="Share/Save/Bookmark"/></a>

	</p>]]></content:encoded>
			<wfw:commentRss>http://blog.softdux.com/stuff-for-sale/book-jsp-a-beginners-guide.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>nVidia Geforce 5700 DP - GV-N57L128DP</title>
		<link>http://blog.softdux.com/stuff-for-sale/nvidia-geforce-5700-dp-gv-n57l128dp.html</link>
		<comments>http://blog.softdux.com/stuff-for-sale/nvidia-geforce-5700-dp-gv-n57l128dp.html#comments</comments>
		<pubDate>Tue, 07 Oct 2008 16:57:13 +0000</pubDate>
		<dc:creator>Rudi Ahlers</dc:creator>
		
		<category><![CDATA[Stuff For Sale]]></category>

		<guid isPermaLink="false">http://blog.softdux.com/?p=75</guid>
		<description><![CDATA[nVidia Geforce 5700 DP, 128MB RAM, 8X AGP DVI, TV-out &#038; VGA connectors. 
GV-N57L128DP, theTurbo Force edition of GF FX 5700LE, offers up to 38% greater performance than other GF FX 5700LE graphics cards available on the market.  

&#8211; R300

    

	]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>nVidia Geforce 5700 DP, 128MB RAM, 8X AGP DVI, TV-out &#038; VGA connectors. </p>
<p>GV-N57L128DP, theTurbo Force edition of GF FX 5700LE, offers up to 38% greater performance than other GF FX 5700LE graphics cards available on the market.  </p>
<p><img src="http://www.softdux.com/forsale/geforce_5700DP.jpg" alt="" /></p>
<p>&#8211; R300</p>
<!-- google_ad_section_end --><p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=SoftDux%20Blog%20-%20Technical%20articles%20on%20Linux%2C%20Web%20Development%2C%20Wordpress%20%26%20more....&amp;siteurl=http%3A%2F%2Fblog.softdux.com%2F&amp;linkname=nVidia%20Geforce%205700%20DP%20-%20GV-N57L128DP&amp;linkurl=http%3A%2F%2Fblog.softdux.com%2Fstuff-for-sale%2Fnvidia-geforce-5700-dp-gv-n57l128dp.html"><img src="http://blog.softdux.com/wp-content/plugins/add-to-any/share_save_120_16.gif" width="120" height="16" alt="Share/Save/Bookmark"/></a>

	</p>]]></content:encoded>
			<wfw:commentRss>http://blog.softdux.com/stuff-for-sale/nvidia-geforce-5700-dp-gv-n57l128dp.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>book - UNIX System Administrator&#8217;s bible</title>
		<link>http://blog.softdux.com/stuff-for-sale/book-unix-system-administrators-bible.html</link>
		<comments>http://blog.softdux.com/stuff-for-sale/book-unix-system-administrators-bible.html#comments</comments>
		<pubDate>Tue, 07 Oct 2008 15:59:43 +0000</pubDate>
		<dc:creator>Rudi Ahlers</dc:creator>
		
		<category><![CDATA[Stuff For Sale]]></category>

		<guid isPermaLink="false">http://blog.softdux.com/?p=73</guid>
		<description><![CDATA[UNIX System Administrator&#8217;s bible. Build a robust, flexible UNIX system - from installation and configuration to security and optimization. Using clear instructions and real-world case studies, this all-in-one reference shows you the quickest, most efficient way to setup and manage your system - with in-depth details on hardware requirements, connectivity issues, Internet protocols, backup strategies, [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>UNIX System Administrator&#8217;s bible. Build a robust, flexible UNIX system - from installation and configuration to security and optimization. Using clear instructions and real-world case studies, this all-in-one reference shows you the quickest, most efficient way to setup and manage your system - with in-depth details on hardware requirements, connectivity issues, Internet protocols, backup strategies, and troubleshooting. Includes CD with FreeBSD UNIX</p>
<p><img src="http://www.softdux.com/forsale/UNIX_System_bible.jpg" alt="" /></p>
<p>&#8211; R350</p>
<!-- google_ad_section_end --><p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=SoftDux%20Blog%20-%20Technical%20articles%20on%20Linux%2C%20Web%20Development%2C%20Wordpress%20%26%20more....&amp;siteurl=http%3A%2F%2Fblog.softdux.com%2F&amp;linkname=book%20-%20UNIX%20System%20Administrator%26%238217%3Bs%20bible&amp;linkurl=http%3A%2F%2Fblog.softdux.com%2Fstuff-for-sale%2Fbook-unix-system-administrators-bible.html"><img src="http://blog.softdux.com/wp-content/plugins/add-to-any/share_save_120_16.gif" width="120" height="16" alt="Share/Save/Bookmark"/></a>

	</p>]]></content:encoded>
			<wfw:commentRss>http://blog.softdux.com/stuff-for-sale/book-unix-system-administrators-bible.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>book - WebDesign Virtual Classroom</title>
		<link>http://blog.softdux.com/stuff-for-sale/book-webdesign-virtual-classroom.html</link>
		<comments>http://blog.softdux.com/stuff-for-sale/book-webdesign-virtual-classroom.html#comments</comments>
		<pubDate>Tue, 07 Oct 2008 15:34:54 +0000</pubDate>
		<dc:creator>Rudi Ahlers</dc:creator>
		
		<category><![CDATA[Stuff For Sale]]></category>

		<guid isPermaLink="false">http://blog.softdux.com/?p=71</guid>
		<description><![CDATA[WebDesign Virtual Classroom, including instructions CD. Build your own website, or prepare for unlimited growth in a Web Design career
Get the classroom experience at home! Here is the revolutionary new way to learn to design Web sites and Web graphics. The book&#8217;s casual writing style and easy-to-follow, step-by-step approach combine to teach you Web design [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>WebDesign Virtual Classroom, including instructions CD. Build your own website, or prepare for unlimited growth in a <a href="http://www.SoftDux.com" class="kblinker" title="More about Web Design &raquo;">Web Design</a> career</p>
<p>Get the classroom experience at home! Here is the revolutionary new way to learn to design Web sites and Web graphics. The book&#8217;s casual writing style and easy-to-follow, step-by-step approach combine to teach you Web design essentials, including storyboarding your site, gathering content, using the latest software and tools, working with frames, adding multimedia, and much more. Pop in the CD-ROM and follow along as your own on-screen guru explains and demonstrates the techniques discussed in the text.</p>
<p><img src="http://www.softdux.com/forsale/webdesign_virtualclassroom2.jpg.jpeg" alt="" /></p>
<p>secondhand book &#8212; R300</p>
<!-- google_ad_section_end --><p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=SoftDux%20Blog%20-%20Technical%20articles%20on%20Linux%2C%20Web%20Development%2C%20Wordpress%20%26%20more....&amp;siteurl=http%3A%2F%2Fblog.softdux.com%2F&amp;linkname=book%20-%20WebDesign%20Virtual%20Classroom&amp;linkurl=http%3A%2F%2Fblog.softdux.com%2Fstuff-for-sale%2Fbook-webdesign-virtual-classroom.html"><img src="http://blog.softdux.com/wp-content/plugins/add-to-any/share_save_120_16.gif" width="120" height="16" alt="Share/Save/Bookmark"/></a>

	</p>]]></content:encoded>
			<wfw:commentRss>http://blog.softdux.com/stuff-for-sale/book-webdesign-virtual-classroom.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>book - PHP for the World Wide Web</title>
		<link>http://blog.softdux.com/stuff-for-sale/book-php-for-the-world-wide-web.html</link>
		<comments>http://blog.softdux.com/stuff-for-sale/book-php-for-the-world-wide-web.html#comments</comments>
		<pubDate>Tue, 07 Oct 2008 15:30:13 +0000</pubDate>
		<dc:creator>Rudi Ahlers</dc:creator>
		
		<category><![CDATA[Stuff For Sale]]></category>

		<guid isPermaLink="false">http://blog.softdux.com/?p=69</guid>
		<description><![CDATA[PHP for the World Wide Web, by Larry Ullman.
Teach yourself PHP the quick and easy way! This visual Quickstart Guide uses pictures rather than lenghtly explanations. You&#8217;ll be up and running in no time!

Secondhand Book &#8212; R150

    

	]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>PHP for the World Wide Web, by Larry Ullman.</p>
<p>Teach yourself PHP the quick and easy way! This visual Quickstart Guide uses pictures rather than lenghtly explanations. You&#8217;ll be up and running in no time!</p>
<p><img src="http://www.softdux.com/forsale/php_WWW.jpg" alt="" /></p>
<p>Secondhand Book &#8212; R150</p>
<!-- google_ad_section_end --><p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=SoftDux%20Blog%20-%20Technical%20articles%20on%20Linux%2C%20Web%20Development%2C%20Wordpress%20%26%20more....&amp;siteurl=http%3A%2F%2Fblog.softdux.com%2F&amp;linkname=book%20-%20PHP%20for%20the%20World%20Wide%20Web&amp;linkurl=http%3A%2F%2Fblog.softdux.com%2Fstuff-for-sale%2Fbook-php-for-the-world-wide-web.html"><img src="http://blog.softdux.com/wp-content/plugins/add-to-any/share_save_120_16.gif" width="120" height="16" alt="Share/Save/Bookmark"/></a>

	</p>]]></content:encoded>
			<wfw:commentRss>http://blog.softdux.com/stuff-for-sale/book-php-for-the-world-wide-web.html/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
