So, in the beginning, this is how to link to a site with CURL instead of using {URL:mysite.com} tag.
Code: Select all
[PHP]
$curl_handle=curl_init();
curl_setopt($curl_handle,CURLOPT_URL,'http://mysite.com');
curl_setopt($curl_handle,CURLOPT_CONNECTTIMEOUT,1);
curl_exec($curl_handle);
curl_close($curl_handle);
[/PHP]
/include/inc_front/content.func.inc.php
Code: Select all
// -------------------------------------------------------------
// include external HTML page but only part between <body></body>
$content["all"] = preg_replace('/\{URL:(.*?)\}/ie', 'include_url("$1");', $content["all"]);
// -------------------------------------------------------------
NEW EDITED /include/inc_front/content.func.inc.php
Code: Select all
// -------------------------------------------------------------
// include external HTML page but only part between <body></body>
$curl_handle=curl_init();
curl_setopt($curl_handle,CURLOPT_URL,'("$1")');
curl_setopt($curl_handle,CURLOPT_CONNECTTIMEOUT,2);
$content["all"] = preg_replace('/\{URL:(.*?)\}/ie', 'curl_exec($curl_handle);', $content["all"]);
curl_close($curl_handle);
// -------------------------------------------------------------
RESULT : Blank!

Any idea what I am doing wrong?
I suspect the problem might be this ( see blue text ).
// -------------------------------------------------------------
// include external HTML page but only part between <body></body>
$curl_handle=curl_init();
curl_setopt($curl_handle,CURLOPT_URL,'("$1")');
curl_setopt($curl_handle,CURLOPT_CONNECTTIMEOUT,2);
$content["all"] = preg_replace('/\{URL:(.*?)\}/ie', 'curl_exec($curl_handle);', $content["all"]);
curl_close($curl_handle);
// -------------------------------------------------------------
Somehow it does not replace the
Code: Select all
'include_url("$1");',
Code: Select all
'curl_exec($curl_handle);'
your help would be greatly appreciated!
V