Download discussions of forum users for scientific text analysis
Quote from Lutzmo on May 31, 2018, 11:43 amHallo,
we are running a small real world laboratory, in which we help consumers reducing their carbon footprint. We also offer a closed forum for questions and discussions. For pure social science purpose with official allowance from all users, we would like to export all discussion threads from our forum to run a text analysis. How is this possible? Would be great to have any suggestion on this.
Hallo,
we are running a small real world laboratory, in which we help consumers reducing their carbon footprint. We also offer a closed forum for questions and discussions. For pure social science purpose with official allowance from all users, we would like to export all discussion threads from our forum to run a text analysis. How is this possible? Would be great to have any suggestion on this.
Quote from Asgaros on June 2, 2018, 9:26 pmHello @lutzmo
An export from inside the Asgaros Forum plugin is not possible at the moment. But if you have access to a database-management tool like phpMyAdmin on your server, some simple kind of sql-query should do the trick.
As an example a sql-query which selects all posts and author-IDs ordered by the author-ID in ascending order:
SELECT text, author_id FROM wp_forum_posts ORDER BY author_id ASC;
Hello @lutzmo
An export from inside the Asgaros Forum plugin is not possible at the moment. But if you have access to a database-management tool like phpMyAdmin on your server, some simple kind of sql-query should do the trick.
As an example a sql-query which selects all posts and author-IDs ordered by the author-ID in ascending order:
SELECT text, author_id FROM wp_forum_posts ORDER BY author_id ASC;