Closed GoogleCodeExporter closed 9 years ago
Hi Dinu!
In the adminpanel of ezStats , choose as CMS plugin the value "default cURL
method".
Download the file and open it with a text editor. Now modify it that it looks
like this:
if ( !IN_ACP )
{
$ch = curl_init("http://yoursite.com/ezStats2/");
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$output = curl_exec($ch);
curl_close($ch);
/* ezStats Start */
echo $output;
/* ezStats End */
}
Create a new page in your IPB installation, and enter this PHP block. That
should be all.
Regards, ezzemm
Original comment by ezzem...@googlemail.com
on 5 Sep 2013 at 5:26
Hi!
I've released a new Version of ezStats, which supports IPB. Just try it ;)
Regards, ezzemm
Original comment by ezzem...@googlemail.com
on 8 Sep 2013 at 3:41
Original issue reported on code.google.com by
DinuH...@gmail.com
on 4 Sep 2013 at 9:01