Page 1 of 1

import form another guestbook

Posted: 09 Aug 2017, 22:25
by amuijs
I want to import item from another guestbook into phocaguestbook.

Can someone tell what the fields `lft`, `rgt` in the table xp2et_phocaguestbook_items` represents?

Re: import form another guestbook

Posted: 11 Aug 2017, 23:12
by Jan
Hi, lft and rgt columns are here because of ordering - it is left and right (next and previous) value of the post - so the tree traversal mechanism can be built.

See example
Image

Items ordering: 4 -> 3 -> 2

After reordering: 2 -> 4 -> 3
Image

Jan