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

Hostname changed but still stuck to old in RSS feed

$
0
0

@pieterhoogenboom wrote:

Hi Discourse people,

I changed my hostname from http://forum.nomadlist.io to http://nomadforum.io in the Discourse settings, but it still shows as the old in the RSS feed http://nomadforum.io/latest.rss, as well as in the sub paths: http://nomadforum.io/user_avatar/forum.nomadlist.io/peachananr/50/165.png

How do I fix this? I'd rather not re-compile because I'm pretty noob at this and scared to lose the threads data.

Thanks!

Pieter

Posts: 4

Participants: 2

Read full topic


How to move userbar from default position?

$
0
0

@rodrigofarcas wrote:

We'd like to move userbar from the current position to a custom row we have across all the site (not just forums) which shows other things at left and user controls on right

Posts: 1

Participants: 1

Read full topic

How can I insert users details in to CRM as soon as user signup on discourse

$
0
0

@lovechopra1 wrote:

We are using a CRM which already have API for inserting leads. Now as soon as user signup on discourse I want to call CRM's insert lead API and want to insert user details like Name, Email and custom fields into CRM, please suggest how can I do this? Thanks

Posts: 1

Participants: 1

Read full topic

Granular Post Edit Time Limit

$
0
0

@Mittineague wrote:

On our forum we have had a few cases of post vandalism that required Moderators to do a bit of hoop jumping to put the topic back into it's original state.

Because members that have had a post hidden from having been Flagged now have the opportunity to correct the post after the post edit time has closed, it has been decided to try closing the window to what it was (with very few problems) at vB for many years.

AFAIK Admins and Mods are exempt from this limit, and the exemption is not based on what Group they are in.

Problem, we also have "Mentors", not full Moderators, but more than a member. For some of what they do having an extended post edit time limit would be helpful for them. eg. updating "resource" posts, correcting tutorial mistakes.

To the point, is there any way to do this without making them Moderators?

Posts: 4

Participants: 2

Read full topic

Update error "Write failed: Broken pipe"

$
0
0

@ikarus84 wrote:

I tried to update several days ago, but the updater of Discourse in the webinterface got stuck.
So I decided to delete and reinstall docker as well as the images.
I followed the installation instructions, that worked before, but now it waits endlessly and after 10 hours, it just stops:
/var/discourse$ sudo ./launcher bootstrap app

I, [2015-02-09T22:55:41.872797 #38]  INFO -- : > cd /var/www/discourse && gem update bundler
I, [2015-02-09T22:56:02.444003 #38]  INFO -- : Updating installed gems
Updating bundler
Successfully installed bundler-1.7.13
Gems updated: bundler

I, [2015-02-09T22:56:02.444568 #38]  INFO -- : > cd /var/www/discourse && chown -R discourse /var/www/discourse
I, [2015-02-09T22:56:21.247307 #38]  INFO -- :
I, [2015-02-09T22:56:21.253784 #38]  INFO -- : > cd /var/www/discourse && su discourse -c 'bundle install --deployment --verbose --without test --without development'
Write failed: Broken pipe

Could you please help me to debug the installation?

Posts: 2

Participants: 2

Read full topic

ImageMagick is not installed on my server (one more)

$
0
0

@doctorwho wrote:

Hello

On Discourse 1.2.0.beta6 (and with few other version) I've fot a problem with my Discourse installation.
I saw other topic with same problem but nothing works on my Digital Ocean hosting ...
- Try to rebuild docker container : it works ... one day ... the other day, I've to
- Try to reboot server, it's also works ... but every morning I loggin into Discourse entity, it display same problem and avatar, image resize doesn't not work anymore frowning

Also other bug is coming back : the upgrade pages gave me a blank one ... Same things, it work one day, I've to rebuild container every morning ...

Any idea dear Discourse team ?

Posts: 3

Participants: 2

Read full topic

Is it possible to make a poll where you can select more than one answer?

$
0
0

@ArsArtificia wrote:

I want to make a poll to find a date and am not sure whether it is possible with the current implementation of poll.

Posts: 2

Participants: 2

Read full topic

Unexpected ([missing {{size} value] free) in admin for uploads


Reply reminder - Remind users to reply to questions

$
0
0

@DeanMarkTaylor wrote:

Keep the conversation going within a community...

... remind users to reply to questions in topics they have participated in.

IF

  • you get a reply
  • or the post under yours in a topic "asks a question" (ends a sentence with a question mark "?")

AND

  • you haven't replied to that topic since that post

THEN

  • display a reminder or suggestion to continue the conversation - or you may have forgotten to reply to.

This feature may have to be more intelligent - but that explains the basics.

Perhaps when you have no notifications this could be displayed.

EDIT:
This could also work well for Private Messages and possibly be included in periodic emails, items that are more specific to a user are more likely to drive users back to a community.

Posts: 1

Participants: 1

Read full topic

High number of 404's / 4xx (client error)

$
0
0

@DeanMarkTaylor wrote:

Noting a high number of 404's since updating to a version with traffic stats.

Is there any way to view a list of 4xx's to diagnose any potential problem?

Posts: 5

Participants: 3

Read full topic

Can't get discourse embedded properly

$
0
0

@ArsArtificia wrote:

Hi all,
I followed @eviltrout 's awesome tutorial here http://eviltrout.com/2014/01/22/embedding-discourse.html but can't get it to work properly.

This is how it looks embedded :

<div id="discourse-comments"></div>
<script type="text/javascript">
var discourseUrl = "http://discourse.ars-artificia.com/",
discourseEmbedUrl = 'http://ars-artificia.com/Spring cleaning';
(function() {
var d = document.createElement('script'); d.type = 'text/javascript'; d.async = true;
d.src = discourseUrl + 'javascripts/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(d);})();
</script>

see https://ars-artificia.com/spring-cleaning/ for reference.
My discourse is set up accordingly. I am using ghost to host my blog - I don't get any changes.
Thanks in advance !

For reference here is how @codinghorror embedded discourse in his blog

</article>
<div id="discourse-comments"></div>
<script type="text/javascript">
      var discourseUrl = "http://discourse.codinghorror.com/",
          discourseEmbedUrl = 'http://blog.codinghorror.com/the-god-login/';

      (function() {
        var d = document.createElement('script'); d.type = 'text/javascript'; d.async = true;
          d.src = discourseUrl + 'javascripts/embed.js';
        (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(d);
      })();
    </script>
</main>

and this is my current version:

</footer>
    </article>
	<div id="discourse-comments"></div>
	<script type="text/javascript">
		var discourseUrl = "http://discourse.ars-artificia.com/",
		discourseEmbedUrl = 'https://ars-artificia.com/spring-cleaning/';
		(function() {
			var d = document.createElement('script'); d.type = 'text/javascript'; d.async = true;
			d.src = discourseUrl + 'javascripts/embed.js';
			(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(d);
		})();
	</script>

Posts: 6

Participants: 2

Read full topic

Changing First Top Menu Item to Specific Category Gives 404

$
0
0

@godmoneytrust wrote:

Continuing the discussion from Add top_menu item to specific category:

I really like the option described above to add a specifically defined category to the top menu. It works great. However, when I rearrange the top menu items under Basic Setup in the admin page and I make this category/CategoryName the first menu item so that it's the default page, Discourse can't find it. It brings me to a 404 page. When it's not the first page it and it's anywhere else in the list, it goes to the page.

The idea on how I want to use it is I want to create a category "Home" and have that category page be the default landing page for the forum. This way the first thing users have is a welcome and instructions. Many of our users are not technical and having this kind of a simple start is going to be very helpful for giving instruction and gaining engagement before they turn away.

Posts: 1

Participants: 1

Read full topic

ERROR: column topics.star_count does not exist

$
0
0

@mirza wrote:

Hello,

I am not using docker since latest version it is not supported on 6.4 Centos. I did install manually but I am having trouble to grab latest from master.

After migrate & bundle forum is not working anymore because of missing field (there is a migration which removed this field)

Has anyone run into the same problem?

Here is the detailed log

Processing by ListController#latest as HTML
PG::Error: ERROR:  column topics.star_count does not exist
LINE 1: ..." AS t0_r19, "topics"."bookmark_count" AS t0_r20, "topics"."...
                                                             ^
: SELECT  "topics"."id" AS t0_r0, "topics"."title" AS t0_r1, "topics"."last_posted_at" AS t0_r2, "topics"."created_at" AS t0_r3, "topics"."updated_at" AS t0_r4, "topics"."v$
Completed 500 Internal Server Error in 63ms

ActiveRecord::StatementInvalid (PG::Error: ERROR:  column topics.star_count does not exist
LINE 1: ..." AS t0_r19, "topics"."bookmark_count" AS t0_r20, "topics"."...
                                                             ^
: SELECT  "topics"."id" AS t0_r0, "topics"."title" AS t0_r1, "topics"."last_posted_at" AS t0_r2, "topics"."created_at" AS t0_r3, "topics"."updated_at" AS t0_r4, "topics"."v$
  app/models/topic_list.rb:25:in `topics'
  app/serializers/topic_list_serializer.rb:21:in `include_more_topics_url?'
  app/controllers/list_controller.rb:189:in `block (2 levels) in respond'
  app/controllers/list_controller.rb:186:in `respond'
  app/controllers/list_controller.rb:67:in `block (2 levels) in <class:ListController>'
  lib/middleware/anonymous_cache.rb:117:in `call'
  config/initializers/quiet_logger.rb:10:in `call_with_quiet_assets'
  config/initializers/silence_logger.rb:26:in `call'

Posts: 10

Participants: 5

Read full topic

Add option to restrict 'using group as an alias' to a specific group

$
0
0

@tobiaseigen wrote:

Right now, the permission options for using group as an alias are everyone, nobody, only moderators and admins, and only group members, moderators and admins.

This is pretty good for most forums, methinks. However, in my community we have a group that includes members of our organization's staff who are not moderators and admins. We also have more groups with subsets of staff e.g. in different offices. Members of the all staff group should be allowed to mention the subset groups, but we can't do that without giving everyone on the forum that privilege which we don't necessarily want to do.

So an added option below the pulldown with "Additionally, allow members of these groups to use this group as an alias" would be helpful.

Posts: 1

Participants: 1

Read full topic

Provide link to user preferences from user admin page

$
0
0

@tobiaseigen wrote:

Right now to get from the user admin page to the user preferences page, it's two clicks away. Would streamline things a bit to provide a link to the preferences directly on the admin page.

Posts: 5

Participants: 3

Read full topic


Oneboxing with YouTube

$
0
0

@BerryBlue wrote:

I like the feature from discourse where if you enter a link from YouTube it will embed the video.

How do you customize properties like width, height and also disabling suggested videos when it finishes?

Posts: 2

Participants: 2

Read full topic

Forum-wide Category Selection for Digest Email?

$
0
0

@sam1 wrote:

I'm trying to figure out how to 'mute' a category so that it's not included in our digest emails.

We offer customer support in our forums and threads can get very long — those threads then in turn sweep our /top list, from which I understand digest emails are generated.

Is there a setting so that a given category is not included in the digest summary emails? I'm referring, here, to the emails sent to users who have not visited or been active in X amount of time — not regular email notifications (those are fine).

Thanks for any help!

Posts: 3

Participants: 2

Read full topic

Optimal Write/Random Speeds for Dev SSD?

$
0
0

@purldator wrote:

Knowing myself, I'll probably end up getting a portable SSD setup. Not just for Discourse dev but to run Middleman locally as well.

I'm looking to use an adapter with this drive. I'm going for the 128 GB size that has the following specs: 550 MB/s sequential reads, 350 MB/s sequential writes, 90k random reads, 75k random writes.

The read speed looks optimal but unsure with the write speed, and perhaps the random speeds as well.

Just looking to see what numbers are optimal for a nice dev environment with a portable VM setup.

Posts: 11

Participants: 3

Read full topic

What is "user visits" on the admin dashboard?

$
0
0

@tobiaseigen wrote:

I am trying to understand how many people are logging into my discourse every day, and tracking that from day to day. Is that the "user visits" stat, or does that include multiple visits by the same user?

Is there a way to see who precisely has logged in on a given day?

Posts: 2

Participants: 2

Read full topic

500 error on upgrade page

$
0
0

@hunterboerner wrote:

I don't know where to find the log but when I got to blahblah.com/admin/ugprade I get a blank page and the console shows a 500 error.

Posts: 9

Participants: 3

Read full topic

Viewing all 60613 articles
Browse latest View live




Latest Images