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

User Page Period Chooser Quarterly Adjustment?


Is there a way to create a link to a position in a post?

0
0

@Drew_Warwick wrote:

Imagine I'm making a really in-depth, long how-to with multiple sections. Is there a way to create a table of contents at the top that contains links that jump to different parts of the post to allow it to be easily navigated? Sort of like how pages on wikipedia are set up.

Posts: 3

Participants: 3

Read full topic

Incorrect title on group mention desktop notification

0
0

@jomaxro wrote:

Summary:

Upon receiving a notification for a group mention, the title of the desktop notification does not work.

Steps to reproduce:

  1. Enable desktop notifications in your browser.
  2. Be part of a group that has group mentions enabled
  3. Have browser and discourse open when group is mentioned

Expected Results:

Topic where mention was generated from appears as the notification title

Actual Results:

Title does not appear, instead the following title is used:

[en.notifications.popup.group_mentioned]

Notes:

The group mentioned in this case is the built in moderators group, no idea if this is relevant. Also, group mention was part of an edit.

Attachments:

Screenshot of notification:

Link to post where group mention was made via an edit:


Link without oneboxing: http://discourse.stonehearth.net/t/the-buildings-my-hearthling-will-not-build-thread/14704/45?u=jomaxro

Versions and Mods:

Discourse 1.5.0.beta7 (discourse.stonehearth.net)

System Information:

Windows 10 Pro, Chrome Stable 47

Posts: 1

Participants: 1

Read full topic

Post a new Topic with REST - 403 Forbidden

0
0

@Aarskin wrote:

Continuing the discussion from How can we create post/topic in Discourse using API:

I'm POST-ing the following URl from Advanced REST client and getting the same error.

http://[my discourse ip]/posts.json?title="Created from the advanced REST client"&category="2"&raw="A whole bunch of text about a topic"&api_key="[key from admin tab]"&api_username="[admin username]"

I built up the URL by referencing this, this, and this (but I'm looking for a language agnostic solution). I'm hoping I missed something obvious.

Why am I getting a forbidden response as an admin user with an api key?

(Pointing me to How to reverse engineer the discourse api will not help me, I've read it twice)

Posts: 1

Participants: 1

Read full topic

Happy New Year theme

0
0

@Trash wrote:

So, do you want a Happy New Year theme?
Choose a simple theme from codpen

On my forum I use this one:

On CSS:

html {
    background-color: #ABF99D !important;
} //Add a colored background if you want//
.happy-new-year {
    background: url(https://j.gifs.com/R66WrE.gif); //I create a little .gif, but if you want you can use an image to preserv resourses//
    padding: 10px 35px;
    box-shadow: 0 0 20px 1px #F6FF00; //Delete this line if you do not want a box-shadow or change color//
    height: 140px;
    border-radius:6px; //Delete this line if you want square box//
}
.happy-new-year .hny-year {
    float: left;
    }
.happy-new-year .hny-year .hny-year-num {
    font-size: 80px;
}
.happy-new-year .hny-year .hny-year-num:nth-of-type(1) {
    color: #008F02;
}
.happy-new-year .hny-year .hny-year-num:nth-of-type(2) {
    color: #0C06F9;
}
.happy-new-year .hny-year .hny-year-num:nth-of-type(3) {
    color: #FC5A00;
}
.happy-new-year .hny-year .hny-year-num:nth-of-type(4) {
    color: #C30303;
}
.happy-new-year .hny-time {
    color: #fff;
    font-size: 17px;
    text-align: right;
    margin-top: 25px;
}
.happy-new-year .hny-time .text-year {
    font-weight: bold;
    margin-top: 25px;
    font-size: 40px;
    text-align: center;
}
.small{
            display: block;
            font-size: 20px;
            margin-top: 20px;
            text-align: center;
        }
        .color1{color: #FC5A00;}
    .color2{color: #FFF;}
.list-controls {
    padding-top: 30px;
}

On TOP:

<div data-new-year="2016" class="happy-new-year">
  <div class="hny-year animated zoomIn"></div>
  <div class="hny-time">
    <div class="animated slideInDown"><span>Missing&nbsp;</span><span class="hny-time-d"> //You can add text here//
</span><span class="hny-time-h"></span><span class="hny-time-m"></span><span class="hny-time-s"></span></div>
    <div class="text-year animated flipInX">Happy New Year  <small class="small">from <b class="color1">some text</b><b class="color2">some text</b></small></div> //Add text instead "some text" or delete this line//
  </div>
</div>

On BODY:

<script>
    $(document).ready(function() {
    $('.happy-new-year').is(function() {
        var hny_new_year = $(this).attr('data-new-year');
        var hny_text = "";
        var i;
        for (i = 0; i < hny_new_year.length; i++) {
            hny_text += '<span class="hny-year-num">' + hny_new_year[i] + '</span>';
        }
        $(this).children('.hny-year').html(hny_text);

    function newyear() {
        $('.happy-new-year').is(function() {
            var d = new Date();
            var ny = {
                d: 31, // days
                h: 24, // hours
                m: 59, // minutes
                s: 59 // seconds
            };
            var yt = {
                d: ny.d - d.getDate(),
                h: ny.h - (d.getHours() + 1),
                m: ny.m - d.getMinutes(),
                s: ny.s - d.getSeconds()
            };
            $(this).find('.hny-time-d').html(yt.d + ' days ');
            $(this).find('.hny-time-h').html(yt.h + ' hours ');
            $(this).find('.hny-time-m').html(yt.m + ' minutes ');
            $(this).find('.hny-time-s').html(yt.s + ' seconds');
        });
    }
    newyear();
    setInterval(function() {
        newyear();
    }, 1000);
});
});
</script>

Tested on Firefox and Chrome.

Screenshot:

Add this line on CSS
margin-top: 10px; (or what you want) in this element .happy-new-year .hny-year if you want lower text "2016" inside the box:

Posts: 1

Participants: 1

Read full topic

How to get cumulative read time for each day?

0
0

@Mohit_Gupta wrote:

I want the data for cumulative read time of all the users for each day. Is their any way to get this?

Posts: 1

Participants: 1

Read full topic

Show pinned posts as title only?

0
0

@ljpp wrote:

The pinned topics eat too much vertical space. On my mobile devices all I can see without scrolling in a category is 1-2 pinned topics, as the first paragraph is shown on the topic list.

Is there a way to reduce the pinned topics as title only in the topic list views, especially for mobile? I think this should be default behavior.

Posts: 1

Participants: 1

Read full topic

Solved plugin bug

0
0

@axp wrote:

Hi

I'm on latest tests-passed (1.5.0beta7 +48) discourse with latest "solved" plugin and I have some problems while creating a new category.

Steps to repro (checked that on latest stable Chrome and IE11):

  1. Create a new category
  2. Tick "Allow users to accept answers" checkbox
  3. Images and Templates after ticking are not clickable

updates: Also many elements are not clickable - search icon, hamburger menu, profile, avatars...

After trying this I get error on /logs:

4 x Uncaught Error: Property set failed: object in path "custom_fields" could not be found or was destroyed. Url: http://example.com/assets/ember_jquery-c510009d3d7cecdf3f948f54d4922d9a.js Line: 8 Column

Backtrace:

Error: Property set failed: object in path "custom_fields" could not be found or was destroyed.
    at new Error (native)
    at Error.r (http://example.com/assets/ember_jquery-c510009d3d7cecdf3f948f54d4922d9a.js:7:1941)
    at l (http://example.com/assets/ember_jquery-c510009d3d7cecdf3f948f54d4922d9a.js:8:720)
    at Object.u [as set] (http://example.com/assets/ember_jquery-c510009d3d7cecdf3f948f54d4922d9a.js:8:146)
    at e.default.s.Mixin.create.set (http://example.com/assets/ember_jquery-c510009d3d7cecdf3f948f54d4922d9a.js:11:13477)
    at set (http://example.com/assets/application-94d3f21e00d4c56244a228e913699af7.js:59:14809)
    at null.<anonymous> (http://example.com/assets/application-94d3f21e00d4c56244a228e913699af7.js:1:6056)
    at a.d._set (http://example.com/assets/ember_jquery-c510009d3d7cecdf3f948f54d4922d9a.js:6:26209)
    at a.d.set (http://example.com/assets/ember_jquery-c510009d3d7cecdf3f948f54d4922d9a.js:6:25840)
    at Object.u [as set] (http://example.com/assets/ember_jquery-c510009d3d7cecdf3f948f54d4922d9a.js:8:164)

PS: I don't have any custom fields.

Posts: 3

Participants: 2

Read full topic


Advice for bilingual communities

0
0

@Frez wrote:

First, thanks for creating Discourse. It's absolutely awesome. I love it. It's a blaze to install and a bliss to use.

I'm creating a PokémonGo (about PKMGO) community and, since I speak two languages, I would love to provide content in both of those languages.

Currently everything is in English, since the public is larger and provided my primary target are hackers and FOSS devs.

After installing and adding some content to the forum I'm still trying to figure how I could manage a bilingual community without confusing users or adding noise. I would like to avoid having to setup a different infrastructure or a forum so I can manage everything in the same place.

I'm not how to handle that situation, so all advice is welcome.

Peace :european_castle:

Ps.: Discourse install link is https://discuss.doom.team

Posts: 2

Participants: 2

Read full topic

Limited Offer: Hosted Discourse forum for only $10/month!

0
0

@michaeld wrote:

We have some unused capacity on our servers left so we're having an end of year sale.

You get 50% off on a Basic hosting package.
This means that you can get a managed hosted Discourse for only $10 per month !

Our hosting package includes:

  • Preinstalled plugins
  • Preconfigured Mandrill email sending
  • Complimentary Akismet license
  • Free and tested upgrades
  • Daily off-site backups
  • Support desk

So go to DiscourseHosting.com now and use the discount code 2015SALE when ordering.

This offer is valid until Jan 1, 2016.

Offer is valid for first time customers and for the Basic Hosting package with monthly payment only.
DiscourseHosting.com is not affiliated with Discourse.org. We're an independent company.

Posts: 1

Participants: 1

Read full topic

Number of new topics and posts by category - monthly

0
0

@charleswalter wrote:

Is there a query that can be run to get the number of topics or posts for each category? I'd like to begin merging categories, and am looking for an easy way to pull data without having to request the data category by category. Thx

Posts: 2

Participants: 2

Read full topic

Digital Ocean No Longer Works on $5 and $10 plans?

0
0

@strager wrote:

So I created a Digital Ocean account to create a quick $5 test system for an idea I have (not work related) to see if its viable. I went to create the droplet, but it now only lets you select Discourse on the $20 a month plan. Just wanted to make sure you guys knew since its still the recommended host in most of the guides.

Posts: 4

Participants: 2

Read full topic

Restarting server causes docker containers to be unresponsive

0
0

@Ghost53574 wrote:

Needless to say but I am super pissed off at Digital Ocean, not you guys.

*Forward
I was testing a firewall script that is very comprehensive, but it was dropping my ssh connection, so I would use Digital Ocean's web VNC connection to continue testing etc.

*Come a redirect command
I issued the command /usr/local/bin/iptables-cron.bash > ./log since I do not use a GUI on my webserver, honestly who does, and less was not correctly outputting stdout apparently. This caused the VNC session to loop indefinitely, and when I asked their support via a support ticket if they could do something other than restarting the server he told me to change tty sessions which didn't work because it was stuck looping.

*Regretted server restart
Since Digital Ocean support where incompetent I hastily restarted, hard reset, my server in an attempt to get ssh access again to continue my testing. I knew that doing any restart while services or programs were running would risk data corruption but I did it anyway seeing that I didn't have any other option.

*Docker container unresponsive
Thirty minutes after the server restart my website is unreachable and the container is unresponsive. Using docker stop <ID> and /var/discourse/launcher stop app both hang and do not return or execute.

Info
root@dng-dev:/var/discourse# docker info
Containers: 4
Images: 35
Storage Driver: aufs
Root Dir: /var/lib/docker/aufs
Backing Filesystem: extfs
Dirs: 43
Dirperm1 Supported: true
Execution Driver: native-0.2
Kernel Version: 3.16.0-4-amd64
Operating System: Debian GNU/Linux 8 (jessie)
CPUs: 2
Total Memory: 1.963 GiB
Name: dng-dev
ID: YW7J:D7WJ:ROML:ASQI:2UIV:WWEM:DU36:J63S:CJAP:RCMF:33AK:RAD2
WARNING: No memory limit support
WARNING: No swap limit support

Version
root@dng-dev:/var/discourse# docker --version
Docker version 1.6.2, build 7c8fca2

Process info

root@dng-dev:/var/discourse# docker ps
dd40d0e86938        local_discourse/app:latest   "/sbin/boot"        5 days ago          Up 2 hours           0.0.0.0:80->80/tcp, 0.0.0.0:443->443/tcp, 0.0.0.0:2222->22/tcp   app

Images

root@dng-dev:/var/discourse# docker images
REPOSITORY             TAG                 IMAGE ID            CREATED             VIRTUAL SIZE
local_discourse/app    latest              86248bd2f86d        5 days ago          1.91 GB
discourse/discourse    1.0.15              0706480e0511        5 weeks ago         1.265 GB
<none>                 <none>              8e76a4ddc349        8 weeks ago         1.943 GB
<none>                 <none>              fda2de8839d1        8 weeks ago         1.943 GB
<none>                 <none>              61c12c52a656        8 weeks ago         1.943 GB
<none>                 <none>              70952b600fff        8 weeks ago         1.943 GB
<none>                 <none>              03824520fcb0        8 weeks ago         1.943 GB
<none>                 <none>              234942006bd7        9 weeks ago         1.943 GB
<none>                 <none>              4c6bd5e91f1b        9 weeks ago         1.941 GB
<none>                 <none>              6ad017614911        9 weeks ago         1.941 GB
<none>                 <none>              e266990f9711        9 weeks ago         1.941 GB
<none>                 <none>              168d00eb4d44        9 weeks ago         1.941 GB
<none>                 <none>              db74005b2f8a        10 weeks ago        1.931 GB
samsaffron/discourse   1.0.13              27f52292c186        3 months ago        1.238 GB
<none>                 <none>              eaf68d116145        4 months ago        1.806 GB
hello-world            latest              af340544ed62        4 months ago        960 B
debian                 latest              9a61b6b1315e        5 months ago        125.2 MB
samsaffron/discourse   1.0.12              2285ff53ab18        7 months ago        1.217 GB

History

root@dng-dev:/var/discourse# docker history 86248bd2f86d
IMAGE               CREATED             CREATED BY                                      SIZE
86248bd2f86d        5 days ago          /bin/bash -c cd /pups && git pull && /pups/bi   645.1 MB
0706480e0511        5 weeks ago         /bin/sh -c #(nop) MAINTAINER Sam Saffron "htt   0 B
3f7b4a652638        5 weeks ago         /bin/sh -c #(nop) MAINTAINER Sam Saffron "htt   0 B
709ef95b65df        5 weeks ago         /bin/sh -c #(nop) CMD ["/bin/bash"]             0 B
93bfdb4fbb87        5 weeks ago         /bin/sh -c #(squash) from 5fe96dd0c297          415.7 MB
5fe96dd0c297        5 weeks ago         /bin/sh -c #(squash) from 0a85502c06c9          661.8 MB
2332d8973c93        6 weeks ago         /bin/sh -c #(nop) ADD file:531ac3e55db4293b8f   187.7 MB

Logs

root@dng-dev:/var/discourse# docker logs dd40d0e86938
...
39:M 26 Dec 19:43:14.016 * Background saving started by pid 23037
23037:C 26 Dec 19:43:14.056 * DB saved on disk
23037:C 26 Dec 19:43:14.057 * RDB: 1 MB of memory used by copy-on-write
39:M 26 Dec 19:43:14.116 * Background saving terminated with success
39:M 26 Dec 19:48:15.037 * 10 changes in 300 seconds. Saving...
39:M 26 Dec 19:48:15.038 * Background saving started by pid 23374
23374:C 26 Dec 19:48:15.084 * DB saved on disk
23374:C 26 Dec 19:48:15.085 * RDB: 1 MB of memory used by copy-on-write
39:M 26 Dec 19:48:15.138 * Background saving terminated with success
39:M 26 Dec 19:53:16.043 * 10 changes in 300 seconds. Saving...
39:M 26 Dec 19:53:16.045 * Background saving started by pid 23713
23713:C 26 Dec 19:53:16.085 * DB saved on disk
23713:C 26 Dec 19:53:16.087 * RDB: 1 MB of memory used by copy-on-write
39:M 26 Dec 19:53:16.145 * Background saving terminated with success
run-parts: executing /etc/runit/1.d/00-ensure-links
run-parts: executing /etc/runit/1.d/anacron
run-parts: executing /etc/runit/1.d/cleanup-pids
Cleaning stale PID files
run-parts: executing /etc/runit/1.d/copy-env
run-parts: executing /etc/runit/1.d/ensure-web-nginx-read
Started runsvdir, PID is 22
sh: echo: I/O error
fail: redis: runsv not running
rsyslogd: invalid or yet-unknown config file command 'KLogPermitNonKernelFacility' - have you forgotten to load a module? [try http://www.rsyslog.com/e/3003 ]
rsyslogd: warning: ~ action is deprecated, consider using the 'stop' statement instead [try http://www.rsyslog.com/e/2307 ]
rsyslogd: Could no open output pipe '/dev/xconsole': No such file or directory [try http://www.rsyslog.com/e/2039 ]
37:M 26 Dec 19:54:33.591 * Redis 3.0.5 (00000000/0) 64 bit, standalone mode, port 6379, pid 37 ready to start.
37:M 26 Dec 19:54:33.592 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128.
37:M 26 Dec 19:54:33.592 # Server started, Redis version 3.0.5
37:M 26 Dec 19:54:33.592 # WARNING overcommit_memory is set to 0! Background save may fail under low memory condition. To fix this issue add 'vm.overcommit_memory = 1' to /etc/sysctl.conf and then reboot or run the command 'sysctl vm.overcommit_memory=1' for this to take effect.
37:M 26 Dec 19:54:33.592 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled.
Server listening on 0.0.0.0 port 22.
Server listening on :: port 22.
37:M 26 Dec 19:54:33.749 * DB loaded from disk: 0.157 seconds
37:M 26 Dec 19:54:33.750 * The server is now ready to accept connections on port 6379
2015-12-26 19:54:33 UTC [49-1] LOG:  database system was interrupted; last known up at 2015-12-26 19:53:42 UTC
2015-12-26 19:54:33 UTC [49-2] LOG:  database system was not properly shut down; automatic recovery in progress
2015-12-26 19:54:33 UTC [49-3] LOG:  redo starts at 0/30271210
2015-12-26 19:54:33 UTC [49-4] LOG:  record with zero length at 0/302814C0
2015-12-26 19:54:33 UTC [49-5] LOG:  redo done at 0/30281490
2015-12-26 19:54:33 UTC [49-6] LOG:  last completed transaction was at log time 2015-12-26 19:53:59.344201+00
2015-12-26 19:54:33 UTC [49-7] LOG:  MultiXact member wraparound protections are now enabled
2015-12-26 19:54:33 UTC [25-1] LOG:  database system is ready to accept connections
2015-12-26 19:54:33 UTC [53-1] LOG:  autovacuum launcher started
ok: run: redis: (pid 37) 1s
ok: run: postgres: (pid 25) 1s
supervisor pid: 55 unicorn pid: 60
37:M 26 Dec 19:59:34.032 * 10 changes in 300 seconds. Saving...
37:M 26 Dec 19:59:34.033 * Background saving started by pid 455
455:C 26 Dec 19:59:34.069 * DB saved on disk
455:C 26 Dec 19:59:34.069 * RDB: 1 MB of memory used by copy-on-write
37:M 26 Dec 19:59:34.133 * Background saving terminated with success
37:M 26 Dec 20:04:35.094 * 10 changes in 300 seconds. Saving...
37:M 26 Dec 20:04:35.094 * Background saving started by pid 784
784:C 26 Dec 20:04:35.130 * DB saved on disk
784:C 26 Dec 20:04:35.131 * RDB: 1 MB of memory used by copy-on-write
37:M 26 Dec 20:04:35.194 * Background saving terminated with success
37:M 26 Dec 20:09:36.067 * 10 changes in 300 seconds. Saving...
37:M 26 Dec 20:09:36.068 * Background saving started by pid 1111
1111:C 26 Dec 20:09:36.104 * DB saved on disk
1111:C 26 Dec 20:09:36.105 * RDB: 1 MB of memory used by copy-on-write
37:M 26 Dec 20:09:36.168 * Background saving terminated with success
37:M 26 Dec 20:14:37.093 * 10 changes in 300 seconds. Saving...
37:M 26 Dec 20:14:37.094 * Background saving started by pid 1440
1440:C 26 Dec 20:14:37.133 * DB saved on disk
1440:C 26 Dec 20:14:37.134 * RDB: 1 MB of memory used by copy-on-write
37:M 26 Dec 20:14:37.194 * Background saving terminated with success
37:M 26 Dec 20:19:38.058 * 10 changes in 300 seconds. Saving...
37:M 26 Dec 20:19:38.059 * Background saving started by pid 1777
1777:C 26 Dec 20:19:38.098 * DB saved on disk
1777:C 26 Dec 20:19:38.099 * RDB: 1 MB of memory used by copy-on-write
37:M 26 Dec 20:19:38.159 * Background saving terminated with success
37:M 26 Dec 20:24:39.068 * 10 changes in 300 seconds. Saving...
37:M 26 Dec 20:24:39.068 * Background saving started by pid 2101
2101:C 26 Dec 20:24:39.103 * DB saved on disk
2101:C 26 Dec 20:24:39.104 * RDB: 1 MB of memory used by copy-on-write
37:M 26 Dec 20:24:39.168 * Background saving terminated with success
37:M 26 Dec 20:29:40.026 * 10 changes in 300 seconds. Saving...
37:M 26 Dec 20:29:40.026 * Background saving started by pid 2433
2433:C 26 Dec 20:29:40.066 * DB saved on disk
2433:C 26 Dec 20:29:40.066 * RDB: 1 MB of memory used by copy-on-write
37:M 26 Dec 20:29:40.127 * Background saving terminated with success
37:M 26 Dec 20:34:41.056 * 10 changes in 300 seconds. Saving...
37:M 26 Dec 20:34:41.057 * Background saving started by pid 2762
2762:C 26 Dec 20:34:41.094 * DB saved on disk
2762:C 26 Dec 20:34:41.095 * RDB: 1 MB of memory used by copy-on-write
37:M 26 Dec 20:34:41.157 * Background saving terminated with success
37:M 26 Dec 20:39:42.051 * 10 changes in 300 seconds. Saving...
37:M 26 Dec 20:39:42.051 * Background saving started by pid 3094
3094:C 26 Dec 20:39:42.090 * DB saved on disk
3094:C 26 Dec 20:39:42.091 * RDB: 1 MB of memory used by copy-on-write
37:M 26 Dec 20:39:42.152 * Background saving terminated with success
37:M 26 Dec 20:44:43.070 * 10 changes in 300 seconds. Saving...
37:M 26 Dec 20:44:43.070 * Background saving started by pid 3419
3419:C 26 Dec 20:44:43.107 * DB saved on disk
3419:C 26 Dec 20:44:43.107 * RDB: 1 MB of memory used by copy-on-write
37:M 26 Dec 20:44:43.171 * Background saving terminated with success
37:M 26 Dec 20:49:44.099 * 10 changes in 300 seconds. Saving...
37:M 26 Dec 20:49:44.100 * Background saving started by pid 3749
3749:C 26 Dec 20:49:44.135 * DB saved on disk
3749:C 26 Dec 20:49:44.136 * RDB: 1 MB of memory used by copy-on-write
37:M 26 Dec 20:49:44.200 * Background saving terminated with success
37:M 26 Dec 20:54:45.040 * 10 changes in 300 seconds. Saving...
37:M 26 Dec 20:54:45.041 * Background saving started by pid 4075
4075:C 26 Dec 20:54:45.082 * DB saved on disk
4075:C 26 Dec 20:54:45.083 * RDB: 1 MB of memory used by copy-on-write
37:M 26 Dec 20:54:45.141 * Background saving terminated with success
37:M 26 Dec 20:59:46.045 * 10 changes in 300 seconds. Saving...
37:M 26 Dec 20:59:46.045 * Background saving started by pid 4403
4403:C 26 Dec 20:59:46.083 * DB saved on disk
4403:C 26 Dec 20:59:46.084 * RDB: 1 MB of memory used by copy-on-write
37:M 26 Dec 20:59:46.145 * Background saving terminated with success
37:M 26 Dec 21:04:47.060 * 10 changes in 300 seconds. Saving...
37:M 26 Dec 21:04:47.061 * Background saving started by pid 4730
4730:C 26 Dec 21:04:47.097 * DB saved on disk
4730:C 26 Dec 21:04:47.098 * RDB: 1 MB of memory used by copy-on-write
37:M 26 Dec 21:04:47.161 * Background saving terminated with success
37:M 26 Dec 21:09:48.080 * 10 changes in 300 seconds. Saving...
37:M 26 Dec 21:09:48.080 * Background saving started by pid 5058
5058:C 26 Dec 21:09:48.116 * DB saved on disk
5058:C 26 Dec 21:09:48.117 * RDB: 1 MB of memory used by copy-on-write
37:M 26 Dec 21:09:48.181 * Background saving terminated with success
37:M 26 Dec 21:14:49.095 * 10 changes in 300 seconds. Saving...
37:M 26 Dec 21:14:49.095 * Background saving started by pid 5382
5382:C 26 Dec 21:14:49.132 * DB saved on disk
5382:C 26 Dec 21:14:49.132 * RDB: 1 MB of memory used by copy-on-write
37:M 26 Dec 21:14:49.195 * Background saving terminated with success
37:M 26 Dec 21:19:50.020 * 10 changes in 300 seconds. Saving...
37:M 26 Dec 21:19:50.021 * Background saving started by pid 5712
5712:C 26 Dec 21:19:50.072 * DB saved on disk
5712:C 26 Dec 21:19:50.073 * RDB: 1 MB of memory used by copy-on-write
37:M 26 Dec 21:19:50.121 * Background saving terminated with success
37:M 26 Dec 21:24:51.052 * 10 changes in 300 seconds. Saving...
37:M 26 Dec 21:24:51.053 * Background saving started by pid 6035
6035:C 26 Dec 21:24:51.099 * DB saved on disk
6035:C 26 Dec 21:24:51.100 * RDB: 1 MB of memory used by copy-on-write
37:M 26 Dec 21:24:51.153 * Background saving terminated with success
37:M 26 Dec 21:29:52.013 * 10 changes in 300 seconds. Saving...
37:M 26 Dec 21:29:52.014 * Background saving started by pid 6363
6363:C 26 Dec 21:29:52.052 * DB saved on disk
6363:C 26 Dec 21:29:52.052 * RDB: 1 MB of memory used by copy-on-write
37:M 26 Dec 21:29:52.114 * Background saving terminated with success
37:M 26 Dec 21:34:53.091 * 10 changes in 300 seconds. Saving...
37:M 26 Dec 21:34:53.092 * Background saving started by pid 6689
6689:C 26 Dec 21:34:53.137 * DB saved on disk
6689:C 26 Dec 21:34:53.138 * RDB: 1 MB of memory used by copy-on-write
37:M 26 Dec 21:34:53.192 * Background saving terminated with success
Shutting Down
run-parts: executing /etc/runit/3.d/01-nginx
ok: down: nginx: 1s, normally up
run-parts: executing /etc/runit/3.d/02-unicorn
exiting
ok: down: unicorn: 0s, normally up
run-parts: executing /etc/runit/3.d/10-redis
37:signal-handler (1451165695) Received SIGTERM scheduling shutdown...
37:M 26 Dec 21:34:55.397 # User requested shutdown...
37:M 26 Dec 21:34:55.397 * Saving the final RDB snapshot before exiting.
37:M 26 Dec 21:34:55.438 * DB saved on disk
37:M 26 Dec 21:34:55.439 # Redis is now ready to exit, bye bye...
ok: down: redis: 0s, normally up
run-parts: executing /etc/runit/3.d/99-postgres
2015-12-26 21:34:55 UTC [25-2] LOG:  received smart shutdown request
2015-12-26 21:34:55 UTC [53-2] LOG:  autovacuum launcher shutting down
2015-12-26 21:34:55 UTC [50-1] LOG:  shutting down
2015-12-26 21:34:55 UTC [50-2] LOG:  database system is shut down
ok: down: postgres: 1s, normally up
run-parts: executing /etc/runit/3.d/99-ssh
Received signal 15; terminating.
ok: down: sshd: 0s, normally up

Oh and I get this sometimes when I C^ time="2015-12-26T17:31:11-05:00" level=fatal msg="write /dev/stdout: broken pipe". Also the website is dirtnapgaming.com

Thanks and I'm going to work will read and update when I get back D:

Posts: 1

Participants: 1

Read full topic

Non-customized home view shows up occasionally on Firefox (latest)

0
0

@ljpp wrote:

My site http://tappara.co runs on Discourse beta branch (1.5 beta 7+133 as of today) and we use the @sam's Minimal Theme, plus bit of CSS tweaking of our own on top of it.

I just received a user report that the non-customized default view (Latest) can be occasianlly seen on Firefox. As I mainly use Chrome I decided to give Firefox a spin.

And voila - after some 5-10 minutes of surfing on the site, I am presented with a home/Latest view with non customized columns. Refreshing the browser caused it to revert back to customized view. It is possible that I have used Firefox on the site prior and after applying the customization and this sounds hell of a lot like a caching issue. Also its worth mentioning that I do use CloudFlare.

I have not seen this on Chrome, which I use to spend hours on the site every day. Anyone seen similar?

Posts: 2

Participants: 2

Read full topic

Can we use parse.com login feature along with Discourse?


Mark as Read button missing from profile notifications page

0
0

@cpradio wrote:

After the redesign of the profile page navigation, the mark as read button has disappeared. There are still a few notifications that can't be cleared (look at my profile for an example) so the button is still of use.

Posts: 2

Participants: 2

Read full topic

Admin log errors

0
0

@jomaxro wrote:

Summary:

While reviewing the admin logs this morning, I noticed some strange lines, that appear to be incorrect text, missing users, and even incorrect actions.

Steps to reproduce:

Unknown.

Expected Results:

All logs have a Staff User and Action listed, that match the action taken and are listed in plain English.

Actual Results:

Some lines have no staff user, some actions appear incorrect, and some are not proper text.

Here are some of the strange things:

  1. [en.admin.logs.staff_actions.actions.reviewed_post] is listed as an action for a large number of lines
  2. Someone (no Staff User listed) did a revoke badge action on a seemingly random assortment of users between 6 and 21 days ago. No context is listed and the Detail simply shows:
    New: 1
    Previous: 0
  3. The system Staff User is listed as taking the check email Action on what appears is supposed to be delete post based on the context listed (Post ID and the following raw text: raw: (post withdrawn by author, will be automatically deleted in 24 hours unless flagged))

Notes:

Have not reviewed logs in a while, possible this was affected by the updated from beta 6 to beta 7, but I am unsure.

Attachments:

For privacy reasons, will not post screenshots here. Discourse devs should have access to site and can see logs for themselves.

Versions and Mods:

Discourse 1.5.0.beta7 (discourse.stonehearth.net)

System Information:

Windows 10 Pro, Chrome Stable 47

Posts: 1

Participants: 1

Read full topic

Deactivating users permanently

0
0

@skoota wrote:

Hi all,

I am using Discourse as a discussion platform for my students and classes. We are now approaching the beginning of another school year, so I need to deactivate the accounts of students who are no longer studying the courses (and should no longer have access to the forum).

I can't delete the users, as that would require all their posts to be deleted (and I want to maintain a full history of previous threads, and if posts disappeared it would make the threads quite jumpy).

However, I need some way of preventing those users from logging in and using the system, and also from receiving any emails (e.g. if they are mentioned, digest emails, etc.).

So, I wanted to ask what are my options here? The closest seems to be suspending the user for a long period of time (like 10 years) but is there a better and neater way? Would the suspended users still receive emails from the system?

Thanks!

Posts: 2

Participants: 2

Read full topic

Mentioning problem with short usernames

0
0

@rumpelsepp wrote:

I have a user who has a username of one character (f). Since Discourse 1.5.betaX mentioning that user with @f does not work anymore. I can remember that it worked in Discourse 1.4.X.

Posts: 2

Participants: 2

Read full topic

Sharing image posted on discourse to facebook didn't display a thumbnail

Viewing all 60309 articles
Browse latest View live




Latest Images