WebsiteBaker Community Forum

WebsiteBaker Support (2.13.x) => General Help & Support => Topic started by: mikejd on January 27, 2022, 08:31:40 PM

Title: Curl gurus please
Post by: mikejd on January 27, 2022, 08:31:40 PM
I have used the following curl script to load the content of a file into a web page. It has been working fine for a long while but now doesn't.

Code: [Select]
[$ch = curl_init();
$timeout = 5; // set to zero for no timeout
curl_setopt ($ch, CURLOPT_URL, WB_URL.'/pages/blocks/meeting.php');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
$file_contents = curl_exec($ch);
curl_close($ch);

Can anyone advise what needs changing. I am assuming there has been some change in syntax. Thanks