Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
488 views
in Q2A Core by
reopened by
I need to import a curated list of tags into the q2a via phpmyadmin

To which table i need to import

i see qa_tagwords table there, do i need to import there

Any clues?
by
What are you trying to achieve? Tags don’t exist without questions to go with them.
by
i need to import the questions too.....

If i already load with some curated list of tags.... it will be useful for my users to utilize these tags when posting question


I dont want an empty site

1 Answer

+3 votes
by
selected by
 
Best answer

If you are going to import questions via CSV you can set the ‘tags’ field for each question. Then go to Admin > Stats and click the ‘Reindex content’ button, your tag pages should be filled.

There was also an importer plugin posted here a little while back which may be of use. I think it handled all the indexing and such for you.


Update: it is possible to do some kind of curation of tags. The auto-suggestion of tags comes from the JavaScript variable qa_tags_complete which is generated based on existing tags. However, if you have no existing tags you can manually set the variable.

In your theme (or layer plugin), in the head_script() function add this at the bottom:

$this->output_raw("<script>var qa_tags_complete = 'question,example,tags';</script>");

And replace question,example,tags with a comma-separated list of whatever tags you want to show up. Or you can add to existing tags by using += instead of =

You could try the above in conjunction with my Tagging Tools plugin if you want to force the user to use those tags.

by
+1
OK made an update now with a possible solution.
by
Thanks for you answer scott... it was very useful.. but i also want to import some questions with tags to phpmyadmin

how can i acheive it
...