<?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>Altentee &#187; Performance &#38; Test Automation Experts &#187; php</title>
	<atom:link href="http://altentee.com/tag/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://altentee.com</link>
	<description>Performance and Test Automation Experts</description>
	<lastBuildDate>Sat, 12 Jun 2010 00:35:08 +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>Installing GD Libraries for Leopard Apache PHP 5.2.5</title>
		<link>http://altentee.com/2008/installing-gd-libraries-for-leopard-apache-php-525/</link>
		<comments>http://altentee.com/2008/installing-gd-libraries-for-leopard-apache-php-525/#comments</comments>
		<pubDate>Tue, 29 Apr 2008 09:14:24 +0000</pubDate>
		<dc:creator>Tim Koopmans</dc:creator>
				<category><![CDATA[90kts]]></category>
		<category><![CDATA[Altentee]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://90kts.com/blog/2008/installing-gd-libraries-for-leopard-apache-php-525/</guid>
		<description><![CDATA[<p>Another post for my fading memory, how to install the GD libraries for your Leopard Apache installation running PHP 5.2.5. I will be using these libraries in a forthcoming blog about the use of &#8216;sparklines&#8216; to present complex performance monitoring data.</p>
<p>Now on with installation. Thanks to topicdesk for leading the way with detailed OSX 10.5.x [...]]]></description>
			<content:encoded><![CDATA[<p>Another post for my fading memory, how to install the GD libraries for your Leopard Apache installation running PHP 5.2.5. I will be using these libraries in a forthcoming blog about the use of &#8216;<a href="http://sparkline.org/">sparklines</a>&#8216; to present complex performance monitoring data.</p>
<p>Now on with installation. Thanks to <a href="http://osx.topicdesk.com/content/view/133/62/">topicdesk</a> for leading the way with detailed OSX 10.5.x server installation instructions. Here&#8217;s my own shorthand version &#8230;<br />
<span id="more-143"></span></p>
<p><strong>Note: </strong>You will first need to install the Apple Developer Tools that come with your OSX installation DVD!</p>
<p>1. Download, compile and install a copy of <a href="http://www.ijg.org/files/jpegsrc.v6b.tar.gz">libjpeg</a> in your ~/Downloads directory<br />
<code>cd ~/Downloads/jpeg-6b<br />
cp /usr/share/libtool/config.sub .<br />
cp /usr/share/libtool/config.guess .<br />
./configure --enable-shared<br />
sudo make<br />
sudo mkdir -p /usr/local/include<br />
sudo mkdir -p /usr/local/bin<br />
sudo mkdir -p /usr/local/lib<br />
sudo mkdir -p /usr/local/man/man1<br />
sudo make install</code></p>
<p>2. Download, compile and install a copy of <a href="http://www.opensource.apple.com/darwinsource/10.5/apache_mod_php-43/php-5.2.4.tar.bz2">PHP GD extensions </a>in your ~/Downloads directory<br />
<code>cd ~/Downloads/php-5.2.4/ext/gd/<br />
sudo phpize<br />
sudo ./configure --with-zlib-dir=/usr --with-jpeg-dir=/usr/local/lib --with-png-dir=/usr/X11R6 --with-freetype-dir=/usr/X11R6 --with-xpm-dir=/usr/X11R6<br />
sudo make<br />
sudo make install</code></p>
<p>3. Modify your php.ini<br />
<code>sudo cp /etc/php.ini.default /etc/php.ini<br />
sudo vi /etc/php.ini<br />
<em>add the following line to your extensions </em><br />
extension=gd.so<br />
<em>comment the following line for your extensions dir with a ';'</em><br />
extension_dir = "./"<br />
save and quit vi (:wq!)</p>
<p></code></p>
<p>4. Restart Apache and check the results using phpinfo()<br />
<code>sudo apachectl restart</code><br />
<a href='http://90kts.com/blog/wp-content/uploads/2008/04/gd.png' title='gd'><img src='http://90kts.com/blog/wp-content/uploads/2008/04/gd.png' alt='gd' /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://altentee.com/2008/installing-gd-libraries-for-leopard-apache-php-525/feed/</wfw:commentRss>
		<slash:comments>33</slash:comments>
		</item>
		<item>
		<title>NuSOAP and PHP5</title>
		<link>http://altentee.com/2007/nusoap-and-php5/</link>
		<comments>http://altentee.com/2007/nusoap-and-php5/#comments</comments>
		<pubDate>Fri, 30 Mar 2007 02:49:58 +0000</pubDate>
		<dc:creator>Tim Koopmans</dc:creator>
				<category><![CDATA[90kts]]></category>
		<category><![CDATA[Altentee]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://90kts.com/blog/?p=16</guid>
		<description><![CDATA[<p>When installing the NuSOAP class on a system with PHP5,  you may get the following error:</p>
<p>&#8220;Fatal error: Cannot redeclare class soapclient in ../nusoap.php on line 7240&#8243;</p>
<p>A quick google search will reveal the following cause.
As PHP5 already has a built in class called soapclient, this is where the clash is&#8230;</p>
<p>The best way to fix this [...]]]></description>
			<content:encoded><![CDATA[<p>When installing the NuSOAP class on a system with PHP5,  you may get the following error:</p>
<p>&#8220;Fatal error: Cannot redeclare class soapclient in ../nusoap.php on line 7240&#8243;</p>
<p>A quick <a href="http://www.oreillynet.com/cs/user/view/cs_msg/56663">google</a> search will reveal the following cause.<br />
As PHP5 already has a built in class called soapclient, this is where the clash is&#8230;</p>
<p>The best way to fix this problem is to rename all instances of <b>soapclient</b> with <b>nusoapclient</b> in the lib and samples directories that come with the 0.7.2 version of NuSOAP.</p>
]]></content:encoded>
			<wfw:commentRss>http://altentee.com/2007/nusoap-and-php5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
