Add-on Tags / mass upload

erich37

Well-known member
I am looking for an Addon which allows to upload about 500 or 1000 "Thread Tags" in one shot.

So literally a "Form" or "Custom Field" in ACP at which I simply enter a list of "Tags" and submit them in one shot.

The "Tags" should not be associated to any specific thread.
I just want to upload more "Tags" and with a "Form" (custom text field) it would make it quicker.



Please let me know.

Many thanks.
 
does anyone have an Addon which allows the upload of a lot of "Tags" from a list ?

So like entering "keywords" with a comma in between and it makes "Tags" out of it ?


E.g.: words separated by commata will create the "Tags"

house, ice cream, pizza, love me, blonde girls, chocolate,


It takes forever to just manually add a lot of "Tags" into the system.
 
house, ice cream, pizza, love me, blonde girls, chocolate,
Create a text file, each tag on a seperate line and use MySQL;

LOAD DATA INFILE 'YourFile.txt' INTO TABLE xf_tag
FIELDS TERMINATED BY ','
ENCLOSED BY '"'
LINES TERMINATED BY '\r\n'
IGNORE 1 LINES;

with YourFile.txt looking like;
tag_id,tag
,"tagname1"
,"tagname2"
,"tagname3"
,"tagname4"

... etc.
 
Top Bottom