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

Quoting a post which uses HTML formatting mangles it

$
0
0

@irrationalJ wrote:

OK, I think this is a bug. However, if it turns out that it actually is not a bug, then I look forward learning why it isn't.

While the option of using HTML to format your entire post is possible with DIscourse, there seems to be a problem quoting from a post which used HTML as the markup language.

What appears to happen is that all of the `<` & `>` characters around the HTML tags are converted to the `&lt;` and `&gt;` symbols. So, `<p>` in the original HTML becomes `&lt;p&gt;` when the post is quoted. The result is that the quoted text is unformatted and IMO unreadable.

I'll provide an example of this in a reply to this post below …

Note:
How could this ever be a problem worth fixing? Who would be so insane as to create not just one, but thousands of Discourse posts using only HTML? It happened to the tudiabetes.org site. When the site was migrated from Ning to Discourse the Ning posts were copied/migrated to the Discourse site "as is" (I am guessing). This "bug" makes it infeasible to quote anything for reference from the migrated HTML posts.

Posts: 2

Participants: 1

Read full topic


Signup is not allowed from this account

$
0
0

@ark wrote:

This is an API creation, using an admin account user+key. SSO is not enabled.
Is the max account check supposed to be bypassed on admin/staff account or via an API key, or is that only true when SSO is enabled?

(little aside: I can't ever generate a key for the system account. clicking on it in browser, impersonating, admin profile, etc -> always adds error log message can't verify csrf token authenticity)

Posts: 1

Participants: 1

Read full topic

When resetting password, ask user to confirm

$
0
0

@nahtnam wrote:

Hey!

Discourse should always ask people to retype their password just to make sure they didint mistype it, especially when they are restting their password because its stupid for a user to have reset the password again just because they mistyped it. Also, if possible, it should display an icon when capslock is on.

Thanks.

Posts: 9

Participants: 5

Read full topic

Manually added files in uploads folder are giving 404

$
0
0

@pratyushmittal wrote:

I am trying to migrate attachements from our old forum to Discourse. However, manually uploaded files in /var/discourse/shared/standalone/uploads/ are not showing.

I have tried:

cd /var/discourse/shared/standalone/uploads/
mkdir migrated
touch migrated/hello.txt

Now opening discourse.website.com/uploads/migrated/hello.txt gives 404. It was working on the dev-server though.

Posts: 2

Participants: 2

Read full topic

Cids/app_bootstrap.cid: permission denied

$
0
0

@mottosso wrote:

I recently installed Discourse on a DigitalOcean droplet via this guide and everything has been working well.

At first I built it under a domain name that I later changed (in the app.yaml), and then bootstrapped the app again.

$ ./launcher bootstrap app

Which worked well.

Now, after a few users logged in and there are a few posts, I can't seem to bootstrap again, but get the error in the title.

marcus@node:/var/discourse$ ./launcher bootstrap app
cd /pups && git pull && /pups/bin/pups --stdin
FATA[0000] Failed to create the container ID file: open cids/app_bootstrap.cid: permission denied
cat: cids/app_bootstrap.cid: No such file or directory
docker: "rm" requires a minimum of 1 argument. See '/usr/bin/docker rm --help'.
FAILED TO BOOTSTRAP

Some details, the droplet only has 512mb of memory (I know 1gb is minimum, but I'm fine with any potential slowdown) and is running a 2gb swap.

The only thing changed in the app.yaml is the SMTP settings.

Any ideas?

Posts: 5

Participants: 3

Read full topic

Authentication and changing domain

$
0
0

@mottosso wrote:

I recently changed the domain name for my Discourse app and lost the ability to log in via GitHub.

Sorry, there was an error authorizing your account. Perhaps you did not approve authorization?

I tried revoking the app from the GitHub applications page, but nothing changed.

Is there any way to resolve this and regain the ability to login to existing accounts via GitHub?

Posts: 3

Participants: 2

Read full topic

Quoting a code block removes new lines

$
0
0

@abarker wrote:

When quoting a code block, new lines are removed from the code block. Sample cod block to be quoted below:

if (condition1)
{
    doSomething();
}
else
{
    doSomethingElse();
}

Posts: 2

Participants: 1

Read full topic

Github OAuth and disabled public user registration

$
0
0

@stroupaloop wrote:

I'm setting up OAuth (specifically Github OAuth) and have successfully created a Github app that has generated a Client ID and Secret key.

When I attempt to OAuth into my private discourse server using my Github account, I receive the following response:

I currently have public account registration disabled (how we have to set it up for our use) AND the email address I registered with is one of the emails associated with my Github account (HOWEVER it is not my primary or public github email address).

Has anyone experienced similar issues and found a resolution? Thanks!

Posts: 3

Participants: 2

Read full topic


Need proper documentation for multisite discourse with docker

$
0
0

@Pon_Athithan wrote:

Hi,
I am searching a proper documentation to create multi site in single server but still I couldn't find well defined documentation for intermediate level developer. I have tried some multisite discourse with docker articles but they haven't helped me.
1. http://www.webhostbug.com/setup-multisite-discourse/
2. http://www.pixeldigit.com/technology/linux/discourse-multisite-install/

Please create a documentation something like this https://github.com/discourse/discourse/blob/master/docs/INSTALL-cloud.md . I believe it will be a very useful documentation for most of the developers. Thank you.

Posts: 2

Participants: 2

Read full topic

Error in installing

$
0
0

@Erik_Manger wrote:

Hi,

Error response from daemon: Cannot start container app: Error starting userland proxy: listen tcp 0.0.0.0:80: bind: address already in use

What does this mean? I got it after trying to run the application.

Posts: 2

Participants: 2

Read full topic

How can I soft-delete a topic?

$
0
0

@rodrigofarcas wrote:

I can turn it invisible, close it and delete it, but how can I soft-delete it in case I need to see the content or IP of the author in the future?

Thanks!

Posts: 11

Participants: 5

Read full topic

New to ES6 plugin question

$
0
0

@rewphus wrote:

I've been trying all day to figure out how to modify an ES6 file through a plugin. I've been able to create plugins that add javascript to the pages I want, so I think I understand the basics well enough.

All I'm trying to do is change javascripts/discourse/views/topic-progress.js.es6

from:

_updateProgressBar: function() {
    // speeds up stuff, bypass jquery slowness and extra checks
    var totalWidth = this._progressWidth,
        progressWidth = this.get('controller.streamPercentage') * totalWidth;
    this._$topicProgress.find('.bg')
  .css("border-right-width", (progressWidth === totalWidth) ? "0px" : "1px")
  .width(progressWidth);
  },

to: (only change is in the last line, changing width to height)

_updateProgressBar: function() {
    // speeds up stuff, bypass jquery slowness and extra checks
    var totalWidth = this._progressWidth,
        progressWidth = this.get('controller.streamPercentage') * totalWidth;
    this._$topicProgress.find('.bg')
  .css("border-right-width", (progressWidth === totalWidth) ? "0px" : "1px")
  .height(progressWidth);
  },

Is anybody able to help a poor soul out?

Posts: 2

Participants: 2

Read full topic

Handling an Intellectual Bully

$
0
0

@AlexAB wrote:

Hey everyone, I was wondering how some of you may have "dealt" with a user who is an intellectual bully? We are a software company and have a forum for people to get support, ask questions and connect with other users. This person G is a great software user (advanced) and does post great responses to questions but is very abrasive, rude and many, many users complain about him and leave the forum because of him. Our forum has a "reputation" because of him... Any thoughts behind "banning" and "warning" users? He is a power user and usually helpful.

From some of my users: "He has appointed himself Forums Etiquette King, and is trolling around squashing posters if they do not ask questions with his perceived correctness of style, punctuation, grammar, etc."

" ....obnoxious prick. I was trying to be polite to you. Your own tirade proved my point. Your historic response to anyone that challenges you is to go off on a tirade. You are a disgrace to any open forum. I have seen time and again when your intelligence level was challenged that you resort to name calling and abuse. If anything happens to be outside your comfort zone, you rule it to be trivial."

I do like the "Official Warning" feature on the forum - is that a good first step?

When is enough, enough...? Your opinion would be greatly appreciated.

Thanks,
Alex

Posts: 16

Participants: 11

Read full topic

Messages Feature

$
0
0

@AlexAB wrote:

I send an Automatic message to all of my users, so I send out thousands (every time someone signs up they get one). But, when I want to search through messages I can't and I have to scroll and hope I find it among the thousands of automated ones...I want an easy way to search for messages - any ideas?

Thanks,
Alex

Posts: 15

Participants: 9

Read full topic

RSS issue: link must be a full and valid URL

$
0
0

@polusok wrote:

Please check it out

http://validator.w3.org/feed/check.cgi?url=https%3A%2F%2Fmeta.discourse.org%2Flatest.rss

This feed does not validate.
line 27, column 54: link must be a full and valid URL: /t/rss-issue-link-must-be-a-full/28321 (30 occurrences) [help]
          <link>/t/rss-issue-link-must-be-a-full/28321</link>
                                                      ^
line 33, column 10: url must be a full and valid URL: /t/rss-issue-link-must-be-a-full/28321.rss (30 occurrences) [help]
          <source url="/t/rss-issue-link-must-be-a-full/28321.rss">RSS issue ...
          ^

Posts: 2

Participants: 2

Read full topic


Need help customising a new discourse forum

$
0
0

@Lawal wrote:

I run an online community for mothers and mothers to be. I would like to create a forum using discourse.
I would also want to integrate the forum into my Wordpress site.
I like the New Relic Forum and Folksy Forum examples.
Can anyone please help me with this?
In your reply let me know how long it should take and pricing if possible.

Posts: 2

Participants: 2

Read full topic

Select post "post + replies" - most replies are not techically replies

$
0
0

@gingerling wrote:

Continuing the discussion from How to move posts to a new topic?:

I did this for the first time and noticed a lot of the posts which looked like replies were not in fact replies in a technical sense. So, I there is an option for "select this and all replies" but that only selected a few things, I had to select the rest as individuals. Is it possible that people are not clicking the pale blue reply button? Or am I missing something else here.

Posts: 7

Participants: 2

Read full topic

SEO for my Discourse site

$
0
0

@Assaf_N wrote:

Hi!
I have a few questions:
My Discourse site is not visible for Google at the moment..I search for the exact anchors of questions and answers on my site and i'm not able to find these on Google..

Is there anything I should do?

Posts: 1

Participants: 1

Read full topic

Have url for creating topic with specific title

$
0
0

@Rene wrote:

Hey guys,

When we release a new version of our software we need to post an announcement to our forum like I did now manually at https://discuss.gradle.org/t/gradle-2-4-released/9471

Before moving to discourse we used getsatisfaction. GS allowed us to prefil the title of a topic we create by offering a URL like this:

http://my-forum.org/gradle/topics/new?topic[subject]=Gradle+2.4+released&topic[style]=update

This allowed us an easy convenient way to create that announcement by just clicking the link from my mailbox and it guaranteed that there was no typo in the title so we could already process the url to that post. Is something similar possible with discourse?

One other question: is it safe to just link to https://discuss.gradle.org/t/gradle-2-4-released instead of https://discuss.gradle.org/t/gradle-2-4-released/9471 or can there be any trouble with this not always being support (given that the topic title is only used once)?

Posts: 3

Participants: 2

Read full topic

How can I see the IP from which a post was originated?

Viewing all 60721 articles
Browse latest View live




Latest Images