Matthew
Matthew

Reputation: 3071

Install PHP OAuth Extension on WAMP

This line of PHP code:

$oauthClient = new OAuth($consumerKey, $consumerSecret, ... etc.

Results in error:

Fatal error: Class 'OAuth' not found

I'm running WampServer 2.1, PHP version 5.3.4, Windows Server 2008 R2 (equivalent to Windows 7)

I've double checked that php_oauth.dll is installed as per these instructions: PHP OAUTH class api

How do I successfully load the oauth extension and fix this PHP error?

Upvotes: 5

Views: 8173

Answers (2)

Dilraj Singh
Dilraj Singh

Reputation: 1011

This is because you don't enabled php_OAuth.dll

For that you first need to enable

You can find stepwise instructions for windows from here

Upvotes: 0

Kailas
Kailas

Reputation: 3231

Download the correct oauth DLL from here

Paste php_oauth.dll in \wamp\bin\php\php5.5.12\ext

Add these line your both php.ini extension=php_oauth.dll

1.\wamp\bin\php\php5.5.12
2.\wamp\bin\apache\apache2.4.9\bin

Upvotes: 10

Related Questions