Re: Installed ImageMagick 6.7.1, but it's only 5.5.6

2011-07-11 Thread Walter Ian Kaye
At 10:03 p -0700 07/10/2011, Jeremy Huddleston didst inscribe upon an electronic papyrus: On Jul 10, 2011, at 9:57 PM, Walter Ian Kaye wrote: I installed ImageMagick (snippets below). MacPorts claims it is 6.7.1, but when I look at the 'convert' command it is stuck at the same 5.5.6 that

Re: Installed ImageMagick 6.7.1, but it's only 5.5.6

2011-07-11 Thread Brandon Allbery
On Mon, Jul 11, 2011 at 08:09, Walter Ian Kaye macpo...@natural-innovations.com wrote: Hmm... looks like tcsh is confused. The one installed by MacPorts does come first: #10:20pm# /opt/local/var/macports echo $path /opt/local/bin /opt/local/sbin /Users/boo/bin/powerpc-apple-darwin

Re: Installed ImageMagick 6.7.1, but it's only 5.5.6

2011-07-11 Thread Walter Ian Kaye
At 10:12 a -0400 07/11/2011, Brandon Allbery didst inscribe upon an electronic papyrus: Run rehash to get tcsh to forget where it had seen them, so it will pick up the new ones. (set path=(...) will do it automatically, but setenv PATH ... won't.) Boy, do I feel dumb now. I know 'rehash'

Problems getting oracle client working with PHP5

2011-07-11 Thread René Fournier
I need to access a remote Oracle database via PHP, and I'm having some trouble. So far, I've followed the instructions... - Downloaded: instantclient-basic-10.2.0.4.0-macosx-x64.zip instantclient-sdk-10.2.0.4.0-macosx-x64.zip To:

RE: Problems getting oracle client working with PHP5

2011-07-11 Thread John Korchok
Hi Rene, It's not easy to get working. I believe the Instant Client files end up in /opt/local/lib/oracle after MacPorts installs them. I had to open /opt/apache2/bin/envvars and add: DYLD_LIBRARY_PATH=/opt/local/lib/oracle/:$DYLD_LIBRARY_PATH export DYLD_LIBRARY_PATH then restart Apache to

Re: Problems getting oracle client working with PHP5

2011-07-11 Thread Ryan Schmidt
On Jul 11, 2011, at 12:32, René Fournier wrote: I need to access a remote Oracle database via PHP, and I'm having some trouble. So far, I've followed the instructions... - Downloaded: instantclient-basic-10.2.0.4.0-macosx-x64.zip instantclient-sdk-10.2.0.4.0-macosx-x64.zip

Re: Problems getting oracle client working with PHP5

2011-07-11 Thread René Fournier
Actually, my mistake was kind of dumb. I restarted the Apple-supplied Apache, not the Macports version. Restarting Macports Apache caused the oracle.ini file to get parsed, and the function now runs. On 2011-07-11, at 7:59 PM, Ryan Schmidt wrote: On Jul 11, 2011, at 12:32, René Fournier