Quantcast
Channel: Discourse Meta - Latest topics
Viewing all 60690 articles
Browse latest View live

Import into hosted service

$
0
0

@cyphers72 wrote:

Just trying things out here. We’re currently on phpBB 3.0. I started the free trial for hosted service.

Then I read this:

And it is talking about a myriad of complexities I hoped to avoid like installing Discourse manually and then using some crazy Docker stuff just to import from phpBB. Is the only way to import from phpBB by doing this all manually?

Posts: 4

Participants: 4

Read full topic


Ignore_by_title should be matched case-insensitive

$
0
0

@schungx wrote:

The ignore_by_title feature is to filter off unwanted (SPAM? auto-mailers? auto-replies?) emails before they create topics that must then be removed by hand.

It takes regex expressions and will block the email if matched:

lib/email/receiver.rb:

def is_blacklisted?
           :
      Regexp.new(SiteSetting.ignore_by_title) =~ @mail.subject
end

I believe Ruby does a case-sensitive match. It would be much more useful to do a case-insensitive search here just to catch people sending in unwanted emails with different casing.

Otherwise, say, in order to block the word happy, I’d have to do at least the following:

\bhappy\b|\bHappy\b|\bHAPPY\b

Posts: 2

Participants: 2

Read full topic

ScreenedEmail levenshtein distance should match user portion only

$
0
0

@schungx wrote:

app/models/screened_email.rb has should_block? should filters off screened email addresses of known spammers.

Levenshtein Distance

The filter works on levenshtein distance between the screened email (known SPAMmer) and the new email address.

I believe the levenshtein distance should be calculated only on the user part of the email address (i.e. anything preceeding @) because users from the same domain are much more suspicious than the same user from a different domain.

For example, say the distance limit is set to one character:

Screened email: john@iibm.com

Incoming email: john@ibm.com (Blocked now, shouldn’t)

Incoming email: john1@iibm.com (Blocked now)

Suggested modification is either:

  1. Limit levenshtein distance to portions of email addresses before @, or

  2. Have two levenshtein distance limits, one for the portions before @ and one for after.

Screened Emails Limit

In addition:

screened_emails = ScreenedEmail.order(created_at: :desc).limit(100)

limits the search to only 100 screened email addresses. I understand that this is for performance reasons, but shouldn’t this limit be a system setting?

Feature to block entire domain?

In addition to blocking email addresses similar to a screened email, it would be nice to be able to block the entire domain. This is theoretically possible with domain blacklist, but it is a hassle. Just having an extra option on the User page that says Delete User and Block Entire Domain will make it much simple to manage.

Posts: 1

Participants: 1

Read full topic

How to use group feature (Very hard for me to understand)

$
0
0

@burningman wrote:

I read a lot about group feature but hard to understand for me every time.
Like, when we joined group on facebook, there is a different dashboard where everyone can discuss about that specific topic but I haven’t found that in my discourse(If there, kindly correct me)

I created group, then I joined that from my another I’d to check out how it works but nothing works, there is nothing there where on can post something then why people’s who use facebook group for discussion comes to my community.

Yesterday, I invited one of friend. He has the knowledge of “Economic” and told him that you should use my community, I will create a different group and you and your friends can discuss here freely.

But, when I created group, there is no option to create a ‘new topic’

When someone joins group, what is his benefit.

Maybe I am wrong about all the things I said about.
Only want to clear my confusion.
Kindly clear it.
Thanks in advance

Posts: 5

Participants: 4

Read full topic

URLs for Group Message: Error for private groups

$
0
0

@Yuun wrote:

Just some probably low-priority weirdness I ran into last night. :slight_smile:

Expected Behavior:

Anyone who has permission to message a group (as defined on the group admin page) should be able to click on a link to generate a PM to that group.

Actual Behavior:

If someone with permission to message a group but not see it clicks a link to generate a PM, they get a box with the generic “Sorry, an error has occurred” message.

Note that this is specific to using a link to create the message - said user can still manually open up a PM, add the group to the PM, and send them the message without issue.

Repro:

  1. Create a group with restricted visibility but that everyone is able to message
  2. With a user that can’t see but can message the group, click on a URL to generate a group message
  3. “Sorry, an error has occured”. Repro complete!
    3a. No errors in /log or /sidekiq

Posts: 1

Participants: 1

Read full topic

How do I add a transition button to the next entry?

$
0
0

@11145 wrote:

There are rubrics in which it’s interesting to read all the entries, but to read the next one, you have to go back to the category and choose another record.
I think that navigation such will be convenient, it can be put it would be either in all categories, or in selective.

For clarity, he drew an example.

Posts: 3

Participants: 3

Read full topic

E-mail didn't delivered in the easyengine(nginx) proxy mandrill environment

$
0
0

@honggian wrote:

Hello Discourse community

I successfully installed discourse in my subdomain environment. Cheers!

However I couldn’t receive the confirmation e-mail.

Would you tell me the proper installation settings?

Installation process

Ubuntu 16.04, install discourse from the following link.

nginx setting, however in my handrill, I couldn’t find the sending e-mail information in the mandrill outbound information.

server {
    listen 80;
    listen [::]:80;
    listen 443 ssl http2;
    listen [::]:443 ssl http2;
    ssl on;
    ssl_certificate     /etc/letsencrypt/live/forum.example.co.kr/fullchain.pem;
    ssl_certificate_key     /etc/letsencrypt/live/forum.example.co.kr/privkey.pem;
    server_name forum.example.co.kr   www.forum.example.co.kr;
    access_log /var/log/nginx/forum.example.co.kr.access.log rt_cache;
    error_log /var/log/nginx/forum.example.co.kr.error.log;
    add_header X-Proxy-Cache $upstream_cache_status;
    location ~* / {
        proxy_pass http://127.0.0.1:25654;
        proxy_redirect      off;
        proxy_set_header    Host            $host;
        proxy_set_header    X-Real-IP       $remote_addr;
        proxy_set_header    X-Forwarded-For $proxy_add_x_forwarded_for;
    }
}

Do you have any recommendation?

Thanks

Posts: 3

Participants: 3

Read full topic

How to add noindex to an entire category?

$
0
0

@pacoesni wrote:

Hi guys, I just open a new discourse community…of course we wanna be index on Google and it’s friends, but we’re gonna open a category that we don’t want to show with any search bot. So the simple question is How to add “nofollow” to an entire category?

Cheers.

Posts: 9

Participants: 3

Read full topic


Copy / clone a theme?

$
0
0

@djcyry wrote:

Hello
How can i copy a full css theme of a website ?
I see various themes , and i want to copy them and then edit them for my forum .
Thanks :slightly_smiling_face:

Posts: 2

Participants: 2

Read full topic

Is using userlevel affect SEO

$
0
0

@burningman wrote:

I have a question in mind like I set up category for different user level. As those category which are only accesses by UserLevel 3 or 4, Is it affect SEO means does those categories and topics are indexed by search engine or not.

Posts: 7

Participants: 3

Read full topic

Can i displays a top members of the week on the right (or left sidebar?

$
0
0

@Tumi wrote:

Hi

I want to display on the right sidebar or left at index page Top best members with most number of likes and good solution ?
Any plugin for this?

Posts: 2

Participants: 2

Read full topic

What is a tag group?

$
0
0

@nixie wrote:

I’d like to know what is a tag group.
(searched about it for a while, but couldn’t find any info anywhere)
(I checked in admin settings too, couldn’t find anything about “tag groups” there either).

While creating a new category, I saw this "list of allowed tag groups"
So - how can I group tags?

Posts: 2

Participants: 2

Read full topic

Bug: Completition of categories and emojicons mixed up

Advertise activity in a private category (discourse-category-lockdown)

$
0
0

@David_Taylor wrote:

This plugin allows you to restrict access to topic pages in a category. Topic titles will still show up in topic lists, search, user activity & digest emails. This is a great way to advertise the activity in a “members-only” category, which may charge for access.

It IS NOT designed to keep the contents of the category 100% private - if someone is determined enough they will be able to piece together the content from search results.

Each category has a couple of new settings:

“Locked down” topics will show a (configurable) icon in the topic list if the user does not have access:

Once clicked, unauthorised users will be redirected to a defined URL (e.g. your payment gateway). This link can be internal or external. The static pages plugin works great for this.

Plugin repository: https://github.com/davidtaylorhq/discourse-category-lockdown

Thanks to @DiscourseMetrics.com for funding the development of this plugin.

Posts: 1

Participants: 1

Read full topic

Logo url won't reset

$
0
0

@Philip_Colmer wrote:

The URL that “logo url” is pointing to is broken. We’ve tried the following to point the logo URL at a “working” location but Discourse keeps reverting back to the broken URL.

Option 1: reset
Option 2: copy logo small url and paste into logo url

In both cases, the UI appears to show that the change has occurred. However, refreshing the Settings page shows that the old (broken) URL is still there.

This is with the latest version (1.8.7) of Discourse but it was happening on the previous release (1.8.6) as well.

What can I do to fix this? The site doesn’t look good with the broken logo :frowning:

Thanks.

Posts: 4

Participants: 3

Read full topic


Implementing Coin-hive captcha

How to shift the category/latest buttons down with CSS

$
0
0

@achamess wrote:

I increased the size of my logo using some CSS I found in a thread here, and that pushed the header down. This achieved the goal of making the logo bigger, but now it pushed out the white space between the category/latest buttons. How do I bring back some space there? And in general, how do I find out how to manipulate CSS elements on my forum. Is there a CSS style sheet somewhere?

Here is the code I used to enlarge the logo:

  max-height: 80px !important;
  margin-top:-8px;
}

.d-header {
    height: 80px;
}

Site: forum.gofishcarolinas.com

Posts: 6

Participants: 3

Read full topic

Converting a topic to a wiki returns a 500 error

$
0
0

@Southpaw wrote:

Discourse 1.9.0.beta8

Steps to reproduce:
Create a topic
Covert the topic to a Wiki with the “Make Wiki” option.
If it does load after converting to Wiki, refresh the page.

Result:

image

The topic appears in activity feeds:

image

Clicking it in the activity feed results in:

Error logs:

2
OpenSSL::PKey::RSAError (Neither PUB key nor PRIV key: nested asn1 error) /var/www/discourse/app/controllers/user_api_keys_controller.rb:138:in `initialize’
12:08 am

5
NoMethodError (undefined method updated_at' for nil:NilClass) /var/www/discourse/app/serializers/post_serializer.rb:358:inlast_wiki_edit’
12:59 am

10
NoMethodError (undefined method updated_at' for nil:NilClass) /var/www/discourse/app/serializers/post_serializer.rb:358:inlast_wiki_edit’
1:02 am

38
NoMethodError (undefined method updated_at' for nil:NilClass) /var/www/discourse/app/serializers/post_serializer.rb:358:inlast_wiki_edit’

(Please let me know if you need the specifics from any of those errors. I had included them, but exceeded a character limit for the post.)

Posts: 1

Participants: 1

Read full topic

Add backup to existing Discourse instance

$
0
0

@phntxx wrote:

Hi,
is there any possibility of adding posts from a backup onto a working instance without replacing everything that’s already there?

Posts: 4

Participants: 3

Read full topic

How to increase body rate limit for API?

$
0
0

@dylanh724 wrote:

We run a gaming forum – we have a private section for our API to POST the chat logs wrapped by [Hide Details] for that game (bad behavior report). The average size is about 60k characters for a full game. We’re happy to ensure we have enough size for people to keep posting reports –

How can I break this 32k limit on Discourse? I tried checking out the limitations admin section: nada.

image

Posts: 3

Participants: 2

Read full topic

Viewing all 60690 articles
Browse latest View live




Latest Images