-
-
Save cameronwlewis/69309ad1d9a320b0fb772ca253b25b16 to your computer and use it in GitHub Desktop.
Install PHP PGSQL extensions on Mac OS X Yosemite (change PHP_VER with your PHP version)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PHP_VER="5.5.14" | |
# Check if extension exists first | |
php -m | grep pgsql | |
# Update brew and install requirements | |
brew update | |
brew install autoconf | |
# Download PHP source and extract | |
mkdir -p ~/src; cd ~/src | |
wget -c http://br1.php.net/distributions/php-$PHP_VER.tar.bz2 | |
tar -xjf php-$PHP_VER.tar.bz2 | |
# Go to extension dir and phpize | |
cd php-$PHP_VER/ext/pdo_pgsql/ | |
phpize | |
# Configure for Postgress.app | |
# Use just "./configure" for brew version | |
./configure --with-pdo-pgsql="/Library/PostgreSQL/9.3/" | |
make | |
sudo make install | |
# Add extension to php.ini | |
sudo echo "extension=pdo_pgsql.so" >> /private/etc/php.ini | |
# Go to extension dir and phpize | |
cd php-$PHP_VER/ext/pgsql/ | |
phpize | |
# Configure for Postgress.app | |
# Use just "./configure" for brew version | |
./configure --with-pgsql="/Library/PostgreSQL/9.3/" | |
make | |
sudo make install | |
# Add extension to php.ini | |
sudo echo "extension=pgsql.so" >> /private/etc/php.ini | |
# Check if extension exists, again | |
php -m | grep pgsql |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment