I was working Wordpress perfectly but a Twitter plugin said me cURL is missing.
I installed cURL in server, but after this many Wordpress things stop to work. It’s like jQuery stop to work in wp-admin pages.
Help me?
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
It sounds like the plugin you installed is likely the cause of the issues you’re running into. I would recommend disabling the plugin if you can (if not, you can delete the plugin’s directory completely). A clue that this is not directly related to cURL is that you mentioned jQuery errors. In general javascript errors would indicate an error in the front-end code being run by the browser and not the backend code run on your server. PHP’s curl function would only be called on the server side so my best guess is that the plugin you installed had added code to your site that has broken other things.
For reference and for anyone else who encounters a similar error, curl for PHP can be installed
On Ubuntu 16.04 with:
apt-get update
apt-get install php7.0-curl
On Ubunu 14.04 with:
apt-get update
apt-get install php5-curl
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.