Navigation

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Popular
    • Tags
    • Users
    • Groups
    1. Home
    2. Reik
    3. Best
    • Profile
    • Following 2
    • Followers 0
    • Topics 0
    • Posts 9
    • Best 3
    • Groups 1

    Best posts made by Reik

    • RE: account verify forwarding to ip and not the domain?

      What address do you have in config.json? Is there IP address or domain in "base_url" section? If you have IP address, try to change to domain and restart Nodebb.

      posted in Technical Support
      Reik
      Reik
    • RE: Upgrade to v0.6.0 failed after v0.5 stopped running

      When I had some sort of that error, I just relaunched ./nodebb setup and it fixed problem.

      posted in General Discussion
      Reik
      Reik
    • RE: Popular forum exporters

      I hope this is the most up to date version. You don't have to import database every time, to check if everything is parsed right. Regexes are used always on 'just after import' version of database.

      Preparse regex:

      content = content.replace(/<!-- m --><a class="postlink" href="(.*)">.*<\/a><!-- m -->/g, '$1');
      content = content.replace(/<!--.*?--><img src="\{SMILIES_PATH\}\/.+?" alt="(.+?)" title=.+?\/><!--.*?-->/g, ' $1 ');
      content = content.replace(/[(.*?):\w+]/g, "[$1]");
      content = content.replace(/[(\/\w+):\w+]/g, "[$1]");
      

      Postparse regex:

      content = content.replace(/\\[/g, '[');
      content = content.replace(/\\]/g, ']');
      content = content.replace(/\@"(\w+)?" said:/g, '@$1 said:');
      

      Bonus - Selenium IDE for Firefox script, which makes forum private 😛 You need sideflow extension to use it. Use it at categories page in ACP to see how it works.

      <-- deprecated since v0.7.0

      posted in General Discussion
      Reik
      Reik