I am using nodebb too.
https://rockq.org/sitemap/topics.1.xml
the sitemap hasn't been updated for a long time. So, is there any trigger ?
I am using nodebb too.
https://rockq.org/sitemap/topics.1.xml
the sitemap hasn't been updated for a long time. So, is there any trigger ?
So, there is no plugin to archive this currently, I assume. I would try to make it.
hey, folks
We have a series of posts that published on a forum based on nodebb, the articles are well organized, and it is long, so for each article, we want a outline sticking on the right side. It can be used as shortcuts, like what you get bellow.
So, the outline is used with #
, or h1
tag.
Is they any plugin can do so ?
Even use cookie is possible to make an mobile application, but the server should provide api to verify username and password and return cookie value for this session. And the mobile then set the cookie for following requests.
I give it a sample for iOS platform.
// set cookie storage
NSHTTPCookieStorage *cookieStorage = [NSHTTPCookieStorage
sharedHTTPCookieStorage];
[cookieStorage setCookieAcceptPolicy:NSHTTPCookieAcceptPolicyAlways];
CDVPluginResult * result = nil;
NSString *appUrl = [command.arguments objectAtIndex:0];
NSString *appCookie = [command.arguments objectAtIndex:1];
if (appUrl != nil && [appUrl length] > 0 && appCookie != nil && [appCookie length] > 0) {
NSArray *cookieArray = [appCookie componentsSeparatedByString:@";"];
for (NSString *cookieItem in cookieArray) {
NSMutableDictionary *cookieDict = [NSMutableDictionary dictionary];
NSRange range = [cookieItem rangeOfString:@"connect.sid="];
if (range.location != NSNotFound){
NSString *cookieValue = [cookieItem substringFromIndex:(range.location + range.length)];
//domainCookie = [cookieItem stringByAppendingString:domainRapidApps];
//[cookieDict setObject:domainCookie forKey:NSHTTPCookieValue];
NSURL *url = [NSURL URLWithString:[appUrl stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
NSString *domain = [url host];
// set cookie
[cookieDict setObject:@"connect.sid" forKey:NSHTTPCookieName];
[cookieDict setObject:cookieValue forKey:NSHTTPCookieValue];
[cookieDict setObject:domain forKey:NSHTTPCookieDomain];
[cookieDict setObject:@"/" forKey:NSHTTPCookiePath];
[cookieDict setObject:@"0" forKey:NSHTTPCookieVersion];
NSHTTPCookie *cookie = [NSHTTPCookie cookieWithProperties:cookieDict];
[cookieStorage setCookie:cookie];
}
}
@Bin this plugin is awesome ! It support Chinese, haha !
@aya I also find this plugin, but it does not work since it is too old.
https://github.com/joe1chen/nodebb-plugin-search-elasticsearch
Even hybrid app is great, I am not sure if someone have published iOS application.
I think it would make nodebb even more powerful. And maybe it is easy to make a hybrid application.
I think I know how to use this plugin now.
there is an indexing page for this plugin, I just found it and trigger it, then the search works for english.
https://github.com/barisusakli/nodebb-plugin-dbsearch/issues/22
Maybe it does not support Chinese out of box, I have tested it. How to make it work with Chinese ?
Recently, I setup a forum with nodebb, the users are Chinese, so the posts are in Chinese. An important feature is the search page. I have activated this db search plugin. https://github.com/barisusakli/nodebb-plugin-dbsearch
Then I get this very fancy search page.
BUt the truth is the search does not work. I test it with a Chinese post and a English post, both return wrong results after hitting search button.
So, first, does this plugin support Chinese ?
Second, what is the right way to make it work, any index should be done manually ?
Thanks.
hi, Folks
Could anyone take a look at my problem ?
Description setup NodeBB v1.0.0, commit id a402e29 nodebb/config.json { "url": "http://rockq.austack.com", "bind_address": "115.28.145.154", "port": 4567, "secret": "3c8c4c84-600f-48xxxx", "database": "mongo", "mongo": { "host": "115.28....
GitHub (github.com)
I get stuck with the login and I want to use nodebb as a community BBS.
I am appreciated if someone can help.
Cheers.
Hain