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

Can I install discourse with docker in Debian?


Error “Failed to create description for Staff category!”

$
0
0

senny wrote:

Continuing the discussion from Error "Failed to create description for Staff category!":

Continuing the discussion from Error "Failed to create description for Staff category!":

I just had this error while upgrading to 0.9.9. I am using a multisite setup and from the logs it looks like the first site migrates as expected but the second crashes.

Posts: 1

Participants: 1

Read full topic

Resend activation mail throws 404

$
0
0

Jakob Borg wrote:

Hi!

I just tried an installation of Discourse using Docker on Ubuntu LTS 12.04. Everything spins up just fine, but I had a bad email config and needed to fix that and get the activation mail for the first account resent. However, the resend action seems not to exist; the production.log says the following:

Started POST "/users/jakob@nym.se/send_activation_email" for 213.114.7.142 at 2014-03-31 06:21:25 +0000

ActionController::RoutingError (No route matches [POST] "/users/jakob@nym.se/send_activation_email"):
  config/initializers/quiet_logger.rb:10:in `call_with_quiet_assets'
  config/initializers/silence_logger.rb:19:in `call'
  lib/middleware/unicorn_oobgc.rb:95:in `process_client'

Processing by ExceptionsController#not_found as */*
  Rendered exceptions/not_found.html.erb within layouts/no_js (3.1ms)
  Rendered common/_special_font_face.html.erb (0.3ms)
  Rendered common/_discourse_stylesheet.html.erb (0.3ms)
  Rendered text template (0.0ms)
Completed 404 Not Found in 9ms (Views: 0.3ms | ActiveRecord: 1.4ms)

I tried the same operation on try.discourse.org and it seems to behave the same. Obviously I can't see the logs, but I got the initial activation mail, ignored it and went to log in anyway, clicked on "resend activation mail" when prompted and did not receive a new activation mail.

So apart from the bug report, how can I get into my new install? I assume the token I need should be in some database somewhere...?

Posts: 2

Participants: 1

Read full topic

How StackExchange works?

Private Message Button Plugin

$
0
0

Benjamin Kampmann wrote:

Heyah,

as we've chosen a discourse installation to reduce the noise that Mailing lists often create, we also encourage people to take non-public conversation into private messages only spamming those really involved. But if you want to start a private conversation, it is currently a pain in the a... So a while back (before there was this subcategory for plugin announcements) I created this nifty little plugin adding a "Private message"-button right next to the "Create Topic" button in the top bar:

It's really handy. And also a case-study on how to inject new buttons and things into existing and rendered templates.

Here's the link: https://github.com/ligthyear/discourse-plugin-pm-button

Enjoy

Posts: 1

Participants: 1

Read full topic

Preview not scrolled to the bottom with MathJax

[master] Uncategorised topics don't render

$
0
0

Benjamin Kampmann wrote:

Heyah,

upgraded to latest master this morning and wanted created a new topic for testing on my development system, not caring to set a category but suddenly after creation it didn't load anymore (like completely blank). Turns out that Em.get(undefined, 'id') does throw an Exception and for some reason topic.controller.content.category is undefined if you didn't select any category on creation. I have a UI-patch fixing it, but I wasn't sure it is allowed to be undefined in the first place (but considering that the welcome topic doesn't seem be in any..), so I wanted to report it here along side of it.

diff --git a/app/assets/javascripts/discourse/views/topic_view.js b/app/assets/javascripts/discourse/views/topic_view.js
index 7fe8d1c..0346cba 100644
--- a/app/assets/javascripts/discourse/views/topic_view.js
+++ b/app/assets/javascripts/discourse/views/topic_view.js
@@ -184,7 +184,7 @@ Discourse.TopicView = Discourse.View.extend(Discourse.Scrolling, {
     var opts = { latestLink: "<a href=\"" + Discourse.getURL("/latest") + "\">" + I18n.t("topic.view_latest_topics") + "</a>" },
         category = this.get('controller.content.category');

-    if(Em.get(category, 'id') === Discourse.Site.currentProp("uncategorized_category_id")) {
+    if(category === undefined || Em.get(category, 'id') === Discourse.Site.currentProp("uncategorized_category_id")) {
       category = null;
     }

Posts: 1

Participants: 1

Read full topic

Wrapping of many groups in user popup


One topic on our Discourse showing up empty

Get notified of new topics, but not posts

$
0
0

Sander Datema wrote:

People on my forum would like to get a mail when a new topic is made in a category. Then they can decide if they want to have a look. They don't need notifications for every new post in those topics (as is possible now).

The digest doesn't work for them, as it's only sent once a day at minimum.

Posts: 23

Participants: 7

Read full topic

Inviting users to secure topics

$
0
0

Erlend Sogge Heggen wrote:

If I invite a user to a private forum only available to a specific group, the invitee will not have access to the thread, even when following the invitation link.

Either this use case should be made possible, or it should not be possible to invite users to threads inside private forums.

Posts: 1

Participants: 1

Read full topic

Progress bar issues

$
0
0

Bill Ayakatubby wrote:

Continuing the discussion from Windows Phone IE scroll position quirks:

I'm able to reproduce the above bug report in Chrome 33 on Win 8 desktop. Post 56 is the one displayed at the top of the screen, though the top of it is scrolled off just ever so slightly. If I middle-click to open it in a new tab, the URL bar shows 56, 57 if opened in the same tab. There seems to be no difference in scroll position on same-tab vs new-tab. The first time I tried, the progress bar said 51. Now it consistently says 52.

Posts: 15

Participants: 5

Read full topic

Programmatically inviting users

$
0
0

Phil Nelson wrote:

We have a need to invite about 100 users (and eventually about 3000 more) to our discourse install, and my ruby/rails is super rough. I searched around on the forums and couldn't find a good example. How might someone invite users to the forums in an automated way, from a list or even just on the command line? I'm not even really worried about sending an invite email, but creating the user and assigning an invite code.

Posts: 9

Participants: 4

Read full topic

Support auto-highlighting for preformatted code

$
0
0

Nathan Rijksen wrote:

Highlightjs offers "auto highlighting" out of the box. It'd be nice if this functionality could be exposed to Discourse through an admin pref (eg. "Auto highlight preformatted code"). I understand this won't be relevant for all forums but for some forums (such as the one I manage) it is highly preferable.

Posts: 10

Participants: 3

Read full topic

Is there a guide on how to customize discourse (css)?

$
0
0

Juan Manuel Formoso wrote:

When I create a new customization I'm greeted with a textarea for me to input a stylesheet.

How can I see which css classes I need to define? Should I just look at the original in the codebase and change that?

Posts: 3

Participants: 3

Read full topic


Chinese search issues

$
0
0

Leung Aaron wrote:

Now the Chinese search function fails to work completely. I had tested from a previous built from Bitnami, and the search works well, but now in the 0.9.8.5 and even the 0.9.8.7 version, it is completely broken , and I could just only search by english keywords.

There is also one issue that I am very concerned about : Will there be compatibility problems if I backup from an older version, than restore to a newer version? I tried to restore from a 0.9.8.5 backup file after upgraded to 0.9.8.7 , but it seems to fail to restore successfully.

Please have a look in these matters, thanks!

Posts: 15

Participants: 4

Read full topic

Help with custom javascript

$
0
0

probus wrote:

I'm trying to setup a simple html banner with a small javascript that cycles a couple of divs around. It all works well when I initially load the page, but after opening a topic or clicking the logo to go back to home page the javascript stops executing and I'm left with a broken banner. Why does the script stop executing and how do I fix it? Can anyone help me?

I'm using Innerfade and the I put the script into the HTML head section. The actual code is in the Top of pages -section.

I don't know how to paste the code here, but you can look at a very simple example here
http://pastebin.com/1gQ3RRNw

edit. After looking into this, I think that I need to make a plugin. if so, how do I make a simple plugin that injects the javascript to every page?

Posts: 1

Participants: 1

Read full topic

Most post from private message to new private message

$
0
0

Kasper Peulen wrote:

I've some private conversation with a user and I want to spit off a part of that private conversation to make a new private conversation (where I can invite a new user). I'm able to move this private messages to a public topic, but I'm not able to move those private messages to a new private topic.

Posts: 2

Participants: 2

Read full topic

Removing the word /category/ from categories URLs?!

When you split a topic, the activity date on the new topic is not set

$
0
0

Kane York wrote:

Continuing the discussion from Every time I attach media in WordPress, a separate topic is created:

Jeff split a post from the "How do I set up the WordPress Discourse plugin" two hours ago, as you can see:

But the split topic didn't have its activity time updated:

(You can all see that's a split topic, because there's 1 post and two participants, right?)

Bug.

Posts: 1

Participants: 1

Read full topic

Viewing all 60642 articles
Browse latest View live


Latest Images