Witam
Czy ktoś używał już narzędzia PIWIK do analizy ruchu strony jako alternatywę dla Google Analytics ??
Mam pewnie problem bo kod śledzący ruch już mam podpięty ale nie wiem gdzie wkleić kod - funkcję żeby śledzić słowa kluczowe.
DisplayTopKeywords();
<?php
// This function will call the API to get best keyword for current URL.
// Then it writes the list of best keywords in a HTML list
function DisplayTopKeywords($url = "")
{
// Do not spend more than 1 second fetching the data
@ini_set("default_socket_timeout", $timeout = 1);
// Get the Keywords data
$url = empty($url) ? "http://". $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"] : $url;
$api = "http://www.analytics.cermarket.pl/?module=API&method=Referers.getKeywordsForPageUrl&format=php&filter_limit=10&token_auth=d4e600549edf36e742831f2bb8304521&date=previous1&period=week&idSite=1&url=" . urlencode($url);
$keywords = @unserialize(file_get_contents($api));
if($keywords === false || isset($keywords["result"])) {
// DEBUG ONLY: uncomment for troubleshooting an empty output (the URL output reveals the token_auth)
// echo "Error while fetching the <a href='$api'>Top Keywords from Piwik</a>";
return;
}
// Display the list in HTML
$url = htmlspecialchars($url, ENT_QUOTES);
$output = "<h2>Top Keywords for <a href='$url'>$url</a></h2><ul>";
foreach($keywords as $keyword) {
$output .= "<li>". $keyword[0]. "</li>";
}
if(empty($keywords)) { $output .= "Nothing yet..."; }
$output .= "</ul>";
echo $output;
}
DisplayTopKeywords();
Powrót do Pomoc przy modułach Opencart
Użytkownicy przeglądający ten dział: Brak zidentyfikowanych użytkowników i 0 gości