<?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>Text Books</title>
	<atom:link href="http://www.txtbooks.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.txtbooks.net</link>
	<description>Short Manuals That You Really Need!</description>
	<lastBuildDate>Sun, 13 Jun 2010 14:55:46 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>VSFTPD: Lock Users in Home Directory</title>
		<link>http://www.txtbooks.net/txt/vsftpd-lock-users-in-home-directory/</link>
		<comments>http://www.txtbooks.net/txt/vsftpd-lock-users-in-home-directory/#comments</comments>
		<pubDate>Sun, 13 Jun 2010 14:55:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[vsFTPd]]></category>
		<category><![CDATA[chroot]]></category>

		<guid isPermaLink="false">http://www.txtbooks.net/?p=56</guid>
		<description><![CDATA[To lock users in their home directory in VSFTP, you need to edit file vsftpd.conf, usually found in (/etc/vsftpd/vsftpd.conf). and add the following line
chroot_local_user=yes
]]></description>
			<content:encoded><![CDATA[<p>To <strong>lock users in their home directory in VSFTP</strong>, you need to edit file vsftpd.conf, usually found in (/etc/vsftpd/vsftpd.conf). and add the following line</p>
<p class="code">chroot_local_user=yes</p>
]]></content:encoded>
			<wfw:commentRss>http://www.txtbooks.net/txt/vsftpd-lock-users-in-home-directory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MacOS X Leopard Cool Wallpaper</title>
		<link>http://www.txtbooks.net/txt/macos-x-leopard-cool-wallpaper/</link>
		<comments>http://www.txtbooks.net/txt/macos-x-leopard-cool-wallpaper/#comments</comments>
		<pubDate>Sat, 12 Jun 2010 12:58:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Wallpapers]]></category>
		<category><![CDATA[leopard snow]]></category>
		<category><![CDATA[OS X Leopardsnow]]></category>

		<guid isPermaLink="false">http://www.txtbooks.net/?p=53</guid>
		<description><![CDATA[I love the MacOS X Leopard snow wallpaper, but the problem with it tooo much bright, so can hardly see my icons, i've just created one which is half balck / half white. and i'm sharing it with you guys.

]]></description>
			<content:encoded><![CDATA[<p>I love the MacOS X Leopard snow wallpaper, but the problem with it tooo much bright, so can hardly see my icons, i've just created one which is half balck / half white. and i'm sharing it with you guys.</p>
<p><a href="http://www.txtbooks.net/wp-content/uploads/2010/06/MacOSX_Leopard_HalfBlack_Wallpaper_TY.jpg"><img class="aligncenter size-medium wp-image-54" title="MacOSX Leopard HalfBlack Wallpaper " src="http://www.txtbooks.net/wp-content/uploads/2010/06/MacOSX_Leopard_HalfBlack_Wallpaper_TY-300x168.jpg" alt="MacOS X Leopard Snow  HalfBlack Wallpaper " width="300" height="168" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.txtbooks.net/txt/macos-x-leopard-cool-wallpaper/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Mount an ISO image under Linux</title>
		<link>http://www.txtbooks.net/txt/how-to-mount-an-iso-image-under-linux/</link>
		<comments>http://www.txtbooks.net/txt/how-to-mount-an-iso-image-under-linux/#comments</comments>
		<pubDate>Tue, 01 Jun 2010 09:59:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[iso image]]></category>
		<category><![CDATA[linux iso]]></category>
		<category><![CDATA[mount iso]]></category>

		<guid isPermaLink="false">http://www.txtbooks.net/?p=47</guid>
		<description><![CDATA[To Mount an ISO image under Linux, you need simply to do the following steps.
1. you must be logged in as root
2. Create a mounpoint (Folder)
mkdir -p /mnt/isodisk
3. Use mount command as follows to mount iso file called dvd1.iso
mount -o loop dvd1.iso /mnt/isodisk
4. Change directory to list files stored inside an ISO image:
cd /mnt/disk
ls -l

ISO [...]]]></description>
			<content:encoded><![CDATA[<p>To <strong>Mount an ISO image under Linux</strong>, you need simply to do the following steps.</p>
<p>1. you must be logged in as root</p>
<p>2. Create a mounpoint (Folder)</p>
<p class="code">mkdir -p /mnt/isodisk</p>
<p>3. Use mount command as follows to mount iso file called dvd1.iso</p>
<p class="code">mount -o loop dvd1.iso /mnt/isodisk</p>
<p>4. Change directory to list files stored inside an ISO image:</p>
<p class="code">cd /mnt/disk<br />
ls -l
</p>
<p><strong>ISO Image:</strong><br />
An ISO image is an archive file (disk image) of an optical disc using a conventional ISO (International Organization for Standardization) format. ISO image files typically have a file extension of .ISO. The name "ISO" is taken from the ISO 9660 file system used with CD-ROM media, but an ISO image can also contain UDF file system because UDF is backward-compatible to ISO 9660.</p>
<p>You can mount an ISO images via the loop device under Linux. It is possible to specify transfer functions (for encryption/decryption or other purposes) using loop device.</p>
<p><strong>More about loop device</strong></p>
<p>A loop device is a pseudo-device that makes a file accessible as a block device. Loop devices are often used for CD ISO images and floppy disc images. Mounting a file containing a filesystem via such a loop mount makes the files within that filesystem accessible. They appear in the mount point directory using above commands.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.txtbooks.net/txt/how-to-mount-an-iso-image-under-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to find computer serial number</title>
		<link>http://www.txtbooks.net/txt/how-to-find-computer-serial-number/</link>
		<comments>http://www.txtbooks.net/txt/how-to-find-computer-serial-number/#comments</comments>
		<pubDate>Mon, 31 May 2010 11:51:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[bios]]></category>
		<category><![CDATA[serial number]]></category>
		<category><![CDATA[system serial number]]></category>

		<guid isPermaLink="false">http://www.txtbooks.net/?p=44</guid>
		<description><![CDATA[How to find computer serial number in Windows:
From the Command line prompt type
wmic bios get serialnumber
To get the computer model
wmic csproduct get name
How to find computer serial number in Linux:
from the command line type
dmidecode  &#124; grep "System Information" -a10
]]></description>
			<content:encoded><![CDATA[<p><strong>How to find computer serial number in Windows:</strong></p>
<p>From the Command line prompt type</p>
<p class="code">wmic bios get serialnumber</p>
<p>To get the computer model</p>
<p class="code">wmic csproduct get name</p>
<p><strong>How to find computer serial number in Linux:</strong><br />
from the command line type</p>
<p class="code">dmidecode  | grep "System Information" -a10</p>
]]></content:encoded>
			<wfw:commentRss>http://www.txtbooks.net/txt/how-to-find-computer-serial-number/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Session Is Not Authenticated</title>
		<link>http://www.txtbooks.net/txt/the-session-is-not-authenticated/</link>
		<comments>http://www.txtbooks.net/txt/the-session-is-not-authenticated/#comments</comments>
		<pubDate>Mon, 24 May 2010 16:06:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[vCenter Converter Standalone]]></category>
		<category><![CDATA[vCenter Converter]]></category>
		<category><![CDATA[VMWare]]></category>

		<guid isPermaLink="false">http://www.txtbooks.net/?p=40</guid>
		<description><![CDATA[While trying to convert a VM from one location to  another you get the  error: The Session is not authenticated
SOLUTION:
Exit the standalone converter and open your  services (Start&#62;Run and then type in services.msc and press enter.)
Locate following services and stop them in this  order:

VMWare vCenter Converter Server
VMWare vCenter Converter Agent

Now start [...]]]></description>
			<content:encoded><![CDATA[<p>While trying to convert a VM from one location to  another you get the  error: <strong><em>The Session is not authenticated</em></strong></p>
<h2>SOLUTION:</h2>
<p>Exit the standalone converter and open your  services (Start&gt;Run and then type in services.msc and press enter.)</p>
<p>Locate following services and stop them in this  order:</p>
<ul>
<li><strong>VMWare vCenter Converter Server</strong></li>
<li><strong>VMWare vCenter Converter Agent</strong></li>
</ul>
<p>Now start the services in this order:</p>
<ul>
<li><strong>VMWare vCenter Converter Server</strong></li>
<li><strong>VMWare vCenter Converter Agent</strong></li>
</ul>
<p>Start the vCenter Converter again and start the conversion process.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.txtbooks.net/txt/the-session-is-not-authenticated/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>eAccelerator Best Settings</title>
		<link>http://www.txtbooks.net/txt/eaccelerator-best-settings/</link>
		<comments>http://www.txtbooks.net/txt/eaccelerator-best-settings/#comments</comments>
		<pubDate>Sun, 17 Jan 2010 11:47:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Caching]]></category>
		<category><![CDATA[eaccelerator]]></category>
		<category><![CDATA[php performace]]></category>

		<guid isPermaLink="false">http://www.txtbooks.net/?p=38</guid>
		<description><![CDATA[eaccelerator.shm_size="28"
eaccelerator.cache_dir="/var/cache/eaccelerator-php5/"
eaccelerator.enable="1"
eaccelerator.optimizer="1"
eaccelerator.debug="0"
eaccelerator.check_mtime="1"
eaccelerator.filter=""
eaccelerator.shm_max="0"
eaccelerator.shm_ttl="0"
eaccelerator.shm_prune_period="0"
eaccelerator.shm_only="0"
eaccelerator.compress="1"
eaccelerator.compress_level="9"
eaccelerator.keys="shm_and_disk"
eaccelerator.sessions="shm_and_disk"
eaccelerator.content="shm_and_disk"
]]></description>
			<content:encoded><![CDATA[<p class="code">eaccelerator.shm_size="28"<br />
eaccelerator.cache_dir="/var/cache/eaccelerator-php5/"<br />
eaccelerator.enable="1"<br />
eaccelerator.optimizer="1"<br />
eaccelerator.debug="0"<br />
eaccelerator.check_mtime="1"<br />
eaccelerator.filter=""<br />
eaccelerator.shm_max="0"<br />
eaccelerator.shm_ttl="0"<br />
eaccelerator.shm_prune_period="0"<br />
eaccelerator.shm_only="0"<br />
eaccelerator.compress="1"<br />
eaccelerator.compress_level="9"<br />
eaccelerator.keys="shm_and_disk"<br />
eaccelerator.sessions="shm_and_disk"<br />
eaccelerator.content="shm_and_disk"</p>
]]></content:encoded>
			<wfw:commentRss>http://www.txtbooks.net/txt/eaccelerator-best-settings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Snow Leopard Java problems (and fix)</title>
		<link>http://www.txtbooks.net/txt/snow-leopard-java-problems-and-fix/</link>
		<comments>http://www.txtbooks.net/txt/snow-leopard-java-problems-and-fix/#comments</comments>
		<pubDate>Sun, 17 Jan 2010 11:39:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MacOS]]></category>
		<category><![CDATA[zde]]></category>
		<category><![CDATA[zend]]></category>

		<guid isPermaLink="false">http://www.txtbooks.net/?p=32</guid>
		<description><![CDATA[

This workaround, will fix Zend Development Environment issues on Mac OS X Leopard Snow.
In the terminal:
Get the java 5 that was included in 10.5 "leopard" and unpack
cd /tmp/
curl -o java.1.5.0-leopard.tar.gz http://www.cs.washington.edu/homes/isdal/snow_leopard_workaround/java.1.5.0-leopard.tar.gz
tar -xvzf java.1.5.0-leopard.tar.gz
Move it to your System java folder (password needed)
sudo mv 1.5.0 /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0-leopard
Tell OS X that java 5 actually is java 5
cd /System/Library/Frameworks/JavaVM.framework/Versions/
sudo rm [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.txtbooks.net/wp-content/uploads/2010/01/592px-OS_X_10.6_snow_leopard_OneSwarm_workaround.png"><br />
</a></p>
<p>This workaround, will fix <strong>Zend Development Environment</strong> issues on <strong>Mac OS X Leopard Snow</strong>.</p>
<p>In the terminal:</p>
<p>Get the java 5 that was included in 10.5 "leopard" and unpack</p>
<p class="code">cd /tmp/<br />
curl -o java.1.5.0-leopard.tar.gz <a title="http://www.cs.washington.edu/homes/isdal/snow_leopard_workaround/java.1.5.0-leopard.tar.gz" rel="nofollow" href="http://www.cs.washington.edu/homes/isdal/snow_leopard_workaround/java.1.5.0-leopard.tar.gz">http://www.cs.washington.edu/homes/isdal/snow_leopard_workaround/java.1.5.0-leopard.tar.gz</a><br />
tar -xvzf java.1.5.0-leopard.tar.gz</p>
<p>Move it to your System java folder (password needed)</p>
<p class="code">sudo mv 1.5.0 /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0-leopard</p>
<p>Tell OS X that java 5 actually is java 5</p>
<p class="code">cd /System/Library/Frameworks/JavaVM.framework/Versions/<br />
sudo rm 1.5.0<br />
sudo ln -s 1.5.0-leopard 1.5.0<br />
sudo rm 1.5<br />
sudo ln -s 1.5.0 1.5</p>
<p>Open Java Preferences</p>
<p class="code">open "/Applications/Utilities/Java Preferences.app"</p>
<p>Change the properties to use Java 5 32-bit by default:</p>
<p><a href="../wp-content/uploads/2010/01/592px-OS_X_10.6_snow_leopard_OneSwarm_workaround.png"><img title="592px-OS_X_10.6_snow_leopard_workaround" src="../wp-content/uploads/2010/01/592px-OS_X_10.6_snow_leopard_OneSwarm_workaround-296x300.png" alt="" width="296" height="300" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.txtbooks.net/txt/snow-leopard-java-problems-and-fix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Salifert Nitrite (NO2) Test Kit Instructions</title>
		<link>http://www.txtbooks.net/txt/salifert-nitrite-no2-test-kit-instructions/</link>
		<comments>http://www.txtbooks.net/txt/salifert-nitrite-no2-test-kit-instructions/#comments</comments>
		<pubDate>Thu, 07 Jan 2010 06:43:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Salifert]]></category>

		<guid isPermaLink="false">http://www.txtbooks.net/?p=21</guid>
		<description><![CDATA[NO2 (Nitrite) Profi-Test

 In a properly cycled aquarium, nitrite is converted to nitrate and then, if there are areas deprived of oxygen such as in live rock and other filter materials, this nitrate is converted back to nitrite and then transformed into harmless nitrogen gas.
If this cycle breaks down then nitrites, which are extremely toxic [...]]]></description>
			<content:encoded><![CDATA[<p>NO2 (Nitrite) Profi-Test</p>
<ul>
<li> In a properly cycled aquarium, nitrite is converted to nitrate and then, if there are areas deprived of oxygen such as in live rock and other filter materials, this nitrate is converted back to nitrite and then transformed into harmless nitrogen gas.</li>
<li>If this cycle breaks down then nitrites, which are extremely toxic to fish and invertebrates, can form in high concentration.</li>
<li>Many nitrite test kits suffer from interference caused by amines e.g. naturally occurring and essential amino acids. This can result in a too low measured value, especially when the nitrite concentration is relatively low.</li>
<li>Because of its unique formulation, the Salifert Test Kit does not suffer from amine interference, and offers full color development within one minute. Also, the color is very intense making the detection of even minute traces of nitrite easy.</li>
<li>The test kit has two different scales: an ultra-low scale for nitrite-nitrogen which ranges from 0.002 - 0.12 mg/L, and a medium scale for nitrite-nitrogen which ranges from 0.02 - 1.2 mg/L.</li>
<li>Sufficient for 50 tests.</li>
<li>Can be used for marine water, frewshwater and garden pond water</li>
</ul>
<p>The temperature of the water has to be above 18C or 64F otherwise the complete color will not develop within 60 seconds. If the water temperature is below the above mentioned values then allow the water in the test tube to acclimate at room temperature for 10 minutes prior to testing.</p>
<p class="code"><strong>Warning!</strong><br />
KEEP OUT OF REACH OF CHILDREN. Not for consumption. If swallowed contact a physician immediately. In case of contact with skin wash with plenty of water. In case of contact with eyes, wash eyes immediately with of water and contact a physician immediately.</p>
<p><strong>Instructions:</strong><br />
1. Add with the syringe 1ml of water in the test vial.</p>
<p>2. Add to 1 level spoon of the NO2 powder. Swirl the contents of the test tube gently for 20 seconds. Allow to stand for 3 minutes.</p>
<p>3. Place the open test vial on top of the color chart on a part of the chart which is whiteand compare the colors looking from the top. Read the corresponding nitrite content. An intermediate color corresponds to an intermediate nitrite content.</p>
<p>The nitrite values are in ppm nitrite. If you prefer a reading in ppm Nitrite-Nitrogen then multiply the reading by 0.3 or use the table given below.</p>
<p><strong>Higher Sensitivity</strong></p>
<p>After your aquarium or garden pond has cycled you will need a much higher sensitivity. This is easily accomplished by looking through the side when comparing colors. Hole the test tube with its side against a white piece of color chart. The readings have to be divided by 10. In this way you will be able to detect 0.01 ppm as nitrite or 0.003 ppm as nitrite-nitrogen easily.</p>
<table border="0" cellspacing="0" cellpadding="2" width="90%">
<tbody>
<tr>
<td colspan="2"><span style="color: #000080;"><strong>Nitrite Table</strong></span></td>
</tr>
<tr>
<td width="1%" align="left">ppm Nitrite</td>
<td width="1%" align="left">ppm Nitrite-Nitrogen</td>
</tr>
<tr bgcolor="#fefefe">
<td width="1%" align="left">0.1 (too high)</td>
<td width="1%" align="left">0.03</td>
</tr>
<tr bgcolor="#e5e5e5">
<td width="1%" align="left">0.2</td>
<td width="1%" align="left">0.06</td>
</tr>
<tr bgcolor="#fefefe">
<td width="1%" align="left">0.4 (danger)</td>
<td width="1%" align="left">0.12</td>
</tr>
<tr bgcolor="#e5e5e5">
<td width="1%" align="left">1.0</td>
<td width="1%" align="left">0.30</td>
</tr>
<tr bgcolor="#fefefe">
<td width="1%" align="left">2.0</td>
<td width="1%" align="left">0.60</td>
</tr>
<tr bgcolor="#e5e5e5">
<td width="1%" align="left">4.0</td>
<td width="1%" align="left">1.20</td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.txtbooks.net/txt/salifert-nitrite-no2-test-kit-instructions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[RESOLVED] compiling PHP5/Imap: configure: error: utf8_mime2text() has new signature, but U8T_CANONICAL is missing</title>
		<link>http://www.txtbooks.net/txt/resolved-compiling-php5imap-configure-error-utf8_mime2text-has-new-signature-but-u8t_canonical-is-missing/</link>
		<comments>http://www.txtbooks.net/txt/resolved-compiling-php5imap-configure-error-utf8_mime2text-has-new-signature-but-u8t_canonical-is-missing/#comments</comments>
		<pubDate>Sun, 03 Jan 2010 13:36:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.txtbooks.net/?p=17</guid>
		<description><![CDATA[if you get the following error while trying to compile php5 with imap.
configure: error: utf8_mime2text() has new signature, but U8T_CANONICAL is missing
on RedHat do the following:
yum install libc-client-devel
The try to recompile PHP
That should solve the problem.
]]></description>
			<content:encoded><![CDATA[<p>if you get the following error while trying to compile php5 with imap.</p>
<p class="code">configure: error: utf8_mime2text() has new signature, but U8T_CANONICAL is missing</p>
<p>on RedHat do the following:</p>
<p class="code">yum install libc-client-devel</p>
<p>The try to recompile PHP<br />
That should solve the problem.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.txtbooks.net/txt/resolved-compiling-php5imap-configure-error-utf8_mime2text-has-new-signature-but-u8t_canonical-is-missing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>compiling php with  modules to php with custombuild (DA)</title>
		<link>http://www.txtbooks.net/txt/compiling-php-with-modules-to-php-with-custombuild-da/</link>
		<comments>http://www.txtbooks.net/txt/compiling-php-with-modules-to-php-with-custombuild-da/#comments</comments>
		<pubDate>Sun, 03 Jan 2010 13:18:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Direct Admin]]></category>

		<guid isPermaLink="false">http://www.txtbooks.net/?p=6</guid>
		<description><![CDATA[If you want to add any extra modules to php, they'll most likely need to be compiled in. Any module that needs to be compiled in will have a --with-module type flag which will need to be used. To add this flag, run the following:
cd /usr/local/directadmin/custombuild
mkdir -p custom/ap2
cp -fp configure/ap2/configure.php5 custom/ap2/configure.php5
#add your --with-module line to [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to add any extra modules to php, they'll most likely need to be compiled in. Any module that needs to be compiled in will have a --with-<strong>module</strong> type flag which will need to be used. To add this flag, run the following:</p>
<p class="code">cd /usr/local/directadmin/custombuild<br />
mkdir -p custom/ap2<br />
cp -fp configure/ap2/configure.php5 custom/ap2/configure.php5<br />
#add your <strong>--with-module</strong> line to the end of the custom/ap2/configure.php5 file,<br />
# and make sure the \ character exists at the end of all lines except the last one.<br />
./build php n</p>
<p>change configure.php5 to configure.php4 if you're using php4.<br />
If you're using suphp, the paths would be configure/suphp/configure.php5 and custom/suphp/configure.php5.</p>
<p>Restart apache:</p>
<p>RedHat:</p>
<p class="code">/sbin/service httpd restart</p>
]]></content:encoded>
			<wfw:commentRss>http://www.txtbooks.net/txt/compiling-php-with-modules-to-php-with-custombuild-da/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
