• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

Resolved Curl Request engine for PHP OAuth Extension

jlee2027

New Pleskian
Centos 7. Install commands:

/opt/plesk/php/5.6/bin/pecl install oauth-1.2.3
extension=oauth.so (added to php.ini)

Quite easy to install, but uses phpstreams as the Request Engine. How can I change this to the Curl request engine? On Centos 6.7 there was a fix for this, using apt-get, but I can't find it for Centos 7.


upload_2017-5-12_19-41-48.png
 
opt/plesk/php/5.6/bin/pecl install oauth-1.2.3
extension=oauth.so (added to php.ini)

Quite easy to install, but uses phpstreams as the Request Engine. How can I change this to the Curl request engine? On Centos 6.7 there was a fix for this, using apt-get, but I can't find it for Centos 7.

upload_2017-5-12_19-41-48-png.12771
 
When you run

/opt/plesk/php/5.6/bin/pecl install oauth-1.2.3

make sure that you have no in output line like:

checking for cURL in default path... cURL not found

Install all curl libraries with

# yum install curl-devel

and check in pecl output line like:

checking for cURL in default path... found in /usr

Oauth module should be compiled with curl request engine in this case.
 
Back
Top