0
Hi
I was looking for something which can replace joomstats ...
I found this, bought most advanced version with everything included, installed and was expecting to see straight forward configurable component to see what my users are looking on my website.
But unfortunatelly after 2 hours - nothing. Can somebody expain me how te get Backend module working.
Nothing is displayed. In componnets dropdown - nothing - I've installed all files from "My subscription" of my account.
Finally, I don't want any info displayed on my website I want only Admin panel access.
Please advise me if this software can do what I want otherwise I will ask for refund.
Thanks, Marcin
I was looking for something which can replace joomstats ...
I found this, bought most advanced version with everything included, installed and was expecting to see straight forward configurable component to see what my users are looking on my website.
But unfortunatelly after 2 hours - nothing. Can somebody expain me how te get Backend module working.
Nothing is displayed. In componnets dropdown - nothing - I've installed all files from "My subscription" of my account.
Finally, I don't want any info displayed on my website I want only Admin panel access.
Please advise me if this software can do what I want otherwise I will ask for refund.
Thanks, Marcin
Responses (20)
-
Accepted Answer
-
Accepted Answer
0hello again!
I asume you have installed the component. right?
also, the core plugin and at least one extension plugin
be sure that all them are enabled.
tell me: what particular data would you like to log? article views, for instance?
if the plugins are active, then the data should be recorded. isn't it? and it should appear on the component, line by line.
also, you can set up modules on the backend to display any data you find useful (if you tell me what you need to display, in graphics, I'll let you know how to configure the modules)
if you are still having trouble setting this up I'll be glad to log in into your site if you give me access, and help you configure it!
Germi -
Accepted Answer
0Hi
First thanks a lot for very fast support!
Second: there is error - once I am clicking on topic link from my email I am redirected to forum and I can read the topic, then if I want to write Reply error appears about broken link.
To the point
I can see today some data in backend, but this is only fo com_users.
I need data for all activity - viewed articles and virtue mart activity.
I can't see anywhere component or plugin for VM but in description is stated that more expensive package includes everything.
I am using joomla from very long but first time I hear that I can display modules in backend. Can you give me some tips for it, please.
Regards, marcin -
Accepted Answer
0it does include them, indeed!
is the Content Statistics - VirtueMart plugin installed and enabled?
and the Content Statistics - Joomla Articles (content) plugin installed and enabled?
UPDATE: wait! I can see the virtuemart plugin is not currently enabled in the Joomla 2.5 subscription! we unpublisehd it due to a little problem. I'll republish it in the following hours so you can download and install!
however, about the toher plugin (com_content): is this one installed and enabled? -
Accepted Answer
-
Accepted Answer
-
Accepted Answer
-
Accepted Answer
-
Accepted Answer
-
Accepted Answer
-
Accepted Answer
-
Accepted Answer
-
Accepted Answer
-
Accepted Answer
-
Accepted Answer
-
Accepted Answer
0well there's no place in there to put them but if you want them there and are not afraid of adding a bit of php code, then it's very easy:
you just need to add this code into the file /administrator/components/com_contentstats/views/items/tmpl/default.php, at the end of the file:
$modules = JModuleHelper::getModules("statistics1");
$document = &JFactory::getDocument();
$renderer = $document->loadRenderer('module');
$attribs = array();
$attribs['style'] = 'xhtml';
foreach ( @$modules as $mod )
{
echo $renderer->render($mod, $attribs);
}
then just create your module on the "statistics1" position.
to create a module, just set up what you want to display in it: top purchased products? a graph of number of product views? you will see the options in the module parameters, it's pretty self explainatory! -
Accepted Answer
0ok done!!!
I've changed it to this:
$modules = JModuleHelper::getModules("statistics1");
$document = &JFactory::getDocument();
$renderer = $document->loadRenderer('module');
$attribs = array();
$attribs['style'] = 'xhtml';
foreach ( @$modules as $mod )
{
echo $renderer->render($mod, $attribs);
}
?>
is this right? as I am not php expert.
Regards, Marcin -
Accepted Answer
0oh! sorry yes, of course, I asumed it was implicid. you need to wrap this between PHP tags:
<?php
$modules = JModuleHelper::getModules("statistics1");
$document = &JFactory::getDocument();
$renderer = $document->loadRenderer('module');
$attribs = array();
$attribs['style'] = 'xhtml';
foreach ( @$modules as $mod )
{
echo $renderer->render($mod, $attribs);
}
?>
Your Reply

Please login to post a reply
You will need to be logged in to be able to post a reply. Login using the form on the right or register an account if you are new here.
Register Here »