Saving daily analytics data

Technical Support
  • Hi everyone. I was wondering if there is a way to save daily analytics that is shown within the dashboard and see when they are happening and who is doing them during the day (posts, topics, etc). It seems it only displays live information without having the ability to export the data. I've also installed the Google Analytics plugin, but don't see a way to do this. Perhaps I'm overlooking something. Currently, I'm testing out the software, not using the open source code. Any help with this would be greatly appreciated.

  • The build in statistics seem like a good idea. I currently have no idea if this exists in the last versions. I haven't used NodeBB in a while

  • This would be useful. I used to take a daily & weekly screenshot and post them in a thread in a moderators forum.


Suggested Topics


  • 0 Votes
    4 Posts
    870 Views

    @RogerLevy The import plugin should work on latest 1.8.x now, as far as I know... there weren't any breaking changes that might affect the importer as far as I know.

  • 0 Votes
    5 Posts
    1k Views

    @baris seems to be working on v1.8.1 now. Thanks!

  • 0 Votes
    4 Posts
    1k Views

    @PitaJ Could you give a detailed explanation? I didn't see any users data in the mongodb. Also how do i restore it in a new openshift app?

  • Accessing data inside header.tpl?

    Moved Unsolved Technical Support
    13
    0 Votes
    13 Posts
    3k Views

    Here is what I have done, I finally figured out how to get a list of categories, I kind of like this method but I hate having to pass an array, but it is what it is.

    var theme = {}; var catLength = [1,2,3,4,5,6,7]; var Categories = module.parent.require("./Categories"); theme.init = function(params, callback) { Categories.getCategoriesData(catLength, function(err, data) { data.forEach(function(something, index) { if(something) { console.log(data[index].name); } }); }); callback(); }; module.exports = theme;

    Cool now I have all the categories and the next step is to create a dynamic header based on the categories, the problem is I am so confused on how to do that, I think I am missing something very obvious!

    I am inside a theme and I want to pass this into the precompiled template! 🙂

  • 0 Votes
    11 Posts
    4k Views
    This is the manual how to update/upgrade from v0.5.0 to v0.6.1 git checkout c9228f14837fcf2903923ebca3d90a0d1517a713 (I don't now why v0.5.1 doesn't work in cli and csrf token error) ./nodebb upgrade git checkout d341428ca1b88d56f7c7fe37d3e5e87d83bb0698 (v0.5.2 doesn`t work in cli too) ./nodebb upgrade git checkout cce076fc83e6a29c7d385ee757cce4b40c63daf2 (v0.5.3 work in cli, but I am not interesting in experiments) ./nodebb upgrade git checkout 1943f8fdfa573b40e8b0c5e23e68142a71b2cf93 (v0.5.4) ./nodebb upgrade git checkout d6c17d5cae66f2ab0d4174e1b6bdda24856eacbe (v0.5.5) ./nodebb upgrade git checkout e7ecd0f1eb81c54f33f51958b64aa937613bc99d (v0.5.6) ./nodebb upgrade git checkout 6748013c6534ed672184145ee7b5120eb07e7b47 (v0.5.7) ./nodebb upgrade git checkout accee7d05ba3f791627d439ac1c73cf5f858eebe (v0.6.0) ./nodebb upgrade git checkout 4686ae992318eeaaff1945868ee4cc094dcda17d (v0.6.1) ./nodebb upgrade git checkout c2656bf0b69ec05b1cbc123ef06ec0b14657cc8b (stable) ./nodebb upgrade npm up clear cache and cookies

    Is anybody knowing the better solution? Please, give me to know.