<?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 for Enavigo :: Technology Evangelism and Execution, Mobile and Beyond</title>
	<atom:link href="http://www.enavigo.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.enavigo.com</link>
	<description>Moving technology forward</description>
	<lastBuildDate>Tue, 02 Apr 2013 09:45:48 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4</generator>
	<item>
		<title>Comment on Enabling Oracle OCI8 PHP Extension on OS X Snow Leopard by Edouard Kestemont</title>
		<link>http://www.enavigo.com/2012/01/04/enabling-oracle-oci8-php-extension-on-os-x-snow-leopard/comment-page-1/#comment-8839</link>
		<dc:creator>Edouard Kestemont</dc:creator>
		<pubDate>Tue, 02 Apr 2013 09:45:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.enavigo.com/?p=486#comment-8839</guid>
		<description>It appears I had the old&#160;libclntsh.dylib.10.1 still installed in /usr/lib and the symbolic link pointed to this old library. Removing&#160;libclntsh.dylib.10.1 and with the correct symbolic link sudo ln -s libclntsh.dylib.11.1 libclntsh.dylib OCI8 if finally installed. Confirmed with php --ri oci8 and phpinfo() after apache restart. (Mountain Lion 10.8.3 ; 64 bits Oracle instantclient packages) &#160; &#160; Thank you for your tutorial !</description>
		<content:encoded><![CDATA[<p>It appears I had the old&nbsp;libclntsh.dylib.10.1 still installed in /usr/lib and the symbolic link pointed to this old library. Removing&nbsp;libclntsh.dylib.10.1 and with the correct symbolic link sudo ln -s libclntsh.dylib.11.1 libclntsh.dylib OCI8 if finally installed. Confirmed with php &#8211;ri oci8 and phpinfo() after apache restart. (Mountain Lion 10.8.3 ; 64 bits Oracle instantclient packages) &nbsp; &nbsp; Thank you for your tutorial !</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Enabling Oracle OCI8 PHP Extension on OS X Snow Leopard by Edouard Kestemont</title>
		<link>http://www.enavigo.com/2012/01/04/enabling-oracle-oci8-php-extension-on-os-x-snow-leopard/comment-page-1/#comment-8837</link>
		<dc:creator>Edouard Kestemont</dc:creator>
		<pubDate>Mon, 01 Apr 2013 08:01:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.enavigo.com/?p=486#comment-8837</guid>
		<description>I installed the 64 bits client Oracle instantclient-sqlplus-macos.x64-11.2.0.3.0 and other related files.
SQLplus works.
I also installed oci8 extension using PECL. It is at&#160;/usr/lib/php/extensions/no-debug-non-zts-20090626/oci8.so
I made the necessary changes in php.ini inserting the line&#160;
extension=oci8.so
As pointed out by John, same error message &quot;dyld: Symbol not found: _OCIClientVersion&quot;
&#160;
$ php --ri oci8
gives
&#160;

	oci8
	&#160;
	OCI8 Support =&gt; enabled
	Version =&gt; 1.4.9
	Revision =&gt; $Id: e2241cffb72c940cb2ca267b7a6a0ce436de7e5e $
	Active Persistent Connections =&gt; 0
	Active Connections =&gt; 0
	dyld: lazy symbol binding failed: Symbol not found: _OCIClientVersion
	&#160; Referenced from: /usr/lib/php/extensions/no-debug-non-zts-20090626/oci8.so
	&#160; Expected in: flat namespace
	&#160;
	dyld: Symbol not found: _OCIClientVersion
	&#160; Referenced from: /usr/lib/php/extensions/no-debug-non-zts-20090626/oci8.so
	&#160; Expected in: flat namespace
	&#160;
	Trace/BPT trap: 5

&#160;
Any new ideas one year later ?
&#160;
Thanks a lot.
&#160;</description>
		<content:encoded><![CDATA[<p>I installed the 64 bits client Oracle instantclient-sqlplus-macos.x64-11.2.0.3.0 and other related files.<br />
SQLplus works.<br />
I also installed oci8 extension using PECL. It is at&nbsp;/usr/lib/php/extensions/no-debug-non-zts-20090626/oci8.so<br />
I made the necessary changes in php.ini inserting the line&nbsp;<br />
extension=oci8.so<br />
As pointed out by John, same error message &quot;dyld: Symbol not found: _OCIClientVersion&quot;<br />
&nbsp;<br />
$ php &#8211;ri oci8<br />
gives<br />
&nbsp;</p>
<p>	oci8<br />
	&nbsp;<br />
	OCI8 Support =&gt; enabled<br />
	Version =&gt; 1.4.9<br />
	Revision =&gt; $Id: e2241cffb72c940cb2ca267b7a6a0ce436de7e5e $<br />
	Active Persistent Connections =&gt; 0<br />
	Active Connections =&gt; 0<br />
	dyld: lazy symbol binding failed: Symbol not found: _OCIClientVersion<br />
	&nbsp; Referenced from: /usr/lib/php/extensions/no-debug-non-zts-20090626/oci8.so<br />
	&nbsp; Expected in: flat namespace<br />
	&nbsp;<br />
	dyld: Symbol not found: _OCIClientVersion<br />
	&nbsp; Referenced from: /usr/lib/php/extensions/no-debug-non-zts-20090626/oci8.so<br />
	&nbsp; Expected in: flat namespace<br />
	&nbsp;<br />
	Trace/BPT trap: 5</p>
<p>&nbsp;<br />
Any new ideas one year later ?<br />
&nbsp;<br />
Thanks a lot.<br />
&nbsp;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Enabling Oracle OCI8 PHP Extension on OS X Snow Leopard by Mike</title>
		<link>http://www.enavigo.com/2012/01/04/enabling-oracle-oci8-php-extension-on-os-x-snow-leopard/comment-page-1/#comment-8836</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Tue, 26 Mar 2013 09:46:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.enavigo.com/?p=486#comment-8836</guid>
		<description>&#160;
&#160;
it is indeed a 32-bit/64-bit problem. You need to install oci8 manually.
From a Terminal running as an admin user with autoconf installed.
&lt;strong&gt;cd /tmp&lt;/strong&gt;
&lt;b&gt;pecl download oci8&lt;/b&gt;
&lt;b&gt;tar &#8211;xvzf &#160;oci8-x.x.x.tgz&lt;/b&gt;
&lt;b&gt;cd oci8x.x.x.x&lt;/b&gt;
&lt;b&gt;&#160;&lt;/b&gt;Run phpize from your webserver install e.g &lt;strong&gt;/usr/bin&lt;/strong&gt;

&#160;&lt;b&gt;/usr/bin/phpize&lt;/b&gt;
&#160;Set the correct binary flag option for 32-bit compile:

&#160;&lt;b&gt;export CFLAGS=&#8221;-m32&#8221;&lt;/b&gt;
&#160;
Configure oci8:
&#160;&lt;b&gt;./configure &#8211;with-oci8=shared,instantclient,/Users/mike/instantclient11_2&lt;/b&gt;
&lt;strong&gt;make clean&#160;&lt;/strong&gt;
&lt;strong&gt;make&lt;/strong&gt;
&lt;strong&gt;make install&lt;/strong&gt;
Add:
extension=oci8.so to php.ini 
stop and start webserver</description>
		<content:encoded><![CDATA[<p>&nbsp;<br />
&nbsp;<br />
it is indeed a 32-bit/64-bit problem. You need to install oci8 manually.<br />
From a Terminal running as an admin user with autoconf installed.<br />
<strong>cd /tmp</strong><br />
<b>pecl download oci8</b><br />
<b>tar &ndash;xvzf &nbsp;oci8-x.x.x.tgz</b><br />
<b>cd oci8x.x.x.x</b><br />
<b>&nbsp;</b>Run phpize from your webserver install e.g <strong>/usr/bin</strong></p>
<p>&nbsp;<b>/usr/bin/phpize</b><br />
&nbsp;Set the correct binary flag option for 32-bit compile:</p>
<p>&nbsp;<b>export CFLAGS=&rdquo;-m32&rdquo;</b><br />
&nbsp;<br />
Configure oci8:<br />
&nbsp;<b>./configure &ndash;with-oci8=shared,instantclient,/Users/mike/instantclient11_2</b><br />
<strong>make clean&nbsp;</strong><br />
<strong>make</strong><br />
<strong>make install</strong><br />
Add:<br />
extension=oci8.so to php.ini<br />
stop and start webserver</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Enabling Oracle OCI8 PHP Extension on OS X Snow Leopard by Brice Miramont</title>
		<link>http://www.enavigo.com/2012/01/04/enabling-oracle-oci8-php-extension-on-os-x-snow-leopard/comment-page-1/#comment-8832</link>
		<dc:creator>Brice Miramont</dc:creator>
		<pubDate>Wed, 13 Mar 2013 15:22:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.enavigo.com/?p=486#comment-8832</guid>
		<description>Sorry, forgot the Version :
&lt;strong&gt;11.2.0.3.0 (64-bit)&#160;&lt;/strong&gt;
from the Oracle Instant client download page (Mac)</description>
		<content:encoded><![CDATA[<p>Sorry, forgot the Version :<br />
<strong>11.2.0.3.0 (64-bit)&nbsp;</strong><br />
from the Oracle Instant client download page (Mac)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Enabling Oracle OCI8 PHP Extension on OS X Snow Leopard by Brice Miramont</title>
		<link>http://www.enavigo.com/2012/01/04/enabling-oracle-oci8-php-extension-on-os-x-snow-leopard/comment-page-1/#comment-8831</link>
		<dc:creator>Brice Miramont</dc:creator>
		<pubDate>Wed, 13 Mar 2013 15:21:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.enavigo.com/?p=486#comment-8831</guid>
		<description>hello,
it does work if you choose the 64bit version of the Instant client version&#160;
Juste change the&#160;&lt;span&gt;sudo ln -s libclntsh.dylib.10.1 libclntsh.dylib&#160;&lt;/span&gt;
to&#160;&lt;span&gt;sudo ln -s libclntsh.dylib.11.1 libclntsh.dylib&lt;/span&gt;
&#160;
and it works on my macbook air running 10.8.2</description>
		<content:encoded><![CDATA[<p>hello,<br />
it does work if you choose the 64bit version of the Instant client version&nbsp;<br />
Juste change the&nbsp;<span>sudo ln -s libclntsh.dylib.10.1 libclntsh.dylib&nbsp;</span><br />
to&nbsp;<span>sudo ln -s libclntsh.dylib.11.1 libclntsh.dylib</span><br />
&nbsp;<br />
and it works on my macbook air running 10.8.2</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to export contacts from a Nokia device to Gmail by Hetal Chawla</title>
		<link>http://www.enavigo.com/2010/08/18/how-to-export-contacts-from-a-nokia-device-to-gmail/comment-page-1/#comment-8830</link>
		<dc:creator>Hetal Chawla</dc:creator>
		<pubDate>Wed, 13 Mar 2013 08:27:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.enavigo.com/?p=331#comment-8830</guid>
		<description>Thanks, your suggestion helped me a lot. Contact Uploading to Gmail is very easy. It made me believed - Moving Technology Forward. I had more than 1600 contact no.s on my old Nokia phone. Yesterday took a New Android phone &amp; was restless yesterday, how to transfer Contact No.s. This seriously helped a lot. &amp; more on it saved lot of Time. Thks...</description>
		<content:encoded><![CDATA[<p>Thanks, your suggestion helped me a lot. Contact Uploading to Gmail is very easy. It made me believed &#8211; Moving Technology Forward. I had more than 1600 contact no.s on my old Nokia phone. Yesterday took a New Android phone &amp; was restless yesterday, how to transfer Contact No.s. This seriously helped a lot. &amp; more on it saved lot of Time. Thks&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iMovie Tip: How to rename projects by dsimms</title>
		<link>http://www.enavigo.com/2009/04/01/imovie-tip-how-to-rename-projects/comment-page-1/#comment-8828</link>
		<dc:creator>dsimms</dc:creator>
		<pubDate>Sun, 17 Feb 2013 08:28:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.enavigo.com/?p=244#comment-8828</guid>
		<description>you all aren&#039;t stupid... me neither... apple are poopy pants</description>
		<content:encoded><![CDATA[<p>you all aren&#039;t stupid&#8230; me neither&#8230; apple are poopy pants</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Broken WordPress theme can hurt: This is how to recover. by Alexander</title>
		<link>http://www.enavigo.com/2009/10/04/broken-wordpress-theme-can-hurt-this-is-how-to-recover/comment-page-1/#comment-8801</link>
		<dc:creator>Alexander</dc:creator>
		<pubDate>Thu, 13 Dec 2012 08:20:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.enavigo.com/?p=266#comment-8801</guid>
		<description>Thank you thank you thank you! Sooooo simple, so effective.</description>
		<content:encoded><![CDATA[<p>Thank you thank you thank you! Sooooo simple, so effective.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HTML5 Date Element: Mobile Browser Support Snapshot by Android Browser</title>
		<link>http://www.enavigo.com/2012/08/14/html5-date-element-mobile-browser-support-snapshot/comment-page-1/#comment-8800</link>
		<dc:creator>Android Browser</dc:creator>
		<pubDate>Thu, 29 Nov 2012 12:49:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.enavigo.com/?p=595#comment-8800</guid>
		<description>Ya, the HTML date element is a nice thing being implemented in the &lt;em&gt;mobile browser&lt;/em&gt;. But the android browser supporting it is a bit problematic.</description>
		<content:encoded><![CDATA[<p>Ya, the HTML date element is a nice thing being implemented in the <em>mobile browser</em>. But the android browser supporting it is a bit problematic.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WordPress Post Bookmarklet: a fix for &#8216;Press This&#8217; by Sawant Shah</title>
		<link>http://www.enavigo.com/2011/03/28/wordpress-post-bookmarklet-a-fix-for-press-this/comment-page-1/#comment-8799</link>
		<dc:creator>Sawant Shah</dc:creator>
		<pubDate>Sat, 24 Nov 2012 11:20:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.enavigo.com/?p=382#comment-8799</guid>
		<description>Thanks. It works great! They haven&#039;t still fixed this in Wordpress 3.4.2!</description>
		<content:encoded><![CDATA[<p>Thanks. It works great! They haven&#039;t still fixed this in WordPress 3.4.2!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic page generated in 1.674 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2013-05-06 10:21:04 -->
