<?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>PRESOON.COM &#187; PHP</title>
	<atom:link href="http://presoon.com/blog/category/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://presoon.com/blog</link>
	<description></description>
	<lastBuildDate>Sat, 20 Mar 2010 03:59:50 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Custom php.ini for PHP CGI in cPanel.</title>
		<link>http://presoon.com/blog/2010/02/26/custom-php-ini-for-php-cgi-in-cpanel/</link>
		<comments>http://presoon.com/blog/2010/02/26/custom-php-ini-for-php-cgi-in-cpanel/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 22:06:50 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Cpanel]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[custom php.ini]]></category>
		<category><![CDATA[php-cgi]]></category>
		<category><![CDATA[php.ini not working]]></category>
		<category><![CDATA[php_cgi]]></category>

		<guid isPermaLink="false">http://presoon.com/blog/?p=171</guid>
		<description><![CDATA[Hi guys,
When PHP is compiled as CGI, you won&#8217;t be able to provide custom php flags in .htaccess or just simply add a php.ini if your home directory.
To enable a custom php.ini for your domain running PHP as cgi, perform the following steps.
Please note that I am considering that the server has PHP4 and PHP5 [...]]]></description>
			<content:encoded><![CDATA[<p>Hi guys,</p>
<p>When PHP is compiled as CGI, you won&#8217;t be able to provide custom php flags in .htaccess or just simply add a php.ini if your home directory.</p>
<p>To enable a custom php.ini for your domain running PHP as cgi, perform the following steps.</p>
<p>Please note that I am considering that the server has PHP4 and PHP5 where PHP4 is default (dso)-not relevant and PHP5 (cgi)</p>
<p><strong>My username is &#8220;presoon&#8221; so my home directory will be &#8220;/home/presoon&#8221; (replace with yours)</strong></p>
<p>create a custom cgi script in your cgi-bin directory.</p>
<pre><code>vi /home/presoon/public_html/cgi-bin/php.cgi</code></pre>
<p>add the following contents.</p>
<pre><code>#!/bin/sh
exec /usr/local/cpanel/cgi-sys/php5 -c /home/presoon/public_html/</code></pre>
<p>You should have the custom php.ini at &#8220;/home/presoon/public_html/&#8221;</p>
<pre><code>chown presoon.presoon /home/presoon/public_html/cgi-bin/php.cgi
chmod 755 /home/presoon/public_html/cgi-bin/php.cgi</code></pre>
<p>Now to the .htaccess file at &#8220;/home/presoon/public_html/&#8221;<br />
Add the following</p>
<pre><code>AddHandler application/x-httpd-php5 .php
Action application/x-httpd-php5 /cgi-bin/php.cgi</code></pre>
<p>Please note that AddHandler given above is to change default php to PHP5. If you have only PHP5 which is compiled as CGI, you can remove the directive AddHandler from .htaccess.</p>
<p>Now the values given in your php.ini at /home/presoon/public_html/ should reflect you info page. <img src='http://presoon.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://presoon.com/blog/2010/02/26/custom-php-ini-for-php-cgi-in-cpanel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Suhosin : Exclude a domain from disabled functions</title>
		<link>http://presoon.com/blog/2009/07/08/suhosin-exclude-a-domain-from-disabled-functions/</link>
		<comments>http://presoon.com/blog/2009/07/08/suhosin-exclude-a-domain-from-disabled-functions/#comments</comments>
		<pubDate>Wed, 08 Jul 2009 03:39:01 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[cover]]></category>
		<category><![CDATA[protection]]></category>
		<category><![CDATA[suhosing]]></category>

		<guid isPermaLink="false">http://presoon.com/blog/?p=111</guid>
		<description><![CDATA[when you use use &#8220;suhosin.executor.func.blacklist&#8221;, in php.ini it will disable those functions to entire domains in the server.
However, you can exclude domains from that restriction by using the appropriate entry in the apache configuration.
If in php.ini you have added suhosin.executor.func.blacklist = “exec,passthru,shell_exec” and all the functions that you want to disable globally.
Find the corresponding domain&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>when you use use &#8220;suhosin.executor.func.blacklist&#8221;, in php.ini it will disable those functions to entire domains in the server.</p>
<p>However, you can exclude domains from that restriction by using the appropriate entry in the apache configuration.</p>
<p>If in php.ini you have added suhosin.executor.func.blacklist = “exec,passthru,shell_exec” and all the functions that you want to disable globally.</p>
<p>Find the corresponding domain&#8217;s Virtual Host entry for which you want to exclude from /usr/local/apache/conf/httpd.conf   suhosin.executor.func.blacklist again but without the function that you need to enable. And so you will enable that function only for one domain.</p>
<pre>
<code>&lt;VirtualHost 78.45.23.1:80&gt;
………..
………..
&lt;IfModule mod_php4.c&gt;
php_admin_value open_basedir “/usr/lib/php”
&lt;/IfModule&gt;
&lt;IfModule mod_php5.c&gt;
php_admin_value open_basedir “/usr/lib/php”
php_admin_value suhosin.executor.func.blacklist = “passthru,shell_exec”
&lt;/IfModule&gt;
…….
……
&lt;/VirtualHost&gt;</code>
</pre>
<p>In this example exec has been enabled for the VirtualHost.</p>
<p>Thats all</p>
]]></content:encoded>
			<wfw:commentRss>http://presoon.com/blog/2009/07/08/suhosin-exclude-a-domain-from-disabled-functions/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Install PHP-MemCache Module On CentOS 5.0 + RHEL</title>
		<link>http://presoon.com/blog/2009/01/17/install-php-memcache-module-on-centos-50-rhel/</link>
		<comments>http://presoon.com/blog/2009/01/17/install-php-memcache-module-on-centos-50-rhel/#comments</comments>
		<pubDate>Sat, 17 Jan 2009 09:57:48 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Installation]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[memcache]]></category>
		<category><![CDATA[pecl]]></category>

		<guid isPermaLink="false">http://presoon.com/blog/?p=74</guid>
		<description><![CDATA[Download
wget http://pecl.php.net/get/memcache-2.1.2.tgz
tar -zxf memcache-2.1.2.tgz
cd memcache-2.1.2
phpize &#038;&#038;
./configure &#8211;enable-memcache
make
make install 
This should create memcache.so in your extenstion directory (/usr/lib/php/modules)
If it is not done copy the file memcache.so to the default module directory.
locate your php.ini file
php -i&#124; grep php.ini
add the line
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;
extension=memcache.so
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;
Restart Apache
/etc/rc.d/init.d/httpd restart
check the module is working
php -i&#124; grep memcache.
should show something like
=============
memcache
memcache support => enabled
memcache.allow_failover => 1 [...]]]></description>
			<content:encoded><![CDATA[<p>Download</p>
<p>wget http://pecl.php.net/get/memcache-2.1.2.tgz<br />
tar -zxf memcache-2.1.2.tgz<br />
cd memcache-2.1.2</p>
<p>phpize &#038;&#038;<br />
./configure &#8211;enable-memcache<br />
make<br />
make install </p>
<p>This should create memcache.so in your extenstion directory (/usr/lib/php/modules)</p>
<p>If it is not done copy the file memcache.so to the default module directory.<br />
locate your php.ini file</p>
<p>php -i| grep php.ini</p>
<p>add the line</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
extension=memcache.so<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>Restart Apache</p>
<p>/etc/rc.d/init.d/httpd restart</p>
<p>check the module is working<br />
php -i| grep memcache.</p>
<p>should show something like</p>
<p>=============<br />
memcache<br />
memcache support => enabled<br />
memcache.allow_failover => 1 => 1<br />
memcache.chunk_size => 8192 => 8192<br />
memcache.default_port => 11211 => 11211<br />
memcache.max_failover_attempts => 20 => 20<br />
Registered save handlers => files user memcache<br />
OLDPWD => /usr/local/src/ezsmsupport/memcache-2.1.2<br />
=============</p>
<p>Also, you can find it in your phpinfo page.<br />
Thats all.</p>
]]></content:encoded>
			<wfw:commentRss>http://presoon.com/blog/2009/01/17/install-php-memcache-module-on-centos-50-rhel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PhpMyAdmin Installation</title>
		<link>http://presoon.com/blog/2009/01/08/phpmyadmin-installation/</link>
		<comments>http://presoon.com/blog/2009/01/08/phpmyadmin-installation/#comments</comments>
		<pubDate>Thu, 08 Jan 2009 12:18:42 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Mysql]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[mysql administration]]></category>
		<category><![CDATA[phpmyadmin]]></category>

		<guid isPermaLink="false">http://presoon.com/blog/?p=73</guid>
		<description><![CDATA[PhpMyAdmin Installation for a domain is so easy.
Enter into your webdirectory (public_html)
Download the source into it.
From shell
wget http://jaist.dl.sourceforge.net/sourceforge/phpmyadmin/phpMyAdmin-3.1.1-english.tar.gz
or download the source from http://jaist.dl.sourceforge.net/sourceforge/phpmyadmin/phpMyAdmin-3.1.1-english.tar.gz and upload it via FTP to your public_html
extract the contents
tar -zxf phpMyAdmin-3.1.1-english.tar.gz
Alternatively you may use the filemanger extract option for the purpose.
you can now access your phpmyadmin using the link
www.yourdomain.com/phpMyAdmin-3.1.1-english/
Before that you [...]]]></description>
			<content:encoded><![CDATA[<p>PhpMyAdmin Installation for a domain is so easy.</p>
<p>Enter into your webdirectory (public_html)</p>
<p>Download the source into it.</p>
<p>From shell</p>
<p>wget http://jaist.dl.sourceforge.net/sourceforge/phpmyadmin/phpMyAdmin-3.1.1-english.tar.gz</p>
<p>or download the source from http://jaist.dl.sourceforge.net/sourceforge/phpmyadmin/phpMyAdmin-3.1.1-english.tar.gz and upload it via FTP to your public_html</p>
<p>extract the contents</p>
<p>tar -zxf phpMyAdmin-3.1.1-english.tar.gz</p>
<p>Alternatively you may use the filemanger extract option for the purpose.</p>
<p>you can now access your phpmyadmin using the link</p>
<p>www.yourdomain.com/phpMyAdmin-3.1.1-english/</p>
<p>Before that you need to configure that.</p>
<p>You need to have</p>
<p>1 database</p>
<p>2 database user</p>
<p>3 database user password.</p>
<p>Now navigate to the directory libraries under /phpMyAdmin-3.1.1-english/ you will have a file named config.default.php.</p>
<p>You need to edit this file</p>
<p>===================<br />
$cfg['Servers'][$i]['host']          = &#8216;1002-2.lowesthosting.com&#8217;; // MySQL hostname or IP address<br />
$cfg['Servers'][$i]['port']          = &#8216;4455&#8242;;          // MySQL port &#8211; leave blank for default port<br />
$cfg['Servers'][$i]['socket']        = &#8216;/tmp/mysqlt.sock&#8217;;          // Path to the socket &#8211; leave blank for default socket<br />
$cfg['Servers'][$i]['connect_type']  = &#8217;socket&#8217;;       // How to connect to MySQL server (&#8216;tcp&#8217; or &#8217;socket&#8217;)<br />
$cfg['Servers'][$i]['extension']     = &#8216;mysql&#8217;;     // The php MySQL extension to use (&#8216;mysql&#8217; or &#8216;mysqli&#8217;)<br />
$cfg['Servers'][$i]['compress']      = FALSE;       // Use compressed protocol for the MySQL connection<br />
                                                    // (requires PHP &gt;= 4.3.0)<br />
$cfg['Servers'][$i]['controluser']   = &#8216;username&#8217;;          // MySQL control user settings<br />
                                                    // (this user must have read-only<br />
$cfg['Servers'][$i]['controlpass']   = &#8216;password&#8217;;          // access to the &#8220;mysql/user&#8221;<br />
                                                    // and &#8220;mysql/db&#8221; tables).<br />
                                                    // The controluser is also<br />
                                                    // used for all relational<br />
                                                    // features (pmadb)<br />
$cfg['Servers'][$i]['auth_type']     = &#8216;http&#8217;;    // Authentication method (config, http or cookie based)?<br />
$cfg['Servers'][$i]['user']          = &#8216;username&#8217;;      // MySQL user<br />
$cfg['Servers'][$i]['password']      = &#8216;password&#8217;;          // MySQL password (only needed<br />
                                                    // with &#8216;config&#8217; auth_type)<br />
$cfg['Servers'][$i]['only_db']       = &#8216;trial&#8217;;          // If set to a db-name, only<br />
                                                    // this db is displayed in left frame<br />
====================</p>
<p>Update the above with database name, username, password, control user and password which can be the same as db user and password.</p>
<p>Now try accessing the link www.yourdomain.com/phpMyAdmin-3.1.1-english/<br />
enter the login credentials.</p>
<p>Thats all.</p>
]]></content:encoded>
			<wfw:commentRss>http://presoon.com/blog/2009/01/08/phpmyadmin-installation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ioncube Installation</title>
		<link>http://presoon.com/blog/2008/10/19/ioncube-installation/</link>
		<comments>http://presoon.com/blog/2008/10/19/ioncube-installation/#comments</comments>
		<pubDate>Sun, 19 Oct 2008 14:29:03 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Cpanel]]></category>
		<category><![CDATA[Installation]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[cpanel ioncube]]></category>
		<category><![CDATA[ioncube]]></category>
		<category><![CDATA[php ioncube]]></category>
		<category><![CDATA[recompile php]]></category>

		<guid isPermaLink="false">http://presoon.com/blog/?p=69</guid>
		<description><![CDATA[Ioncube is easy to install without recompiling PHP. Specifically in cpanel servers you can install Ioncube without recompiling PHP.
These steps can be used to install in any Linux servers..
Check the architecture.
uname -i
cat /etc/redhat-release
Download the source from the link
http://downloads2.ioncube.com/loader_downloads/
For i316 architecture linux server select
ioncube_loaders_lin_x86.tar.gz

2. Installation
cd /usr/local/src/
wget http://downloads2.ioncube.com/loader_downloads/&#60;source&#62;.tar.gz
tar zxvff &#60;source&#62;.tar.gz 
mv ioncube /usr/local
Locate you php.ini file using [...]]]></description>
			<content:encoded><![CDATA[<p>Ioncube is easy to install without recompiling PHP. Specifically in cpanel servers you can install Ioncube without recompiling PHP.</p>
<p>These steps can be used to install in any Linux servers..</p>
<p>Check the architecture.</p>
<p><em>uname -i</em></p>
<p><em>cat /etc/redhat-release</em></p>
<p>Download the source from the link</p>
<pre>http://downloads2.ioncube.com/loader_downloads/</pre>
<p>For i316 architecture linux server select</p>
<pre>ioncube_loaders_lin_x86.tar.gz
</pre>
<p>2. Installation</p>
<p><em>cd /usr/local/src/</em></p>
<p><em>wget http://downloads2.ioncube.com/loader_downloads/&lt;source&gt;.tar.gz</em></p>
<p><em>tar zxvff &lt;source&gt;.tar.gz </em></p>
<p><em>mv ioncube /usr/local</em></p>
<p>Locate you php.ini file using the command</p>
<p><em>php -i | grep php.ini</em></p>
<p>open up the php.ini file using any editors, find the &#8220;zend_extension&#8221; and add the line</p>
<p><strong>zend_extension=/usr/local/ioncube/ioncube_loader_lin_x.x.so</strong></p>
<p>Don&#8217;t forget to replace x.x with the php verision. For example you have php version 5.2.6, replace the x.x with 5.2.</p>
<p>Restart Apache</p>
<p><em>/etc/rc.d/init.d/httpd restart</em></p>
<p>Test it</p>
<p><em>php -v</em></p>
<p>It should show Ioncube.</p>
]]></content:encoded>
			<wfw:commentRss>http://presoon.com/blog/2008/10/19/ioncube-installation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Suexe issue + PHP  cgi&#8230; individual php.ini file wont reflect&#8230;.Cpanel</title>
		<link>http://presoon.com/blog/2008/10/10/suexe-issue-php-cgi-individual-phpini-file-wont-reflectcpanel/</link>
		<comments>http://presoon.com/blog/2008/10/10/suexe-issue-php-cgi-individual-phpini-file-wont-reflectcpanel/#comments</comments>
		<pubDate>Fri, 10 Oct 2008 17:47:03 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Cpanel]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[cgi]]></category>
		<category><![CDATA[php.ini]]></category>

		<guid isPermaLink="false">http://presoon.com/blog/?p=67</guid>
		<description><![CDATA[The php.ini files in your home directory won&#8217;t reflect the changes.
Perform the following actions to get it resolved.
1. Moving php5 binary:
mv /usr/local/cpanel/cgi-sys/php5 /usr/local/cpanel/cgi-sys/php5.bin
2. Then creating wrapper file in the /usr/local/cpanel/cgi-sys/php5 with the following content:
#!/bin/bash
# This will fake the name &#38; path and hide the /usr/local/cpanel/cgi-sys/php5 path!
export SCRIPT_NAME=$REQUEST_URI
export SCRIPT_FILENAME=$PATH_TRANSLATED
export PWD=$DOCUMENT_ROOT
if [ -f "$DOCUMENT_ROOT/php.ini" ]; then
exec /usr/local/cpanel/cgi-sys/php5.bin [...]]]></description>
			<content:encoded><![CDATA[<p>The php.ini files in your home directory won&#8217;t reflect the changes.</p>
<p>Perform the following actions to get it resolved.</p>
<p>1. Moving php5 binary:</p>
<p>mv /usr/local/cpanel/cgi-sys/php5 /usr/local/cpanel/cgi-sys/php5.bin</p>
<p>2. Then creating wrapper file in the /usr/local/cpanel/cgi-sys/php5 with the following content:</p>
<p>#!/bin/bash</p>
<p># This will fake the name &amp; path and hide the /usr/local/cpanel/cgi-sys/php5 path!<br />
export SCRIPT_NAME=$REQUEST_URI<br />
export SCRIPT_FILENAME=$PATH_TRANSLATED<br />
export PWD=$DOCUMENT_ROOT</p>
<p>if [ -f "$DOCUMENT_ROOT/php.ini" ]; then<br />
exec /usr/local/cpanel/cgi-sys/php5.bin -c $DOCUMENT_ROOT<br />
else<br />
exec /usr/local/cpanel/cgi-sys/php5.bin<br />
fi</p>
<p>3. Save the file and change the permissons:</p>
<p>chown root:wheel /usr/local/cpanel/cgi-sys/php5*;<br />
chmod 755 /usr/local/cpanel/cgi-sys/php5*;</p>
<p>Thanks to Cpanel forums&#8230;..</p>
]]></content:encoded>
			<wfw:commentRss>http://presoon.com/blog/2008/10/10/suexe-issue-php-cgi-individual-phpini-file-wont-reflectcpanel/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Install php 5.2 in Ubuntu</title>
		<link>http://presoon.com/blog/2008/05/21/install-php-52-in-ubuntu/</link>
		<comments>http://presoon.com/blog/2008/05/21/install-php-52-in-ubuntu/#comments</comments>
		<pubDate>Tue, 20 May 2008 22:06:59 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://presoon.com/blog/?p=55</guid>
		<description><![CDATA[Installing PHP 5.2
Adding the Dotdeb repository
We&#8217;re going to add the Dotdeb repository, which will provide the latest versions of PHP for Debian. We need to modify the sources.list file by running the following command 
vi /etc/apt/sources.list
Once you have sources.list file open, add the two following lines
deb http://packages.dotdeb.org stable all
deb-src http://packages.dotdeb.org stable all
Now let&#8217;s update the [...]]]></description>
			<content:encoded><![CDATA[<p>Installing PHP 5.2</p>
<p>Adding the Dotdeb repository</p>
<p>We&#8217;re going to add the Dotdeb repository, which will provide the latest versions of PHP for Debian. We need to modify the sources.list file by running the following command </p>
<p><em>vi /etc/apt/sources.list</em></p>
<p>Once you have sources.list file open, add the two following lines</p>
<p><em>deb http://packages.dotdeb.org stable all<br />
deb-src http://packages.dotdeb.org stable all</em></p>
<p>Now let&#8217;s update the packet database to add those of Dotdeb. The version of Dotdeb packets being always superior to those of Debian, the Dotdeb versions will be automatically selected during the installation of PHP </p>
<p>Installing PHP 5</p>
<p>After having added the Dotdeb repository, we can move on to installing PHP:</p>
<p><em>apt-get install php5-mysql</em><br />
<em>apache2ctl restart</em></p>
<p>Test PHP by checking the phpinfo page</p>
]]></content:encoded>
			<wfw:commentRss>http://presoon.com/blog/2008/05/21/install-php-52-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jmorecfg.h</title>
		<link>http://presoon.com/blog/2008/04/26/jmorecfgh/</link>
		<comments>http://presoon.com/blog/2008/04/26/jmorecfgh/#comments</comments>
		<pubDate>Sat, 26 Apr 2008 09:36:12 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Installation]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[jmorecfg.h]]></category>

		<guid isPermaLink="false">http://presoon.com/blog/?p=40</guid>
		<description><![CDATA[If this header file is not found when you give make for  gd installation download it 
===================
wget http://www.ece.cmu.edu/~ece796/project99/7/final/code/jmorecfg.h
mv jmorecfg.h /usr/lib/
===================
===================
updatedb
===================
or
===================
ldconfig
===================
]]></description>
			<content:encoded><![CDATA[<p>If this header file is not found when you give make for  gd installation download it </p>
<p>===================<br />
wget http://www.ece.cmu.edu/~ece796/project99/7/final/code/jmorecfg.h</p>
<p>mv jmorecfg.h /usr/lib/<br />
===================</p>
<p>===================<br />
updatedb<br />
===================<br />
or<br />
===================<br />
ldconfig<br />
===================</p>
]]></content:encoded>
			<wfw:commentRss>http://presoon.com/blog/2008/04/26/jmorecfgh/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jpeglib.h</title>
		<link>http://presoon.com/blog/2008/04/26/jpeglibh/</link>
		<comments>http://presoon.com/blog/2008/04/26/jpeglibh/#comments</comments>
		<pubDate>Sat, 26 Apr 2008 09:34:22 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Installation]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[jpeglib.h]]></category>

		<guid isPermaLink="false">http://presoon.com/blog/?p=38</guid>
		<description><![CDATA[If this header file is not found when you give make for  gd installation download it 
===================
wget http://dev.w3.org/cvsweb/Amaya/libjpeg/jpeglib.h?rev=1.2
mv jpeglib.h?rev=1.2 /usr/lib/
===================
===================
updatedb
===================
or
===================
ldconfig
===================
]]></description>
			<content:encoded><![CDATA[<p>If this header file is not found when you give make for  gd installation download it </p>
<p>===================<br />
wget http://dev.w3.org/cvsweb/Amaya/libjpeg/jpeglib.h?rev=1.2</p>
<p>mv jpeglib.h?rev=1.2 /usr/lib/<br />
===================</p>
<p>===================<br />
updatedb<br />
===================<br />
or<br />
===================<br />
ldconfig<br />
===================</p>
]]></content:encoded>
			<wfw:commentRss>http://presoon.com/blog/2008/04/26/jpeglibh/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>configure: error: freetype.h not found</title>
		<link>http://presoon.com/blog/2008/04/26/configure-error-freetypeh-not-found/</link>
		<comments>http://presoon.com/blog/2008/04/26/configure-error-freetypeh-not-found/#comments</comments>
		<pubDate>Sat, 26 Apr 2008 09:28:42 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Installation]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[freetype]]></category>
		<category><![CDATA[freetype.h]]></category>

		<guid isPermaLink="false">http://presoon.com/blog/?p=37</guid>
		<description><![CDATA[Download the version you need from 
http://download.savannah.gnu.org/releases/freetype/
Example for freetype-2.1.10
cd /usr/local/src
wget http://download.savannah.gnu.org/releases/freetype/freetype-2.1.10.tar.gz
tar -zxf freetype-2.1.10.tar.gz
cd freetype-2.1.10
./configure
make
make install
]]></description>
			<content:encoded><![CDATA[<p>Download the version you need from </p>
<p>http://download.savannah.gnu.org/releases/freetype/</p>
<p>Example for freetype-2.1.10</p>
<p>cd /usr/local/src<br />
wget http://download.savannah.gnu.org/releases/freetype/freetype-2.1.10.tar.gz<br />
tar -zxf freetype-2.1.10.tar.gz<br />
cd freetype-2.1.10<br />
./configure<br />
make<br />
make install</p>
]]></content:encoded>
			<wfw:commentRss>http://presoon.com/blog/2008/04/26/configure-error-freetypeh-not-found/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
