MyBB Community Forums

Full Version: ProStats (Professional statistics)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
(2011-04-20, 09:47 AM)echofloripa Wrote: [ -> ]I just installed 1.7.7 and it worked Smile
Can I make a request? Could you add the posts best evaluated (via the star thingy)?

Congs!
Thank you for the idea. I'll try to add that feature (Latest most rated threads).
WOW most rated threads could be amazing Smile

I´ve just disabled threads rating because users didn´t care for it anymore
(2011-04-20, 10:09 AM)roldan Wrote: [ -> ]Try to read this :

http://community.mybb.com/thread-92639-p...#pid675910

What do you mean? Do you need help or something?
Regarding to that topic, I would suggest you deactivate your plugins or switch to another host. 15 MB memory usage is freaking abnormal IMO.


(2011-04-20, 11:16 AM)aglioeolio Wrote: [ -> ]WOW most rated threads could be amazing Smile

I´ve just disabled threads rating because users didn´t care for it anymore

I'm not gonna use it too (for the same reason Big Grin) but maybe someone needs that! At least it would be harmless! Wink
Is there a way to update/refresh all our prostats without having to reload the page or manually clicking the reload button on prostats?

So have it refresh within our page automatically like every 60 seconds / 1 minute.

?

Thanks
(2011-04-20, 11:16 AM)aglioeolio Wrote: [ -> ]WOW most rated threads could be amazing Smile

I´ve just disabled threads rating because users didn´t care for it anymore

The same for me, barely anyone uses it.
The other reason I want this plugin is to give relevance based on merit, if a post has received enough good rating, it will show up and be visible.

Another suggestion would be to have most viewed posts of the last week, for example...
(2011-04-20, 03:52 PM)FooFighter Wrote: [ -> ]Is there a way to update/refresh all our prostats without having to reload the page or manually clicking the reload button on prostats?

So have it refresh within our page automatically like every 60 seconds / 1 minute.

?

Thanks

Anyone, anyone at all?

Does it need ajax or something else?

------------------------------------------------------------------

Would adding this to the prostats php file refresh it? (with "1000" being = to whatever you would want)

function onLoad() { setTimeout(ajaxRefresh, 1000); } function ajaxRefresh() { var f = $("#AjaxForm"); $("#AjaxLoading").show(); $.post(f.attr("action"), f.serialize(), function (context) { $("#AjaxDiv").html(context); $("#AjaxLoading").hide(); }); setTimeout(ajaxRefresh, 1000); }

------------------------------------------------------------------

I'm trying to wrap my head around updating individual pages automatically.

------------------------------------------------------------------

What about using html;

<html>
<head>
<script type="text/JavaScript">
<!--
function timedRefresh(timeoutPeriod) {
setTimeout("location.reload(true);",timeoutPeriod);
}
// -->
</script>
</head>
<body onload="JavaScript:timedRefresh(5000);">
</body>
</html>
@FooFighter refresh every X seconds the entire page could overload badly your server
I get an error when I click on the refresh link:
Quote:Ocorreu um erro interno e o sistema não pode continuar.

Tipo de Erro:
Aviso (2)
Informação do Erro:
Cannot modify header information - headers already sent by (output started at /home/neworder/public_html/mybb/inc/languages/portugues_brasil/prostats.lang.php:1)
Local:
Arquivo: inc/plugins/prostats.php
Linha: 1646
Código:
1643.
1644. prostats_run_index(true);
1645.
1646. header('Content-Type: text/xml');
1647. echo $prostats_tbl;
1648. }
1649.
Registro:
Arquivo Linha Função
/inc/class_error.php 206 errorHandler->output_error
[PHP] errorHandler->error
/inc/plugins/prostats.php 1646 header
[PHP] prostats_run_ajax
/inc/class_plugins.php 101 call_user_func_array
/xmlhttp.php 115 pluginSystem->run_hooks
Please attach your translated language file (inc/languages/portugues_brasil/prostats.lang.php) here.
(2011-04-20, 03:52 PM)FooFighter Wrote: [ -> ]So have it refresh within our page automatically like every 60 seconds / 1 minute.

It doesn't refresh automatically.

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42