Ah, i overlooked this - the list count not correctly, only 3 pages displayed for me...
Printable View
Is it possible to deactivate smiles in the wiki-pages?
eg. every :P is converted to a smily
I have lots of suppages on my wiki-pages like wiki/sitename/subpage1 what about these subpages?
VaultWiki does not have a function that automatically links sub-pages yet. You would have to create those links manually, or you can make pages with sub-pages into Books, and make the sub-pages be chapters.
You can disable smilies in the settings for each area.
Sub-pages should still exist, as they existed as separate pages in the database. You should be able to find them using the wiki search.
Is it possible to translate these tags without getting problems?
Attachment 1392
Hi,
how can i activate/enable the discussion-button on every wiki-page ?
If you change the tags, it doesn't edit the tags in existing wiki pages. Pretty much all your current wiki pages use the untranslated tags and those versions will get broken. You should really only change them if your wiki is empty. A developer might be able to make aliases for you, but that is beyond any built-in feature of VaultWiki at this time.
It should be possible to add comments on every page using the Comments tab at the top. If you don't see this tab on some pages, check the area settings to make sure comments are allowed in that area.
Is it possible to integrate vaultwiki to the xf-statistic-tools?
(feature request)
There is not a built-in feature for this, but you can do it in MySQL after you create the new user, or if you know the user ID of the user you want to merge the fake-user into.
The user's contribution count will still be wrong. There's not a tool currently to rebuild a user's contributions. You can request one, as it can be useful after merging user accounts in general.Code:UPDATE vw_revision
SET userid = NEW_USERID
WHERE username = 'FAKE_USERNAME';
UPDATE vw_page
SET creatorid = NEW_USERID
WHERE creatorname = 'FAKE_USERNAME';
UPDATE vw_redirect
SET userid = NEW_USERID
WHERE username = 'FAKE_USERNAME';
UPDATE vw_discussion
SET userid = NEW_USERID
WHERE username = 'FAKE_USERNAME';
UPDATE vw_comment
SET userid = NEW_USERID
WHERE username = 'FAKE_USERNAME';
Ok, thanks - i'll ltry this after wiki-gardening ;-)