can any help me out on the cron page=processqueue&secret=XXXX using the following code :cry:
I try this it does not work 01:

<?php
function process_queue() {
//variables
$url = "http://domainname.com/lists/admin/?page=processqueue&secret=hereTheCode";

//open connection
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
$result = curl_exec($ch);

//clean up
curl_close($ch);

return $result;
}
$result = process_queue();

///////

?>

I get this error in the email:

<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>500 Internal Server Error</title>
</head><body>
<h1>Internal Server Error</h1>
<p>The server encountered an internal error or
misconfiguration and was unable to complete
your request.</p>
<p>Please contact the server administrator,
emailname@emailaddres.com and inform them of the time the error occurred,
and anything you might have done that may have
caused the error.</p>
<p>More information about this error may be available
in the server error log.</p>
<p>Additionally, a 404 Not Found
error was encountered while trying to use an ErrorDocument to handle the request.</p>
</body></html>

This code is at below given link where i am getting problem. I will share cpanel details if anyone can solve the problem.

[Mod: fixed code quoting; removed bogus link to really sad site where you buy bots to follow you on Instagram]

    As written here, your function will only return true/false. If you want it to return the response text from that URL, you'll need to add...

    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    

    ...after the curl_init() and before the curl_exec().

      Write a Reply...