Created
October 2, 2012 14:47
-
-
Save sumardi/3819725 to your computer and use it in GitHub Desktop.
Installing OAuth extension
This file contains hidden or 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
| cd /usr/local/directadmin/custombuild | |
| wget http://pecl.php.net/get/oauth | |
| tar xvzf oauth-1.2.3.tgz | |
| cd oauth-1.2.3 | |
| /usr/local/bin/phpize | |
| ./configure --with-php-config=/usr/local/bin/php-config | |
| make | |
| make test | |
| make install | |
| cp modules/oauth.so /usr/local/lib/php/extensions/no-debug-non-zts-20060613/ | |
| vi /usr/local/lib/php.ini | |
| # extension=oauth.so | |
| /etc/init.d/httpd restart |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment