Hello,
I've enabled PHP OAuth support on my server, for now the only issue is about OAuthException :
Fatal error: Cannot redeclare class OAuthException in /path/to/website/plugins/sfDoctrineOAuthPlugin/lib/base/vendor/oauth/OAuth.php
I had to add a condition in the chok's OAuth class
if (!class_exists('OAuthException')) {
class OAuthException extends Exception {
// [...]
}
http://www.php.net/manual/en/class.oauth.php
Hello,
I've enabled PHP OAuth support on my server, for now the only issue is about OAuthException :
I had to add a condition in the chok's OAuth class
http://www.php.net/manual/en/class.oauth.php