| 1 |
|
| 2 |
TAXONOMY_USER MODULE
|
| 3 |
|
| 4 |
alex_b, Development Seed
|
| 5 |
|
| 6 |
INSTALLATION:
|
| 7 |
|
| 8 |
Drop taxonomy_user files into your modules directory, go to admin/modules and
|
| 9 |
turn it on. Go to admin/taxonomy and enable user taxonomy AND free tagging for a vocabulary of your choice.
|
| 10 |
|
| 11 |
IMPORTANT:
|
| 12 |
|
| 13 |
It is recommended to use a fresh vocabulary for taxonomy_user. On a
|
| 14 |
taxonomy_user enabled vocabulary, previous node-term relations could be lost if
|
| 15 |
a node is edited.
|
| 16 |
|
| 17 |
If you want to convert consisting term - node relations to taxonomy_user term
|
| 18 |
relations, use the following SQL script after installation:
|
| 19 |
|
| 20 |
INSERT INTO term_node_user( uid, tid, nid )
|
| 21 |
SELECT <uid> , tn.tid, tn.nid
|
| 22 |
FROM term_node tn
|
| 23 |
JOIN term_data td ON td.tid = tn.tid
|
| 24 |
WHERE td.vid = <vid>;
|
| 25 |
|
| 26 |
<uid> ... the user id you want to associate the legacy terms to
|
| 27 |
<vid> ... the vocabulary that will be user taxonomy enabled
|
| 28 |
|
| 29 |
NOTES:
|
| 30 |
|
| 31 |
* Only mysql databases are supported so far.
|