How to install and activate cURL on my openlitespeed server

Please how do I install CURL on my Cypberpanel openlitespeed server. I found out the curl is not fully install in my server. Because it is not showing ony WordPress site.

Please I need your support on how to install and update curl on my cypberpanel server.

Welcome @victornzekwu Happy you are here

Go to https://SERVER_URL:8090/managephp/installExtensions and look for

1 Like

So after finding that what should I do then, should I edit anything @josephgodwinke

Click Install and kill all existing php processes

killall -9 lsphp

And test curl by creating a file at https://mydomain.com/curl.php and running it on a browser

<?php

if(extension_loaded('curl')){
  echo "curl is enabled";
} else {
echo "curl is not enabled";
}
1 Like

Thanks @josephgodwinke this works perfectly

Thank you so much for saving a day

This topic was automatically closed 3 hours after the last reply. New replies are no longer allowed.