Navigation

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

    Reik

    @Reik

    GNU/Linux

    3
    Reputation
    737
    Profile views
    9
    Posts
    0
    Followers
    2
    Following
    Joined Last Online

    Reik Unfollow Follow
    GNU/Linux

    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

    Latest 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: How to change 'localhost:4567' to actual domain name!!

      @gvimlan said:

      Why are we using reverse proxy?

      Because a NodeBB server use 4567 as default and it is bound to all of the interfaces in a host computer. You may connect to server by http://ip:4567 probably. Nginx is needed to redirect connection to your server from port yourdomain.com:80 to localhost:4567.

      posted in NodeBB Development
      Reik
      Reik
    • RE: Introducing the NodeBB 0.7.0 Persona preview

      Classic feel, yeah! It looks very nice, but '3 dots in column' button (for sharing posts) should be bigger imo . I can hardly click it 😛 .

      posted in Announcements
      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
    • RE: Popular forum exporters

      I imported small phpbb3 database of our local students' community about 2 months ago. It took a lot of time to get it to work.
      In that time:

      • groups weren't imported
      • I had to set by hand all of privileges to categories
      • attachments weren't imported
      • parents categories weren't imported
      • current version was doubling first post of topic, and consequently I had to back to old version of plugins (nodebb-plugin-import and nodebb-plugin-import-phpbb) and back to plugins' supported version of NodeBB
      • BBCode wasn't converted properly, so I had to use about 7 regex to correct that (automatic links, quote, redundant escaping characters, emoticons)
      • avatars weren't imported (and it looks like they aren't imported because of that)
      posted in General Discussion
      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: Upgrading to 0.5.3

      After git pull something goes wrong with package.json, it couldn't automerge. If I were you, I would try to merge manually or I would just backup old package.json, download and put new one instead.

      posted in General Discussion
      Reik
      Reik
    • RE: Upgrading to 0.5.3

      Why don't you try to set user.email and user.name like in example? If you don't want to make commits, you can set it to something random. 😃

      posted in General Discussion
      Reik
      Reik
    • RE: Desktop Notifications "bug"

      I've just checked it and both options above works.

      Btw, my friend discovered, that nodebb-plugin-desktop-notifications doesn't work, because of changes in api of NodeBB. However, I don't remember what lines you have to change to repair it.

      posted in Bug Reports
      Reik
      Reik