downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

Requirements> <Introduction
[edit] Last updated: Fri, 26 Apr 2013

view this page in

Installing/Configuring

Table of Contents



Requirements> <Introduction
[edit] Last updated: Fri, 26 Apr 2013
 
add a note add a note User Contributed Notes Installing/Configuring - [4 notes]
up
0
kosso1 at gmail dot com
3 years ago
installing oauth pecl extension on fedora:

yum install php-devel
yum install libcurl-devel

pecl install -R /usr/lib/php oauth-0.99.9

add extension=oauth.so to php.ini  or create and add to/etc/php.d/oauth.ini

restart apache
up
-1
waitman at waitman dot net
1 year ago
`pecl install oauth` had problems locating curl/curl.h installed in  /usr/local/include

this seems to work:

1) download source from http://pecl.php.net/package/oauth

2) build

tar xzvf oauth-1.1.0.tgz
cd oauth-1.1.0
phpize
CPPFLAGS=-I/usr/local/include LDFLAGS=-L/usr/local/lib ./configure
make && make install
up
-2
Ryan Ewen
1 year ago
Here is what I had to do to get it to install on CentOS

yum install pcre prce-devel
pecl install oauth

Create a file in /etc/php.d/ called oauth.ini containing:
extension=oauth.so

server httpd restart
up
-4
matthew dot general at gmail dot com
2 years ago
installing using pecl:

# pecl install oauth

may need to install pcre headers (debian based)

# apt-get install libpcre3-dev

 
show source | credits | stats | sitemap | contact | advertising | mirror sites