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.
R
Reik
@Reik
Posts
-
account verify forwarding to ip and not the domain? -
Upgrade to v0.6.0 failed after v0.5 stopped runningWhen I had some sort of that error, I just relaunched
./nodebb setup
and it fixed problem. -
Popular forum exportersI 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
http://pastebin.com/UdaT0FQF