Re: [PHP] Mac 10.7 Install/Copy fresh PHP over Pre-Installed PHP

2012-08-01 Thread JeffPGMT
This is really a saga and I have a bone to pick w/Mac or anyone for that matter that writes procedures Now after getting command line tools installed which enabled "make" to work, and downloading & un-taring the c-client, whoa, now ./configure doesn't work... humm oh Apple also pulled out "auto

Re: [PHP] Mac 10.7 Install/Copy fresh PHP over Pre-Installed PHP

2012-07-31 Thread Slith
save yourself the trouble and setup a virtualized Linux box using Vagrant http://vagrantup.com. I think this is the way to go on Mac. On Jul 31, 2012, at 6:34 PM, tamouse mailing lists wrote: > Ugh. This is why I no longer want an apple computer. > > On Jul 31, 2012 8:26 AM, "JeffPGMT" wrote:

Re: [PHP] Mac 10.7 Install/Copy fresh PHP over Pre-Installed PHP

2012-07-31 Thread tamouse mailing lists
Ugh. This is why I no longer want an apple computer. On Jul 31, 2012 8:26 AM, "JeffPGMT" wrote: > > AGAIN - THANKS TO ALL... > > IT installed XCode, here's another? command line tools sans XCode available > from Kenneth's github, > https://github.com/kennethreitz/osx-gcc-installer > > However ano

Re: [PHP] Mac 10.7 Install/Copy fresh PHP over Pre-Installed PHP

2012-07-31 Thread JeffPGMT
AGAIN - THANKS TO ALL... IT installed XCode, here's another? command line tools sans XCode available from Kenneth's github, https://github.com/kennethreitz/osx-gcc-installer However another irony, now that XCode is installed, in the new XCode 4.4 command line tools are not installed by default,

Re: [PHP] Mac 10.7 Install/Copy fresh PHP over Pre-Installed PHP

2012-07-31 Thread Simon J Welsh
On 31/07/2012, at 10:54 PM, Jason Pruim wrote: > On Jul 30, 2012, at 12:01 PM, "JeffPGMT" wrote: > >> Thanks All, now I have to tell the business owner to let the IT guy update >> to 10.8 if he likes, which will buy me time to sort out all of what you >> folks contributed. >> >> I wasn't awar

Re: [PHP] Mac 10.7 Install/Copy fresh PHP over Pre-Installed PHP

2012-07-31 Thread Jason Pruim
On Jul 30, 2012, at 12:01 PM, "JeffPGMT" wrote: > Thanks All, now I have to tell the business owner to let the IT guy update > to 10.8 if he likes, which will buy me time to sort out all of what you > folks contributed. > > I wasn't aware that Mamp free installed anything more than basic and

Re: [PHP] Mac 10.7 Install/Copy fresh PHP over Pre-Installed PHP

2012-07-30 Thread JeffPGMT
Thanks All, now I have to tell the business owner to let the IT guy update to 10.8 if he likes, which will buy me time to sort out all of what you folks contributed. I wasn't aware that Mamp free installed anything more than basic and Yes, setup so that Apache, MySql and PHP work well together

Re: [PHP] Mac 10.7 Install/Copy fresh PHP over Pre-Installed PHP

2012-07-30 Thread David OBrien
On Mon, Jul 30, 2012 at 10:21 AM, JeffPGMT wrote: > Tamara, I said dll, but that was only my ignorant/windows reference to a > system lib/bin file. I followed a blog post (bitly'ed below); I got as far > as un-tar'ing and "make" was not available. > > I have other stacks Xampp (beta for Mac not f

Re: [PHP] Mac 10.7 Install/Copy fresh PHP over Pre-Installed PHP

2012-07-30 Thread TR Shaw
To tell what you have on your Mac (server or not) open terminal and type: php -i This will tell you the configuration of the php installed. The imap php extension is not installed by Apple so you have a couple of choices as I said. The one I use can be found at and installs itself: http://php

Re: [PHP] Mac 10.7 Install/Copy fresh PHP over Pre-Installed PHP

2012-07-30 Thread JeffPGMT
Tamara, I said dll, but that was only my ignorant/windows reference to a system lib/bin file. I followed a blog post (bitly'ed below); I got as far as un-tar'ing and "make" was not available. I have other stacks Xampp (beta for Mac not for production) and is used by many folks w/out issue, howe

Re: [PHP] Mac 10.7 Install/Copy fresh PHP over Pre-Installed PHP

2012-07-28 Thread TR Shaw
Actually, adding extensions (even normally bundled ones) to the stock Snow Leopard PHP is quite easy: 1) Download the source tarball of php and unpack it 2) cd into ext/name_of_the_extension (like ext/intl in your case) 3) run phpize 4) run ./configure with appropriate flags 5) make install

Re: [PHP] Mac 10.7 Install/Copy fresh PHP over Pre-Installed PHP

2012-07-27 Thread Tamara Temple
JeffPGMT wrote: > Please correct me if I'm wrong and IMAP is available (maybe a known config > issue?) > > Mac OSX 10.7, Using the pre-installed Apache & Php, IMAP is not installed, > pulled out my Apple for this server OS. I don't know if it is, but something below seems very odd to me: > $

Re: [PHP] Mac 10.7 Install/Copy fresh PHP over Pre-Installed PHP

2012-07-27 Thread Jason Pruim
Look for software called mamp. It's independent installs of apache, MySQL, php, all for the mac.. They might have it enabled with what you need... I can tell you though if you can handle writing php code.. Installing with the developer tools is a piece of cake :) its not as hard as it sounds.. L

Re: [PHP] Mac 10.7 Install/Copy fresh PHP over Pre-Installed PHP

2012-07-27 Thread Daniel Fenn
Hi, In my experience there are 2 ways of installing php, conpile or download a package for your OS that already been built. On windows, you can build php or you download a msi/exe file and use that to install it Linux, you can use yum or apt-get to install php or you can compile it. Regarding ma