<?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>Utah PHP Users Group &#187; Steve Dibb</title>
	<atom:link href="http://uphpu.org/author/beandog/feed/" rel="self" type="application/rss+xml" />
	<link>http://uphpu.org</link>
	<description>PHP application development and support</description>
	<pubDate>Wed, 23 Jul 2008 14:36:53 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
	<language>en</language>
			<item>
		<title>Teeny tiny PHP 5 manual install howto for gentoo</title>
		<link>http://uphpu.org/2005/06/30/teeny-tiny-php-5-manual-install-howto-for-gentoo/</link>
		<comments>http://uphpu.org/2005/06/30/teeny-tiny-php-5-manual-install-howto-for-gentoo/#comments</comments>
		<pubDate>Thu, 30 Jun 2005 09:41:25 +0000</pubDate>
		<dc:creator>Steve Dibb</dc:creator>
		
		<category><![CDATA[Articles]]></category>

		<guid isPermaLink="false">http://phlyte.uphpu.org/?p=85</guid>
		<description><![CDATA[For those of us who use Gentoo and want all the power/speed/features/bragging rights of using PHP5, you know it can be tricky since the packages are hard masked for now.
For the impatient in all of us, here&#8217;s a really really short summarized set of instructions on how to install it with your current setup.
]]></description>
			<content:encoded><![CDATA[<p>For those of us who use Gentoo and want all the power/speed/features/bragging rights of using PHP5, you know it can be tricky since the packages are hard masked for now.
<p>For the impatient in all of us, here&#8217;s <a href='http://forums.gentoo.org/viewtopic-p-2536517.html#2536517'>a really really short summarized set of instructions</a> on how to install it with your current setup.</p>
]]></content:encoded>
			<wfw:commentRss>http://uphpu.org/2005/06/30/teeny-tiny-php-5-manual-install-howto-for-gentoo/feed/</wfw:commentRss>
		</item>
		<item>
		<title>MySQL replication howto</title>
		<link>http://uphpu.org/2004/10/22/mysql-replication-howto/</link>
		<comments>http://uphpu.org/2004/10/22/mysql-replication-howto/#comments</comments>
		<pubDate>Sat, 23 Oct 2004 03:25:30 +0000</pubDate>
		<dc:creator>Steve Dibb</dc:creator>
		
		<category><![CDATA[Articles]]></category>

		<guid isPermaLink="false">http://phlyte.uphpu.org/?p=168</guid>
		<description><![CDATA[Replication with MySQL shouldn&#8217;t be a pain.  Unfortunately, when the official documentation doesn&#8217;t offer too many details, it&#8217;s hard to know exactly what&#8217;s going on.
Here&#8217;s a generic mysql replication howto that should work on any linux distribution.
]]></description>
			<content:encoded><![CDATA[<p>Replication with MySQL shouldn&#8217;t be a pain.  Unfortunately, when the official documentation doesn&#8217;t offer too many details, it&#8217;s hard to know exactly what&#8217;s going on.
<p>Here&#8217;s a <a href='http://forums.gentoo.org/viewtopic.php?t=241123'>generic mysql replication howto</a> that should work on any linux distribution.</p>
]]></content:encoded>
			<wfw:commentRss>http://uphpu.org/2004/10/22/mysql-replication-howto/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Use the source: Apache 1.3.x + mod_ssl + PHP5 + PEAR</title>
		<link>http://uphpu.org/2004/07/31/use-the-source-apache-13x-mod_ssl-php5-pear/</link>
		<comments>http://uphpu.org/2004/07/31/use-the-source-apache-13x-mod_ssl-php5-pear/#comments</comments>
		<pubDate>Sun, 01 Aug 2004 05:14:28 +0000</pubDate>
		<dc:creator>Steve Dibb</dc:creator>
		
		<category><![CDATA[Articles]]></category>

		<guid isPermaLink="false">http://phlyte.uphpu.org/?p=209</guid>
		<description><![CDATA[Here&#8217;s version 1 of my Apache+PHP5 source install tutorial.  This is a tweaked version of my Gentoo-speific instructions to be more generic to any Linux distro.
Updates (if needed) will be on the Gentoo Forums where I originally posted it online.
Download the packages

# cd /tmp# wget http://us2.php.net/get/php-5.0.0.tar.bz2/from/us3.php.net/mirror# wget http://apache.247available.com/httpd/apache_1.3.31.tar.gz# wget http://www.modssl.org/source/mod_ssl-2.8.19-1.3.31.tar.gz

Unpack packages
Please note &#8212; package [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s version 1 of my Apache+PHP5 source install tutorial.  This is a tweaked version of my Gentoo-speific instructions to be more generic to any Linux distro.</p>
<p>Updates (if needed) will be on the Gentoo Forums where I originally posted it <a href="http://forums.gentoo.org/viewtopic.php?t=169603">online</a>.</p>
<p><b>Download the packages</b>
<p>
<pre># cd /tmp# wget http://us2.php.net/get/php-5.0.0.tar.bz2/from/us3.php.net/mirror# wget http://apache.247available.com/httpd/apache_1.3.31.tar.gz# wget http://www.modssl.org/source/mod_ssl-2.8.19-1.3.31.tar.gz</pre>
<p>
<p><b>Unpack packages</b>
<p>Please note &#8212; package versions will definately change as they get updated.  Just replace my examples with real world filenames.
<pre># tar zxf apache_1.3.31.tar.gz# tar zxf mod_ssl-2.8.19-1.3.31.tar.gz# tar jxf php-5.0.0.tar.bz2</pre>
<p>
<p><b>Configure mod_ssl</b>
<p>
<pre># cd mod_ssl-2.8.19-1.3.31/# ./configure --with-apache=../apache_1.3.31/</pre>
<p>You should see some output similar to this:
<pre>Configuring mod_ssl/2.8.19 for Apache/1.3.31 + Apache location: ../apache_1.3.31/ (Version 1.3.31) + Auxiliary patch tool: ./etc/patch/patch (local)     + Applying packages to Apache source tree:   o Extended API (EAPI)   o Distribution Documents   o SSL Module Source   o SSL Support   o SSL Configuration Additions   o SSL Module Documentation   o AddonsDone: source extension and patches successfully applied.Now proceed with the following commands (Bourne-Shell syntax): $ cd ../apache_1.3.31/ $ SSL_BASE=/path/to/openssl ./configure ... --enable-module=ssl $ make $ make certificate $ make install</pre>
<p>
<p><b>Configure Apache 1.3.x + test certificate</b>
<p>If you have any custom configuration options you want to pass when compiling Apache, now is to make sure you know what they are.  This guide uses three common ones:[list]&#8211;enable-module=so # to let php run as an apache module + required for php installation&#8211;enable-module=ssl # required to install mod_ssl as a module, optional if you don&#8217;t want https support&#8211;prefix=/www # instead of putting apache binaries and config files in different directories, this creates and puts everything in /www.  You can change the value to whatever you would like.[/list]For this instance, we&#8217;re also making a test certificate.
<pre># cd ../apache_1.3.31# ./configure --enable-module=ssl --prefix=/www --enable-module=so# make certificate TYPE=test</pre>
<p>Fill in all the answers.  I don&#8217;t know a lot about making certificates, so you&#8217;ll have to look for another guide there. :T  I&#8217;m only making a self-signed one that will have to be manually accepted on most browsers just so I can have https support.
<p><b>Install apache + mod_ssl</b>
<p>
<pre># make install</pre>
<p>Now you&#8217;ve got apache + mod_ssl configured with SSL support, and you should be good to go.  If you aren&#8217;t looking for PHP support, you could stop here.  If you&#8217;d like to test your apache configuration right now, try this:Start apache:
<pre>/www/bin/apachectl start</pre>
<p>Start apache with SSL support:
<pre>/www/bin/apachectl startssl</pre>
<p>After you&#8217;ve browsed to http://localhost/ or https://localhost/ stop apache since we&#8217;ll have to start it back up after installing PHP.  I also include a custom init.d script you can use later in the guide to start/stop apache easily.
<pre>/www/bin/apachectl stop</pre>
<p>
<p><b>Configure PHP5</b>
<p>
<pre># cd ../php-5.0.0/</pre>
<p>DO NOT FORGET that MySQL support is disabled by default in PHP 5.0.0.  I can&#8217;t remember why.  The point is that you have to make sure to enable it if you want to be able to connect to a MySQL database with PHP.I&#8217;ll start with some basic configuration options, and present some other common PHP options you might want to use, and which packages you will need to emerge in order to use them.Basic PHP configuration for a PHP5 module:
<pre>#./configure --with-apxs=/www/bin/apxs</pre>
<p>Basic + MySQL support:
<pre># emerge mysql# ./configure --with-apxs=/www/bin/apxs --with-mysql</pre>
<p>Basic + PostgreSQL support:
<pre># emerge postgresql# ./configure --with-apxs=/www/bin/apxs --with-pgsql</pre>
<p>Basic + zlib support (gzip compress/uncompress):
<pre># ./configure --with-apxs=/www/bin/apxs --with-zlib</pre>
<p>zlib is probably already installed.  I&#8217;d be surprised if it wasn&#8217;t.Add SQLite support by installing SQLite (see http://www.sqlite.org/ ).  SQLite support in php5 is enabled by default, and will be included in your configuration if it can link against the sqlite libraries.Add zip support:
<pre># wget http://unc.dl.sourceforge.net/sourceforge/zziplib/zziplib-0.10.82.tar.bz2install zziplib</pre>
<p>You install ZIP support later with PEAR, but you need zziplib installed before you get there.Disable CGI support if you don&#8217;t need it:
<pre>#./configure --with-apxs=/www/bin/apxs --disable-cgi</pre>
<p>Add them all up:
<pre># ./configure --with-mysql --with-zlib --with-pgsql --disable-cgi --with-apxs=/www/bin/apxs</pre>
<p>Then, compile and install php:
<pre># make &#038;&#038; make install</pre>
<p>Use the default php.ini:
<pre># cp php.ini-dist /usr/local/lib/php.ini</pre>
<p>Tweaks &#8212; Make life a bit easier:
<pre># ln -s /usr/local/lib/php.ini /etc/php.ini# ln -s /www/conf/httpd.conf /etc/httpd.conf</pre>
<p>There you go &#8212; now you have Apache + php5 setup.  Congratulations. :)  All that&#8217;s left is to setup PEAR (optional) tweak your apache config files and setup a custom init script.
<p><b>Setup PEAR</b>
<p>PEAR stands for PHP Extension and Application Repository.  I think.  I prefer to think of it as official php classes that absolutely rock and save a lot of time.  Unfortunately, PEAR can be a bit annoying to setup (especially with dependencies).  Here&#8217;s the basics.Upgrade all your packages to the latest version:
<pre># pear upgrade-all</pre>
<p>Tweaks &#8212; Fix PEAR&#8217;s funky settings for PECL extensions:
<pre># mkdir /usr/local/lib/php/extensions# pear config-set ext_dir /usr/local/lib/php/extensions</pre>
<p>Running pear-config modifies ~/.pearrc so MAKE SURE you run that command as root, since you&#8217;ll be installing PEAR packages as root.Now you can install some PECL modules (such as bz2 and zip) and they will drop the modules in /usr/local/lib/php/extensionsUse PEAR &#8212; Add the classes directory to your include_path:
<pre># vim /usr/local/lib/php.iniOld: include_path = ".:/php/includes"New: include_path = ".:/usr/local/lib/php"</pre>
<p>
<p><b>Apache config files</b>
<p>After you run make install on php5, it will automatically add a line to the apache config (/www/conf/httpd.conf) that will include the php5 module.  However, it doesn&#8217;t set it up to start parsing .php files through the module.  You&#8217;ll have to do that yourself:
<pre># echo "AddType application/x-httpd-php .php" >> /www/conf/httpd.conf# echo "AddType application/x-httpd-php-source .phps" >> /www/conf/httpd.conf</pre>
<p>Next, change the conf file to read index.php as the index page of a directory:
<pre># vim /www/conf/httpd.confOld: DirectoryIndex index.htmlNew: DirectoryIndex index.php index.html</pre>
<p>That&#8217;s it &#8212; you should be set and ready to go, and start serving up PHP pages without any problems. :)  What&#8217;s next is some of my own tweaks I like to use INSTEAD OF manually editing httpd.conf and adding those lines I just mentioned.I like to save all my custom apache config files in one place and then &#8220;include&#8221; them in the original httpd.conf.  That way, anytime I upgrade Apache, all I have to add one line to the config file.  It makes things pretty simple.  Here&#8217;s how it works:Create a place to store custom config files:
<pre># mkdir /etc/conf# mkdir /etc/conf/apache</pre>
<p>Create a config file for the general settings:
<pre># vim /etc/conf/apache/general.confAdd:ServerName localhostDocumentRoot "/home/steve/public_html"Options FollowSymLinksAllowOverride None Options Indexes FollowSymLinks AllowOverride None Order allow,deny Allow from all</pre>
<p>Create a file to include the php settings:
<pre># vim /etc/conf/apache/php.confAdd:AddType application/x-httpd-php .phpAddType application/x-httpd-php-source .phpsDirectoryIndex index.php index.html</pre>
<p>Create a file for virtualhosts:
<pre># echo "127.0.0.1 dev" >> /etc/hosts# vim /etc/conf/apache/vhosts.confAdd:NameVirtualHost *:80ServerName localhostOptions IndexesDocumentRoot /home/steve/public_htmlServerName devDocumentRoot /home/steve/dev</pre>
<p>Tell apache to include all those config files with one line:
<pre># echo "Include /etc/conf/apache/*" >> /www/conf/httpd.conf</pre>
<p>And you&#8217;re done. :)
<p><b>Test your setup</b>
<p>Now you should be ready to go.  The best way to test your setup is to start up apache manually and goto http://localhost/ with your browser.
<pre># /www/bin/apachectl start</pre>
<p>You should see some kind of generic welcome to apache screen.Now, create a test php script to make sure that&#8217;s working as well:
<pre># vim /www/htdocs/phpinfo.phpAdd:</pre>
<p>Save the file then browse to http://localhost/phpinfo.php  You should see the PHP configuration page. If not, make sure your PHP settings are setup correctly in the apache config file.
<p>I hope that helps &#8212; please let me know about any errors I may have hit along the way.  Good luck with your Apache+PHP setup!
<p>Steve</p>
]]></content:encoded>
			<wfw:commentRss>http://uphpu.org/2004/07/31/use-the-source-apache-13x-mod_ssl-php5-pear/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Installing Apache 1.3.x + PHP4 + PEAR + mod_ssl from source</title>
		<link>http://uphpu.org/2004/05/23/installing-apache-13x-php4-pear-mod_ssl-from-source/</link>
		<comments>http://uphpu.org/2004/05/23/installing-apache-13x-php4-pear-mod_ssl-from-source/#comments</comments>
		<pubDate>Sun, 23 May 2004 11:40:05 +0000</pubDate>
		<dc:creator>Steve Dibb</dc:creator>
		
		<category><![CDATA[Articles]]></category>

		<guid isPermaLink="false">http://phlyte.uphpu.org/?p=258</guid>
		<description><![CDATA[Note: I originally wrote this for Gentoo, but if you download the source code, the commands are pretty much the same.  I&#8217;ll rewrite it to be more cross-distro friendly.
The advantage to compiling everything from source versus packaged ebuilds is basically that you can easily change both the Apache and PHP configuration options.
Notes:
This setup includes [...]]]></description>
			<content:encoded><![CDATA[<p>Note: I originally wrote this for Gentoo, but if you download the source code, the commands are pretty much the same.  I&#8217;ll rewrite it to be more cross-distro friendly.</p>
<p>The advantage to compiling everything from source versus packaged ebuilds is basically that you can easily change both the Apache and PHP configuration options.<br />
Notes:</p>
<p>This setup includes PEAR which is optional if you don&#8217;t want to use it.  PHP installs it by default.<br />
This setup also generates a test certificate for mod_ssl &#8212; you&#8217;re on your own if you want to integrate an existing one (shouldn&#8217;t be hard though)<br />
I have a directory named /src where I store my downloads, so you&#8217;ll see my commands running from that directory.</p>
<p># download apache_1.3.29.tar.gz and mod_ssl<br />
emerge -f mod_ssl</p>
<p># download php-4.3.6.tar.bz2<br />
# http://www.php.net/get/php-4.3.6.tar.bz2/from/a/mirror<br />
# or<br />
emerge -f php</p>
<p># create and goto our temp directory<br />
mkdir /src<br />
cd /src</p>
<p># unpack apache, php and mod_ssl<br />
tar -zxvf /usr/portage/distfiles/apache_1.3.29.tar.gz<br />
tar -jxvf /usr/portage/distfiles/php-4.3.6.tar.bz2<br />
tar -zxvf /usr/portage/distfiles/mod_ssl-2.8.16-1.3.29.tar.gz</p>
<p># configure mod_ssl<br />
cd mod_ssl-2.8.16-1.3.29<br />
./configure &#8211;with-apache=../apache_1.3.29<br />
cd ../apache_1.3.29</p>
<p># configure apache<br />
# if you have any other configuration options to pass to apache, now&#8217;s the time<br />
# run ./configure &#8211;help in the apache_1.3.29 directory to see your options<br />
# I&#8217;m using &#8211;prefix=/www because I think it&#8217;s cleaner having everything in one directory,<br />
# plus the php install doc does it too. ;-)<br />
# same with &#8211;enable-module=so &#8212; required for php installation<br />
./configure &#8211;enable-module=ssl &#8211;prefix=/www &#8211;enable-module=so</p>
<p># this message should display:</p>
<p>+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+<br />
| Before you install the package you now should prepare the SSL       |<br />
| certificate system by running the &#8216;make certificate&#8217; command.       |<br />
| For different situations the following variants are provided:       |<br />
|                                                                     |<br />
| % make certificate TYPE=dummy    (dummy self-signed Snake Oil cert) |<br />
| % make certificate TYPE=test     (test cert signed by Snake Oil CA) |<br />
| % make certificate TYPE=custom   (custom cert signed by own CA)     |<br />
| % make certificate TYPE=existing (existing cert)                    |<br />
|        CRT=/path/to/your.crt [KEY=/path/to/your.key]                |<br />
|                                                                     |<br />
| Use TYPE=dummy    when you&#8217;re a  vendor package maintainer,         |<br />
| the TYPE=test     when you&#8217;re an admin but want to do tests only,   |<br />
| the TYPE=custom   when you&#8217;re an admin willing to run a real server |<br />
| and TYPE=existing when you&#8217;re an admin who upgrades a server.       |<br />
| (The default is TYPE=test)                                          |<br />
|                                                                     |<br />
| Additionally add ALGO=RSA (default) or ALGO=DSA to select           |<br />
| the signature algorithm used for the generated certificate.         |<br />
|                                                                     |<br />
| Use &#8216;make certificate VIEW=1&#8242; to display the generated data.        |<br />
|                                                                     |<br />
| Thanks for using Apache &#038; mod_ssl.       Ralf S. Engelschall        |<br />
|                                          rse@engelschall.com        |<br />
|                                          www.engelschall.com        |<br />
+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+</p>
<p># for this instance, we&#8217;re making a test certificate<br />
make certificate TYPE=test<br />
# fill out all the answers</p>
<p># install apache + mod_ssl into /www<br />
make install</p>
<p># configure php4<br />
cd ../php-4.3.6</p>
<p># pick your configuration &#8212; run ./configure &#8211;help to see your options</p>
<p># base configuration<br />
./configure &#8211;with-apxs=/www/bin/apxs<br />
# base config + support for mysql:<br />
./configure &#8211;with-apxs=/www/bin/apxs &#8211;with-mysql<br />
# base config + support for postgresql:<br />
./configure &#8211;with-apxs=/www/bin/apxs &#8211;with-pgsql</p>
<p># for the record, my configuration - mysql, postgres, cracklib, zip and zlib:<br />
# if you want zip support, then emerge zziplib first<br />
# for crack support, emerge cracklib<br />
# zlib is probably already emerged<br />
./configure &#8211;with-mysql &#8211;with-zip &#8211;with-zlib &#8211;with-crack &#8211;with-pgsql &#8211;with-apxs=/www/bin/apxs</p>
<p># a simple kludge, but running this can show you which things are not supported &#8212; comes in handy sometimes:<br />
./configure [configuration options] | grep no<br />
# example: ./configure &#8211;with-apxs=/www/bin/apxs &#8211;with-mysql | grep no</p>
<p># compile and install php4<br />
make &#038;&#038; make install</p>
<p># use the default php.ini<br />
cp php.ini-dist /usr/local/lib/php.ini</p>
<p># make life a bit easier<br />
ln -s /usr/local/lib/php.ini /etc/php.ini<br />
ln -s /www/conf/httpd.conf /etc/httpd.conf</p>
<p># setup PEAR (a collection of PHP classes http://pear.php.net/ )<br />
# run pear to see your options<br />
# upgrade the current list of packages<br />
pear upgrade-all</p>
<p># include PEAR&#8217;s classes in your default include path<br />
vim /etc/php.ini<br />
# Change &#8216;include_path = &#8220;.:/php/includes&#8221;&#8216; to<br />
include_path = &#8220;.:/usr/local/lib/php&#8221;</p>
<p># Setup php4 in your apache conf file<br />
# You can *ignore* the php docs when it says to include AddModule and LoadModule commands &#8212; apache already included them in there.<br />
vim /etc/httpd.conf<br />
# Change &#8216;DirectoryIndex index.html&#8217; to<br />
DirectoryIndex index.php index.html</p>
<p># Add (I put mine right under &#8216;LoadModule php4_module   libexec/libphp4.so&#8217; )</p>
<p>AddType application/x-httpd-php .php .phtml<br />
AddType application/x-httpd-php-source .phps</p>
<p>#Add ServerName localhost somewhere (I put mine under &#8216;ServerRoot &#8220;/www&#8221;&#8216; )<br />
ServerName localhost</p>
<p># Setup apache virtualhosts<br />
# Uncomment (very bottom, right above the mod_ssl section)<br />
NameVirtualHost *:80</p>
<p># Add to the end of the file:<br />
<VirtualHost *:80><br />
        DocumentRoot /www/htdocs<br />
        ServerName localhost<br />
</VirtualHost></p>
<p># test your apache config<br />
/www/bin/apachectl configtest<br />
/www/bin/apachectl start<br />
lynx http://localhost/<br />
lynx https://localhost/</p>
<p># create an init script<br />
vim /etc/init.d/apache<br />
#!/sbin/runscript</p>
<p>depend() {<br />
        need net<br />
}</p>
<p>start() {<br />
        ebegin &#8220;Starting apache&#8221;<br />
        /www/bin/apachectl start<br />
        eend $?<br />
}</p>
<p>stop() {<br />
        ebegin &#8220;Stopping apache&#8221;<br />
        /www/bin/apachectl stop<br />
        eend $?<br />
}</p>
<p>graceful() {<br />
        ebegin &#8220;Restarting apache gracefully&#8221;<br />
        /www/bin/apachectl graceful<br />
        eend $?<br />
}</p>
<p>restart() {<br />
        svc_stop<br />
        svc_start<br />
}</p>
<p># start apache on boot<br />
rc-update add apache default</p>
<p># If you don&#8217;t want to see the apachectl output when running the script, add > /dev/null to the apachectl commands:<br />
# /www/bin/apachectl start > /dev/null<br />
# /www/bin/apachectl stop > /dev/null<br />
# /www/bin/apachectl graceful > /dev/null<br />
# the only problem with that is you might be supressing some error messages, and not know.</p>
<p># apachectl graceful - http://httpd.apache.org/docs/stopping.html<br />
# basically it waits for every connection to die before restarting, so anyone who is visiting isn&#8217;t suddenly dropped</p>
<p># test your php setup<br />
cd /www/htdocs<br />
echo &#8220;<? phpinfo(); ?>&#8221; > phpinfo.php<br />
lynx http://localhost/phpinfo.php<br />
# you should see sections for the configuration options you passed</p>
<p>You should be good to go.  Good luck! :)</p>
<p>Please lemme know of anything I missed.  Thanks guys :D</p>
]]></content:encoded>
			<wfw:commentRss>http://uphpu.org/2004/05/23/installing-apache-13x-php4-pear-mod_ssl-from-source/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
