• Register
    • Help

    striker  0 Items
    Currently Supporting
    • Home
    • News
    • Forum
      • Try XenForo Demo
      • New Posts
      • FAQ
      • Calendar
      • Community
        • Groups
        • Albums
        • Member List
      • Forum Actions
        • Mark Forums Read
      • Quick Links
        • Today's Posts
        • Who's Online
      • Sponsor
        • Sponsor a Feature
        • List of Donors
    • Wiki
    • Support
    • What's New?
    • Buy Now
    • Manual
    • 
    • Forum
    • VaultWiki Discussion
    • General Discussion
    • Page creator blank

    1. Welcome to VaultWiki.org, home of the wiki add-on for vBulletin and XenForo!

      VaultWiki allows your existing forum users to collaborate on creating and managing a site's content pages. VaultWiki is a fully-featured and fully-supported wiki solution for vBulletin and XenForo.

      The VaultWiki Team encourages you to join our community of forum administrators and check out VaultWiki for yourself.

    Results 1 to 10 of 10

    Thread: Page creator blank

    • Thread Tools
      • Show Printable Version
    1. February 11, 2022 #1
      stained
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • View Articles
      stained is offline
      Junior Member
      Join Date
      October 21, 2012
      Posts
      33
      Rep Power
      168

      Page creator blank

      There's probably a very simple answer to this but I when I create pages on my site the line "Page created by" is blank where my username should appear. Contributor usernames are however always shown. Is there a way that I can retrospectively add my username as the creator and ensure that it appears on future pages?
      Reply With Quote Reply With Quote

    2. February 15, 2022 #2
      pegasus
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • Visit Homepage
      • View Articles
      pegasus is offline
      VaultWiki Team
      Join Date
      March 28, 2004
      Location
      New York, NY
      Posts
      2,959
      Blog Entries
      18
      Rep Power
      688
      This may be an issue with phrases showing when they are not supposed to. For the affected pages, were you the only user to ever edit the page? If another user edits the page and becomes the "last edited by" user shown, is the "created by" information still blank?
      - lead developer for VaultWiki
      Reply With Quote Reply With Quote

    3. February 18, 2022 #3
      stained
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • View Articles
      stained is offline
      Junior Member
      Join Date
      October 21, 2012
      Posts
      33
      Rep Power
      168
      Hi,

      All of my articles pages have the same problem but here is an example from the footer of a page created by me, edited once by a different member and subsequently edited/updated exclusively by me:



      Created by on 7th November 2012
      Last updated by on 15th May 2021

      Contributors: SomeMember



      On pages where I was the creator and sole contributor/editor I see this:


      Created by on 19th November 2012
      Last updated by on 26th August 2021
      Last edited by stained; February 18, 2022 at 11:44 AM.
      Reply With Quote Reply With Quote

    4. February 18, 2022 #4
      pegasus
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • Visit Homepage
      • View Articles
      pegasus is offline
      VaultWiki Team
      Join Date
      March 28, 2004
      Location
      New York, NY
      Posts
      2,959
      Blog Entries
      18
      Rep Power
      688
      Based on the output I am seeing, it is possible that the username field in the database could be blank, although I am not sure why the creator/updater links point to the correct profile in that case.

      In your database, please try the following query:
      Code:
      SELECT * FROM vw_page
      WHERE creatorid > 0 AND
      creatorname = ''
      ORDER BY dateline DESC
      If there are recent results, then that is a problem.

      Otherwise, the only thing I can think of right now without investigating your forum more closely is that your forum might have a plugin using hook fetch_musername that is setting a blank value to musername.
      - lead developer for VaultWiki
      Reply With Quote Reply With Quote

    5. February 19, 2022 #5
      stained
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • View Articles
      stained is offline
      Junior Member
      Join Date
      October 21, 2012
      Posts
      33
      Rep Power
      168
      Thank you.

      I ran that query and the result was:

      Results: 0 (0.0003s), Page 1 of 0

      I have some additional issues including the following and I suspect that something went wrong during a past upgrade (my fault) because the wiki is definitely not working as you intended:

      file uploads always fail
      page creation, page edits are not reflected in vbulletin's "What's New". This is a long-term issue though and not related to my current vaultwiki version.
      Vault's "Recent activity" widget defaults to "Entire Wiki" but never shows any activity even if there has been.

      Shall I start a ticket?
      Reply With Quote Reply With Quote

    6. February 19, 2022 #6
      pegasus
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • Visit Homepage
      • View Articles
      pegasus is offline
      VaultWiki Team
      Join Date
      March 28, 2004
      Location
      New York, NY
      Posts
      2,959
      Blog Entries
      18
      Rep Power
      688
      Yes, if there are any database entries missing, I will need to attempt to regenerate them manually.
      - lead developer for VaultWiki
      Reply With Quote Reply With Quote

    7. February 20, 2022 #7
      stained
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • View Articles
      stained is offline
      Junior Member
      Join Date
      October 21, 2012
      Posts
      33
      Rep Power
      168
      Many thanks. Ticket submitted.
      Reply With Quote Reply With Quote

    8. February 20, 2022 #8
      pegasus
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • Visit Homepage
      • View Articles
      pegasus is offline
      VaultWiki Team
      Join Date
      March 28, 2004
      Location
      New York, NY
      Posts
      2,959
      Blog Entries
      18
      Rep Power
      688
      The usernames that were missing were flagged by the forum as being banned users. This could be the case of unintentionally repurposing a banned group for wiki editors (which could get messy to fix, since some users in there might truly be banned), users not realizing they were banned, or creating a new usergroup for wiki editors and just forgetting to mark it as a not-banned group.

      On our part, we can do a better job of how to display these lines when the users are banned. In that case, the lines should be hidden. You can still see banned creators/editors on the history tab, so they can still be blamed for their contributions, but banned users are not "recognized" for their contributions on the front-facing page.
      - lead developer for VaultWiki
      Reply With Quote Reply With Quote

    9. February 21, 2022 #9
      stained
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • View Articles
      stained is offline
      Junior Member
      Join Date
      October 21, 2012
      Posts
      33
      Rep Power
      168
      Many thanks P. That issue is resolved now.
      Reply With Quote Reply With Quote

    10. February 22, 2022 #10
      stained
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • View Articles
      stained is offline
      Junior Member
      Join Date
      October 21, 2012
      Posts
      33
      Rep Power
      168
      The attachment upload issue is also resolved. It only seemed to happen in Firefox. I switched to Chrome and the uploads worked every time so I must have some incorrect setting in my Firefox.
      Reply With Quote Reply With Quote

    Similar Threads

    1. Supermod when editing a wiki page displays a blank page (Vbulletin)
      By migratoria in forum General Discussion
      Replies: 13
      Last Post: January 17, 2016, 2:31 PM
    2. No space/blank line before headings
      By Morrus in forum VaultWiki Questions
      Replies: 1
      Last Post: August 5, 2013, 11:18 PM
    3. Blank page on wiki root
      By beernuts in forum VaultWiki Questions
      Replies: 6
      Last Post: April 10, 2013, 2:43 PM
    4. Blank Page Error
      By pegasus in forum VaultWiki Questions
      Replies: 0
      Last Post: October 20, 2008, 11:20 PM

    Tags for this Thread

    creator, page, pages, username

    View Tag Cloud

    Bookmarks

    Bookmarks
    • Submit to Digg Digg
    • Submit to del.icio.us del.icio.us
    • Submit to StumbleUpon StumbleUpon
    • Submit to Google Google

    Posting Permissions

    • You may not post new threads
    • You may not post replies
    • You may not post attachments
    • You may not edit your posts
    •  
    • BB code is On
    • Smilies are On
    • [IMG] code is Off
    • [VIDEO] code is
    • HTML code is Off

    Forum Rules

    • Contact Us
    • License Agreement
    • Privacy
    • Terms
    • Top
    All times are GMT -4. The time now is 1:53 PM.
    This site uses cookies to help personalize content, to tailor your experience, and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.
    Learn more… Accept Remind me later
  • striker
    Powered by vBulletin® Version 4.2.5 Beta 2
    Copyright © 2025 vBulletin Solutions Inc. All rights reserved.
    Search Engine Optimisation provided by DragonByte SEO (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
    Copyright © 2008 - 2024 VaultWiki Team, Cracked Egg Studios, LLC.