Skip to content

Instantly share code, notes, and snippets.

@mmaassen
Forked from giorgiofellipe/install_psql_php.sh
Last active October 13, 2015 07:35
Show Gist options
  • Save mmaassen/533368222b572c13aab8 to your computer and use it in GitHub Desktop.
Save mmaassen/533368222b572c13aab8 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)
PHP_VER=$(php -v | head -1 | awk '{print $2}')
# 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 ~/php-src; cd ~/php-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
./configure --with-pdo-pgsql="/Applications/Postgres.app/Contents/Versions/9.4"
# Use just "./configure" for brew version
# ./configure --with-pdo-pgsql="/Library/PostgreSQL/9.3/"
make
sudo make install
# Add extension to php.ini
echo "extension=pdo_pgsql.so" | sudo tee -a /etc/php.ini
# Go to extension dir and phpize
cd ../pgsql/
phpize
# Configure for Postgress.app
./configure --with-pgsql="/Applications/Postgres.app/Contents/Versions/9.4"
# Use just "./configure" for brew version
# ./configure --with-pgsql="/Library/PostgreSQL/9.3/"
make
sudo make install
# Add extension to php.ini
echo "extension=pgsql.so" | sudo tee -a /etc/php.ini
# Check if extension exists, again
php -m | grep pgsql
@mmaassen
Copy link
Author

Created a fixed version for the echo statements

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment