Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Piwik stats
#5
in the non-Javascript-part, and in the part showing the graph there is a hardcoded domain "stats.simplicer.com" instead of the one specified in the plugin-options.

here is a fix:

Replace
Code:
<img src="http://stats.simplicer.com/piwik.php?idsite=<?php echo( $code ); ?>" style="border:0" alt="" />
by
Code:
<img src="http://<?php echo( $stats_url ); ?>/piwik.php?idsite=<?php echo( $code ); ?>" style="border:0" alt="" />
and replace
Code:
<img src="http://stats.simplicer.com/index.php?module=API&method=ImageGraph.get&idSite=<?php echo( (int) $piwik->code ); ?>&apiModule=VisitsSummary&apiAction=get&token_auth=<?php echo( (string) $piwik->token ); ?>&graphType=evolution&period=day&date=previous30&width=500&height=250" />
by
Code:
<img src="http://<?php echo( (string) $piwik->stats_url ); ?>/index.php?module=API&method=ImageGraph.get&idSite=<?php echo( (int) $piwik->code ); ?>&apiModule=VisitsSummary&apiAction=get&token_auth=<?php echo( (string) $piwik->token ); ?>&graphType=evolution&period=day&date=previous30&width=500&height=250" />

greets
y
Reply


Messages In This Thread
Piwik stats - by zeu - 2012-05-03, 00:21:39
RE: Piwik stats - by yoschi - 2012-11-29, 10:28:54
RE: Piwik stats - by jwestenberg - 2013-09-26, 21:51:47
Piwik stats - by madvic - 2012-07-06, 01:45:05
Piwik stats - by madvic - 2012-07-06, 01:51:37
Piwik stats - by shawn_a - 2012-07-09, 01:33:35



Users browsing this thread: 1 Guest(s)