<?xml version="1.0" encoding="UTF-8"?><rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
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/"
> <channel><title>Comments on: PHP Pecl Memcached module installation problems</title> <atom:link href="http://www.ducea.com/2007/05/17/php-pecl-memcached-module-installation-problems/feed/" rel="self" type="application/rss+xml" /><link>http://www.ducea.com/2007/05/17/php-pecl-memcached-module-installation-problems/</link> <description>The Journal Of A Linux Sysadmin</description> <lastBuildDate>Thu, 02 Sep 2010 19:18:16 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.0.1</generator> <item><title>By: ???? &#187; CentOS(x86_64)?PHP??memcache??????</title><link>http://www.ducea.com/2007/05/17/php-pecl-memcached-module-installation-problems/comment-page-1/#comment-181725</link> <dc:creator>???? &#187; CentOS(x86_64)?PHP??memcache??????</dc:creator> <pubDate>Wed, 07 Apr 2010 11:24:53 +0000</pubDate> <guid
isPermaLink="false">http://www.ducea.com/2007/05/17/php-pecl-memcached-module-installation-problems/#comment-181725</guid> <description>[...] ???????php????????????????yum???php-devel.x86_64?php-pecl-memcache.x86_64?????????????? phpinfo()??????memcache?????????????remove????????goooooooooooooogle?????????PHP Pecl Memcached module installation problems???????remove?php-pecl-memcache.x86_64?????? pecl install memcache [...]</description> <content:encoded><![CDATA[<p>[...] ???????php????????????????yum???php-devel.x86_64?php-pecl-memcache.x86_64?????????????? phpinfo()??????memcache?????????????remove????????goooooooooooooogle?????????PHP Pecl Memcached module installation problems???????remove?php-pecl-memcache.x86_64?????? pecl install memcache [...]</p> ]]></content:encoded> </item> <item><title>By: CentOS(x86_64)?PHP??memcache?????? ???</title><link>http://www.ducea.com/2007/05/17/php-pecl-memcached-module-installation-problems/comment-page-1/#comment-180216</link> <dc:creator>CentOS(x86_64)?PHP??memcache?????? ???</dc:creator> <pubDate>Fri, 24 Apr 2009 11:57:31 +0000</pubDate> <guid
isPermaLink="false">http://www.ducea.com/2007/05/17/php-pecl-memcached-module-installation-problems/#comment-180216</guid> <description>[...] ???????php????????????????yum???php-devel.x86_64?php-pecl-memcache.x86_64?????????????? phpinfo()??????memcache?????????????remove????????goooooooooooooogle?????????PHP Pecl Memcached module installation problems???????remove?php-pecl-memcache.x86_64?????? 1pecl install memcache [...]</description> <content:encoded><![CDATA[<p>[...] ???????php????????????????yum???php-devel.x86_64?php-pecl-memcache.x86_64?????????????? phpinfo()??????memcache?????????????remove????????goooooooooooooogle?????????PHP Pecl Memcached module installation problems???????remove?php-pecl-memcache.x86_64?????? 1pecl install memcache [...]</p> ]]></content:encoded> </item> <item><title>By: Bryan</title><link>http://www.ducea.com/2007/05/17/php-pecl-memcached-module-installation-problems/comment-page-1/#comment-89256</link> <dc:creator>Bryan</dc:creator> <pubDate>Wed, 10 Oct 2007 21:58:16 +0000</pubDate> <guid
isPermaLink="false">http://www.ducea.com/2007/05/17/php-pecl-memcached-module-installation-problems/#comment-89256</guid> <description>I had Zend installed, and ran into this same problem on RHEL.
I ended up just commenting out the if test lines and setting: session_inc_path=â€/usr/include/phpâ€
Which is where my php_session.h was.</description> <content:encoded><![CDATA[<p>I had Zend installed, and ran into this same problem on <a
href="http://www.redhat.com/rhel/" class="ubernym uttAcronym"><acronym
class="uttAcronym" title="Red Hat Enterprise Linux">RHEL</acronym></a>.<br
/> I ended up just commenting out the if test lines and setting: session_inc_path=â€/usr/include/phpâ€<br
/> Which is where my php_session.h was.</p> ]]></content:encoded> </item> <item><title>By: MikeFM</title><link>http://www.ducea.com/2007/05/17/php-pecl-memcached-module-installation-problems/comment-page-1/#comment-85359</link> <dc:creator>MikeFM</dc:creator> <pubDate>Mon, 01 Oct 2007 03:47:43 +0000</pubDate> <guid
isPermaLink="false">http://www.ducea.com/2007/05/17/php-pecl-memcached-module-installation-problems/#comment-85359</guid> <description>I modified the block that looks for php_session.h to use the defined PREFIX as it didn&#039;t seem to be doing so. I couldn&#039;t otherwise seem to get it to figure out that I had Apache and PHP installed under /users/services/apache/.if test -f &quot;${prefix}/include/php/ext/session/php_session.h&quot;; then
session_inc_path=&quot;${prefix}/include/php&quot;
elif test -f &quot;$abs_srcdir/include/php/ext/session/php_session.h&quot;; then
session_inc_path=&quot;$abs_srcdir/include/php&quot;
elif test -f &quot;$abs_srcdir/ext/session/php_session.h&quot;; then
session_inc_path=&quot;$abs_srcdir&quot;
elif test -f &quot;$phpincludedir/ext/session/php_session.h&quot;; then
session_inc_path=&quot;$phpincludedir&quot;
fi</description> <content:encoded><![CDATA[<p>I modified the block that looks for php_session.h to use the defined PREFIX as it didn&#8217;t seem to be doing so. I couldn&#8217;t otherwise seem to get it to figure out that I had Apache and PHP installed under /users/services/apache/.</p><p> if test -f &#8220;${prefix}/include/php/ext/session/php_session.h&#8221;; then<br
/> session_inc_path=&#8221;${prefix}/include/php&#8221;<br
/> elif test -f &#8220;$abs_srcdir/include/php/ext/session/php_session.h&#8221;; then<br
/> session_inc_path=&#8221;$abs_srcdir/include/php&#8221;<br
/> elif test -f &#8220;$abs_srcdir/ext/session/php_session.h&#8221;; then<br
/> session_inc_path=&#8221;$abs_srcdir&#8221;<br
/> elif test -f &#8220;$phpincludedir/ext/session/php_session.h&#8221;; then<br
/> session_inc_path=&#8221;$phpincludedir&#8221;<br
/> fi</p> ]]></content:encoded> </item> <item><title>By: Memcached 1.2.2 on Debian Etch &#124; MDLog:/sysadmin</title><link>http://www.ducea.com/2007/05/17/php-pecl-memcached-module-installation-problems/comment-page-1/#comment-79878</link> <dc:creator>Memcached 1.2.2 on Debian Etch &#124; MDLog:/sysadmin</dc:creator> <pubDate>Mon, 17 Sep 2007 20:32:03 +0000</pubDate> <guid
isPermaLink="false">http://www.ducea.com/2007/05/17/php-pecl-memcached-module-installation-problems/#comment-79878</guid> <description>[...] ps. if you are looking how to build the php memcache module you can find more information about that on my older post&#8230; [...]</description> <content:encoded><![CDATA[<p>[...] ps. if you are looking how to build the php memcache module you can find more information about that on my older post&#8230; [...]</p> ]]></content:encoded> </item> <item><title>By: sanjay</title><link>http://www.ducea.com/2007/05/17/php-pecl-memcached-module-installation-problems/comment-page-1/#comment-67041</link> <dc:creator>sanjay</dc:creator> <pubDate>Thu, 09 Aug 2007 09:16:59 +0000</pubDate> <guid
isPermaLink="false">http://www.ducea.com/2007/05/17/php-pecl-memcached-module-installation-problems/#comment-67041</guid> <description>I installed memcache as so in Fedora but how can I test it?</description> <content:encoded><![CDATA[<p>I installed memcache as so in Fedora but how can I test it?</p> ]]></content:encoded> </item> <item><title>By: - Marius -</title><link>http://www.ducea.com/2007/05/17/php-pecl-memcached-module-installation-problems/comment-page-1/#comment-66072</link> <dc:creator>- Marius -</dc:creator> <pubDate>Mon, 06 Aug 2007 16:25:40 +0000</pubDate> <guid
isPermaLink="false">http://www.ducea.com/2007/05/17/php-pecl-memcached-module-installation-problems/#comment-66072</guid> <description>weggpod: No idea. On a quick look executor_globals comes from Zendengine... Do you have other &#039;non standard&#039; modules installed (like ionCube, etc.)? If so try disabling them and see if you get the same.</description> <content:encoded><![CDATA[<p>weggpod: No idea. On a quick look executor_globals comes from Zendengine&#8230; Do you have other &#8216;non standard&#8217; modules installed (like ionCube, etc.)? If so try disabling them and see if you get the same.</p> ]]></content:encoded> </item> <item><title>By: weggpod</title><link>http://www.ducea.com/2007/05/17/php-pecl-memcached-module-installation-problems/comment-page-1/#comment-66069</link> <dc:creator>weggpod</dc:creator> <pubDate>Mon, 06 Aug 2007 16:04:05 +0000</pubDate> <guid
isPermaLink="false">http://www.ducea.com/2007/05/17/php-pecl-memcached-module-installation-problems/#comment-66069</guid> <description>HySorry for my bad english. I need help i try to use it with php5 and apache2 on debian etch... but i have this error when apache try to load it :Cannot load /usr/lib/php5/20060613+lfs/memcache.so into server: /usr/lib/php5/20060613+lfs/memcache.so: undefined symbol: executor_globalsPlease help me. I&#039;m desperate</description> <content:encoded><![CDATA[<p>Hy</p><p> Sorry for my bad english. I need help i try to use it with php5 and apache2 on debian etch&#8230; but i have this error when apache try to load it :</p><p>Cannot load /usr/lib/php5/20060613+lfs/memcache.so into server: /usr/lib/php5/20060613+lfs/memcache.so: undefined symbol: executor_globals</p><p>Please help me. I&#8217;m desperate</p> ]]></content:encoded> </item> <item><title>By: James</title><link>http://www.ducea.com/2007/05/17/php-pecl-memcached-module-installation-problems/comment-page-1/#comment-57588</link> <dc:creator>James</dc:creator> <pubDate>Wed, 11 Jul 2007 22:10:31 +0000</pubDate> <guid
isPermaLink="false">http://www.ducea.com/2007/05/17/php-pecl-memcached-module-installation-problems/#comment-57588</guid> <description>In my case I had a /usr/local/php folder with 2 symlinks inside so I did:rm /usr/local/php/php4
rm /usr/local/php/php5
rmdir /usr/local/php
ln -s /usr/include/php5 /usr/include/phpThen ./configure worked.</description> <content:encoded><![CDATA[<p>In my case I had a /usr/local/php folder with 2 symlinks inside so I did:</p><p>rm /usr/local/php/php4<br
/> rm /usr/local/php/php5<br
/> rmdir /usr/local/php<br
/> ln -s /usr/include/php5 /usr/include/php</p><p>Then ./configure worked.</p> ]]></content:encoded> </item> </channel> </rss>
<!-- Served from: www.ducea.com @ 2010-09-02 22:14:36 by W3 Total Cache -->