Re: [PHP] installing PHP 5.3 on MAC with mysqlnd support

2007-11-17 Thread Gergely Hodicska

Hi!



http://www.phpmac.com/

This project seems dead.


Best Regards,
Felhő

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] installing PHP 5.3 on MAC with mysqlnd support

2007-11-17 Thread Gergely Hodicska

Hi!



Consider using Macports (http://www.macports.org/) to install it. After
installing macports onto your computer, do this in the terminal:

I ma using Macports, but it currently doesn't support PHP 5.3.


// This will give you the available variants (I think)

port info php5

To list package variants:
# port variants php5


Best Regards,
Felhő

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] installing PHP 5.3 on MAC with mysqlnd support

2007-11-15 Thread Hodicska Gergely

Hi!


Can somebody give me some guideline how to install PHP 5.3 to a Mac 
(intel based) with mysqlnd support?


TIA!


Best Regards,
Felhő

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] installing PHP 5.3 on MAC with mysqlnd support

2007-11-15 Thread Philip Thompson
On Nov 15, 2007 10:00 AM, Hodicska Gergely [EMAIL PROTECTED] wrote:

 Hi!


 Can somebody give me some guideline how to install PHP 5.3 to a Mac
 (intel based) with mysqlnd support?

 TIA!


 Best Regards,
 Felhő



Consider using Macports (http://www.macports.org/) to install it. After
installing macports onto your computer, do this in the terminal:

// This will give you the available PHP downloads
 port search php5

// This will give you the available variants (I think)
 port info php5

// For example, to install PHP5 with mysqlnd support, you would do this
(NOTE: this has *not* been tested)
 sudo port install php5 +mysqlnd

Try that. See if it gets you anywhere. If you haven't used Macports
(formally Darwinports) before, do some reading on their website to figure it
out. I think it simplifies the process of building and installing software
on the Mac.

HTH
~Philip