Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+5 votes
362 views
in Plugins by
edited by
I need a plugin that allow me to check all activities (Questions , Answers , Comments) within exact or selected date

For example I need to check all activities last two days or yesterday or last week

Because I want to make the question appears on the website at the real time and disable the moderate
by
I guess, you meant all Posts withing a selected date range and not activities.
by
Yes, activities are the questions , answers and comments or the posts as you said

1 Answer

+2 votes
by

Just use phpmyadmin, click the database, then on "SQL" and insert: 

   SELECT * FROM `qa_posts` WHERE created between '2016-08-27' and '2016-08-28'

Change dates as needed.

...