VN
ClosedHow to install and activate cURL on my openlitespeed server
5 replies
jo
Welcome @victornzekwu Happy you are here
Go to https://SERVER_URL:8090/managephp/installExtensions and look for
VN
So after finding that what should I do then, should I edit anything @josephgodwinke
jo
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";
}
VN
Thanks @josephgodwinke this works perfectly
Su
Surya
#6
Thank you so much for saving a day

