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

Subcategory with topics

$
0
0

@Nick_Ritson wrote:

Sorry if this brought up already, i looked around the help guides and forum but didnt quite get an answer.
I created a few categories eg game1, game2, game3 etc but is it possible to inside those categories create a subcategory with topics. it mentioned categories could be 2 levels deep.if possible how would this be done? all i saw was an option for topics in the first category.

Posts: 2

Participants: 2

Read full topic


My pluggin codes runs just once!(My own script shouldn't be cached)

$
0
0

@Alavi1412 wrote:

Hi.
I wrote a plugin and I run my code. my code run just for the first page of my website.even if it is a simple alert.for example if you open front page and go to categories page the alert doesn't work on new page.

Posts: 2

Participants: 2

Read full topic

How to clean staff action logs?

$
0
0

@bek wrote:

Hey!

Is it possible to clean staff action logs? Immh, or is there any option like "delete staff actions whichs older than 30 days" ?

:love_letter:

Posts: 6

Participants: 4

Read full topic

Auto purge uploads from old deleted posts

$
0
0

@MerryMinstrel wrote:

Discourse already automatically removes orphan unreferenced uploads. Why not expand this functionality and erase uploads from deleted posts? Only staff members are able to see deleted posts and that is very useful. But is it really necessary to keep all the files indefinitely? As administrator I really don`t care about 2 years old deleted pictures. Some of which may even be right out against site guidelines.

It would be nice if Discourse would automatically delete these kind old files and place some kind of text block in the place of deleted file. So that it would be evident that file deletion has taken place.

For example all year old uploads which are referenced only in deleted posts would be automatically deleted.

Posts: 1

Participants: 1

Read full topic

Google Translate shows "blank" page

$
0
0

@uwe_keim wrote:

My goal is to send some English-speaking people a link to view the one or another topic on my forum, even if it is only auto-translated.

So I tried Google Translate on my German page:

+http://entwicklergate.de/t/php-laravel-mit-visual-studio-debuggen/159

It generates me this URL:

+http://translate.google.de/translate?hl=de&sl=de&tl=en&u=http%3A%2F%2Fentwicklergate.de%2Ft%2Fphp-laravel-mit-visual-studio-debuggen%2F159&sandbox=1

(I've added this + to prevent the preview here)

The "blank" page looks like this:

I've checked in different browser, with the same result.

I've also tried Bing Translator:

+http://www.microsofttranslator.com/bv.aspx?from=&to=en&a=http%3A%2F%2Fentwicklergate.de%2Ft%2Fphp-laravel-mit-visual-studio-debuggen%2F159

With a similar result:

My questions

  • Am I doing something wrong here?
  • Is this a known issue?
  • Any workaround?

Posts: 6

Participants: 4

Read full topic

Tag Picker: CSS Help Needed with Tag Background/Hover Background Color

$
0
0

@LilTrashPanda wrote:

Hi everyone,

Please move this post if it's not in the correct category; didn't see one specific to CSS help, so I just stuck it here.

I'm having trouble with finding the CSS related to the hover background of the tag selector and the actual tag background colors, too. Right now, the background color is #ffffff and so is the text, so it's impossible to see what the tag is.

Additionally, the background hover is this strange green color that I've never set anywhere else, and trying to track down the CSS for it has been a nightmare. I always think I'm going down the right path but nothing actually changes it.

I'm very new to CSS, so any pointers in how I can update this would be great (with the priority being the tag background colors so they're legible). Thanks!

Posts: 4

Participants: 2

Read full topic

Up-to-date place for integrating discourse with a current site

$
0
0

@timpone wrote:

I have a site at say domain.com and we'd like to add a discourse message board. Is it possible to have our current user database be imported and updated with an instance of discourse. We are a rails site and allow sign up via has_secure_password and fb. If there's an up-to-date link describing more info / pros and cons, that would be great.

Possibly an api endpoint where we can post new users and auth information and also delete users.

thx

Posts: 2

Participants: 2

Read full topic

Help to remove top space above custom header - need CSS advice


Importing from FluxBB

$
0
0

@vinothkannans wrote:

I created a migration script to import FluxBB database into Discourse. Now I'm going to explain how to do the import process in a step-by-step tutorial.

What data can be imported?

  • Users
  • Groups
  • Categories
  • Topics
  • Posts
  • Suspended users

Before starting the migration, set a development environment on your machine (or inside a virtual machine) . See the OS X or Ubuntu installation guide for development.

I used Ubuntu 16.04 LTS amd64 xenial image. I recommending using Ruby version 2.3.0 or above (at least 2.0.0). Because I had some compatability issues when installing mysql2 with older versions of Ruby.

To check Ruby version enter the command below

ruby -v

Mysql

Now we need mysql2 gem for ruby to connect with our old FluxBB database. Run the below commands to install libmysqlclient-dev dependency & mysql2 gem.

sudo apt-get update
sudo apt-get upgrade
sudo apt-get install libmysqlclient-dev
gem install mysql2

(optional) Importing MySQL dump into localhost

To install MySQL client and import mysql dump file (.sql) to your development machine follow the instructions below

sudo apt-get install mysql-server-5.5 mysql-client-5.5

Create MySQL user, grants and table

mysql -u root -p mysql
mysql> CREATE USER 'fluxbb'@'localhost' IDENTIFIED BY 'fluxbb';
Query OK, 0 rows affected (0.00 sec)
.
mysql> CREATE DATABASE fluxbb;
Query OK, 1 row affected (0.01 sec)
.
mysql> GRANT ALL PRIVILEGES ON fluxbb.* TO 'fluxbb'@'localhost';
Query OK, 0 rows affected (0.00 sec)
.
mysql> FLUSH PRIVILEGES;
Query OK, 0 rows affected (0.00 sec)
.
mysql> exit

Import your FluxBB database dump file

mysql -u fluxbb -p fluxbb < myfluxbb.sql

BBcode to Markdown

Discourse uses Markdown while FluxBB use BBCode. So we have to convert bbcodes to markdown in all posts. For that we are going to use the nlalonde/ruby-bbcode-to-md gem. Follow the steps below to install the ruby-bbcode-to-md gem.

cd
git clone https://github.com/nlalonde/ruby-bbcode-to-md.git
cd ruby-bbcode-to-md
gem build ruby-bbcode-to-md.gemspec
gem install ruby-bbcode-to-md-*.gem

After the successful installation of both mysql2 and ruby-bbcode-to-md go to your Discourse installation path and open Gemfile to edit.

cd ~/discourse
sudo nano Gemfile

Now insert the lines below at the end of the file to add mysql2 and ruby-bbcode-to-md gems to Discourse.

gem 'mysql2'
gem 'ruby-bbcode-to-md'

Before running the import script, paste these lines one by one into your shell. (use arrow keys to edit the values)

export FLUXBB_HOST="localhost"
export FLUXBB_DB="fluxbb"
export FLUXBB_USER="root"
export FLUXBB_PW=""
export FLUXBB_PREFIX=""

Now it's time to run the import script. Run the below command to start migration.

bundle exec ruby script/import_scripts/fluxbb.rb bbcode-to-md

Wait until the import is done. You can restart it if it slows down to a crawl.

After all congratulations! Your database successfully migrated from FluxBB to Discourse :thumbsup:

Start your Discourse instance:

bundle exec rails server

Start Sidekiq and let it do its work:

bundle exec sidekiq -q critical,4 -q default,2 -q low

Depending on your forum size this can take a long time. You can monitor the progress at http://localhost:3000/sidekiq

Now take a backup from admin page /admin/backups and import it in your live Discourse website.

Posts: 1

Participants: 1

Read full topic

I just have this feature idea (disallow duplicate posts)

Site unreachable after adding RapidSSL certificate

$
0
0

@Harkirat_Singh wrote:

We added a wildcard SSL certificate, and the site suddenly stopped working:

when we rebuild the app, it closes the setup process with the following message:

+ /usr/bin/docker run -d --restart=always -e LANG=en_US.UTF-8 -e RAILS_ENV=production -e UNICORN_WORKERS=2 -e UNICORN_SIDEKIQS=1 -e RUBY_GLOBAL_METHOD_CACHE_SIZE=131072 -e DISCOURSE_DB_SOCKET=/var/run/postgresql -e DISCOURSE_DB_HOST= -e DISCOURSE_DB_PORT= -e DISCOURSE_HOSTNAME=know.itpreneurs.com -e DISCOURSE_DEVELOPER_EMAILS=REMOVED_DELIBERATELY -e DISCOURSE_SMTP_ADDRESS=REMOVED_DELIBERATELY -e DISCOURSE_SMTP_PORT=REMOVED_DELIBERATELY -e DISCOURSE_SMTP_USER_NAME= -e DISCOURSE_SMTP_PASSWORD= -h ip-1REMOVED_DELIBERATELY-app -e DOCKER_HOST_IP=172.17.0.1 --name app -t -p 80:80 -p 443:443 -v /var/discourse/shared/standalone:/shared -v /var/discourse/shared/standalone/log/var-log:/var/log --mac-address 02:4c:0d:2d:63:7e local_discourse/app /sbin/boot
4f22a9c6b677d112987c10becc914251db758fe27cee6937b39a132298f39755

I have commented out all https commands in app.yml and removed plugins... still nothing's working

HELP!!!

Posts: 3

Participants: 4

Read full topic

Cannot access /admin

$
0
0

@Nick_Ritson wrote:

I set this up over the weekend and from the browser always added /admin to get into the admin panel however this morning i tried it and got and error saying page doesnt exist or is private.

any idea how to get back in?

Posts: 8

Participants: 3

Read full topic

Oembed Reddit and Quora, possible?

$
0
0

@Chopper wrote:

Is this possible to oembed a reddit post or quora post like stackoverflow ?

Posts: 3

Participants: 2

Read full topic

Site is unresponsive... how can i download backups for a fresh install?

$
0
0

@Harkirat_Singh wrote:

I have lost all http/https connectivity to my site... multiple ./launcer rebuild app commands are not helping... I have tried removing every additional thing from app.yml and still no luck... how can I download a backup (SCP perhaps) and from where?

Posts: 2

Participants: 2

Read full topic

Announcing v1.0 of WP Discourse

$
0
0

@erlend_sh wrote:

Originally published at: http://blog.discourse.org/2016/10/announcing-v1-0-of-wp-discourse/

We are pleased to announce the v1.0 release of WP Discourse, our official WordPress plugin. A huge thanks goes out to Simon Cossar who spearheaded this push towards a stable release. We’d also like to thank Ben Word who’s been graciously maintaining the plugin since its early inception. If you haven’t heard about WP Discourse…

Posts: 1

Participants: 1

Read full topic


Anonymous forum mod request

$
0
0

@Jose_Berengueres wrote:

What would you like done?
Hi,
I need someone to modify Discourse (ruby) to allow:
- SSO from sharepoint,

the logged user should be also able to:
- default posting set to anonymous
- the post display sharepoint's "Department name" instead of the user name.
- allow only one post per day max
- allow any number of comments to Questions per day
- cannot see the posts if he is not logged in
- email always hidden
- Discourse does not send emails to users in any case.

More details:
This work is for UAE University. We want to make a forum where users from our Sharepoint system sign on to a forum where they can give suggestions and comments about the uni anonymously. To do that I was thinking of modifying Discourse. However, we need to find a cloud hosting service that will allow to host the modified Discourse version. So, we also need a
- porposal/advice on the hosting.

The whole idea is to make an anonymous forum but where the user authentication is done via a seamless SSO from our uni's Sharepoint.

When do you need it done?
2-3 weeks
What is your budget, in $ USD that you can offer for this task? $500 >

Posts: 2

Participants: 2

Read full topic

Failed to bootstrap while rebuilding a contrainer

$
0
0

@Alankrit_Choudh wrote:

 create mode 100644 test/javascripts/mdtest/mdtest.js.es6.erb
 delete mode 100644 vendor/assets/javascripts/md5.js
 create mode 100755 vendor/assets/javascripts/sweetalert.js
 create mode 100644 vendor/assets/javascripts/xss.min.js

I, [2016-10-10T13:16:09.525055 #18]  INFO -- : > cd /var/www/discourse && git fetch origin tests-passed
From https://github.com/discourse/discourse
 * branch            tests-passed -> FETCH_HEAD
I, [2016-10-10T13:16:10.786864 #18]  INFO -- :
I, [2016-10-10T13:16:10.787114 #18]  INFO -- : > cd /var/www/discourse && git checkout tests-passed
Switched to a new branch 'tests-passed'
I, [2016-10-10T13:16:11.502682 #18]  INFO -- : Branch tests-passed set up to track remote branch tests-passed from origin.

I, [2016-10-10T13:16:11.503037 #18]  INFO -- : > cd /var/www/discourse && mkdir -p tmp/pids
I, [2016-10-10T13:16:11.508266 #18]  INFO -- :
I, [2016-10-10T13:16:11.508466 #18]  INFO -- : > cd /var/www/discourse && mkdir -p tmp/sockets
I, [2016-10-10T13:16:11.512108 #18]  INFO -- :
I, [2016-10-10T13:16:11.512262 #18]  INFO -- : > cd /var/www/discourse && touch tmp/.gitkeep
I, [2016-10-10T13:16:11.515699 #18]  INFO -- :
I, [2016-10-10T13:16:11.515854 #18]  INFO -- : > cd /var/www/discourse && mkdir -p                    /shared/log/rails
I, [2016-10-10T13:16:11.519407 #18]  INFO -- :
I, [2016-10-10T13:16:11.519587 #18]  INFO -- : > cd /var/www/discourse && bash -c "touch -a           /shared/log/rails/{production,production_errors,unicorn.stdout,unicorn.stderr}.log"
I, [2016-10-10T13:16:11.525216 #18]  INFO -- :
I, [2016-10-10T13:16:11.525405 #18]  INFO -- : > cd /var/www/discourse && bash -c "ln    -s           /shared/log/rails/{production,production_errors,unicorn.stdout,unicorn.stderr}.log /var/www/discourse/log"
I, [2016-10-10T13:16:11.531215 #18]  INFO -- :
I, [2016-10-10T13:16:11.531365 #18]  INFO -- : > cd /var/www/discourse && bash -c "mkdir -p           /shared/{uploads,backups}"
I, [2016-10-10T13:16:11.537118 #18]  INFO -- :
I, [2016-10-10T13:16:11.537312 #18]  INFO -- : > cd /var/www/discourse && bash -c "ln    -s           /shared/{uploads,backups} /var/www/discourse/public"
I, [2016-10-10T13:16:11.543240 #18]  INFO -- :
I, [2016-10-10T13:16:11.543425 #18]  INFO -- : > cd /var/www/discourse && chown -R discourse:www-data /shared/log/rails /shared/uploads /shared/backups
I, [2016-10-10T13:16:11.611411 #18]  INFO -- :
I, [2016-10-10T13:16:11.612132 #18]  INFO -- : Replacing # redis with sv start redis || exit 1 in /etc/service/unicorn/run
I, [2016-10-10T13:16:11.613603 #18]  INFO -- : > cd /var/www/discourse/plugins && git clone https://github.com/discourse/docker_manager.git
Cloning into 'docker_manager'...
I, [2016-10-10T13:16:13.386653 #18]  INFO -- :
I, [2016-10-10T13:16:13.387184 #18]  INFO -- : > cd /var/www/discourse/plugins && git clone https://github.com/discourse/discourse-spoiler-alert.git
Cloning into 'discourse-spoiler-alert'...
I, [2016-10-10T13:16:14.439162 #18]  INFO -- :
I, [2016-10-10T13:16:14.439917 #18]  INFO -- : > cd /var/www/discourse/plugins && git clone https://github.com/team-melbourne-rgsoc2015/discourse-adplugin.git
Cloning into 'discourse-adplugin'...
I, [2016-10-10T13:16:15.562106 #18]  INFO -- :
I, [2016-10-10T13:16:15.562357 #18]  INFO -- : > cd /var/www/discourse/plugins && git clone https://github.com/iunctis/discourse-formatting-toolbar.git
Cloning into 'discourse-formatting-toolbar'...
I, [2016-10-10T13:16:16.839426 #18]  INFO -- :
I, [2016-10-10T13:16:16.839797 #18]  INFO -- : > cd /var/www/discourse/plugins && git clone https://github.com/discourse/discourse-canned-replies.git
Cloning into 'discourse-canned-replies'...
I, [2016-10-10T13:16:18.994865 #18]  INFO -- :
I, [2016-10-10T13:16:18.995191 #18]  INFO -- : > cd /var/www/discourse/plugins && git clone https://github.com/discourse/discourse-cakeday.git
Cloning into 'discourse-cakeday'...
I, [2016-10-10T13:16:20.182747 #18]  INFO -- :
I, [2016-10-10T13:16:20.184307 #18]  INFO -- : > cp /var/www/discourse/config/nginx.sample.conf /etc/nginx/conf.d/discourse.conf
I, [2016-10-10T13:16:20.190201 #18]  INFO -- :
I, [2016-10-10T13:16:20.190682 #18]  INFO -- : > rm /etc/nginx/sites-enabled/default
I, [2016-10-10T13:16:20.193718 #18]  INFO -- :
I, [2016-10-10T13:16:20.194034 #18]  INFO -- : > mkdir -p /var/nginx/cache
I, [2016-10-10T13:16:20.197444 #18]  INFO -- :
I, [2016-10-10T13:16:20.198060 #18]  INFO -- : Replacing pid /run/nginx.pid; with daemon off; in /etc/nginx/nginx.conf
I, [2016-10-10T13:16:20.199172 #18]  INFO -- : Replacing (?m-ix:upstream[^\}]+\}) with upstream discourse { server 127.0.0.1:3000; } in /etc/nginx/conf.d/discourse.conf
I, [2016-10-10T13:16:20.200266 #18]  INFO -- : Replacing (?-mix:server_name.+$) with server_name _ ; in /etc/nginx/conf.d/discourse.conf
I, [2016-10-10T13:16:20.200828 #18]  INFO -- : Replacing (?-mix:client_max_body_size.+$) with client_max_body_size $upload_size ; in /etc/nginx/conf.d/discourse.conf
I, [2016-10-10T13:16:20.201848 #18]  INFO -- : > echo "done configuring web"
I, [2016-10-10T13:16:20.204631 #18]  INFO -- : done configuring web

I, [2016-10-10T13:16:20.205142 #18]  INFO -- : > cd /var/www/discourse && gem update bundler
I, [2016-10-10T13:16:23.855426 #18]  INFO -- : Updating installed gems
Updating bundler
Successfully installed bundler-1.13.2
Gems updated: bundler

I, [2016-10-10T13:16:23.855667 #18]  INFO -- : > cd /var/www/discourse && chown -R discourse /var/www/discourse
I, [2016-10-10T13:16:27.597339 #18]  INFO -- :
I, [2016-10-10T13:16:27.598866 #18]  INFO -- : > cd /var/www/discourse && su discourse -c 'bundle install --deployment --verbose --without test --without development'
I, [2016-10-10T13:16:31.112898 #18]  INFO -- : Running `bundle install --deployment --verbose --without "development"` with bundler 1.13.2
Found no changes, using resolution from the lockfile
HTTP GET https://index.rubygems.org/versions
HTTP 200 OK https://index.rubygems.org/versions
Fetching gem metadata from https://rubygems.org/
Looking up gems ["rake", "i18n", "json", "minitest", "thread_safe", "tzinfo", "activesupport", "builder", "erubis", "mini_portile2", "pkg-config", "nokogiri", "rails-deprecated_sanitizer", "rails-dom-testing", "loofah", "rails-html-sanitizer", "actionview", "rack", "rack-test", "actionpack", "globalid", "activejob", "mime-types", "mail", "actionmailer", "activemodel", "active_model_serializers", "arel", "activerecord", "jmespath", "aws-sdk-core", "aws-sdk-resources", "aws-sdk", "babel-source", "execjs", "babel-transpiler", "ember-source", "barber", "byebug", "certified", "coderay", "concurrent-ruby", "connection_pool", "crass", "daemons", "diff-lcs", "thor", "railties", "discourse-qunit-rails", "discourse_fastimage", "docile", "unf_ext", "unf", "domain_name", "email_reply_trimmer", "ember-data-source", "sprockets", "ember-handlebars-template", "jquery-rails", "ember-rails", "eventmachine", "excon", "exifr", "fabrication", "fakeweb", "multipart-post", "faraday", "fast_blank", "rake-compiler", "fast_xor", "fast_xs", "ffi", "flamegraph", "fspath", "sorcerer", "given_core", "guess_html_encoding", "hashie", "highline", "hiredis", "htmlentities", "http-cookie", "http_accept_language", "image_size", "in_threads", "progress", "image_optim", "jwt", "kgio", "libv8", "listen", "logster", "lru_redux", "memory_profiler", "message_bus", "metaclass", "method_source", "mini_racer", "mocha", "mock_redis", "moneta", "msgpack", "multi_json", "multi_xml", "mustache", "netrc", "nokogumbo", "oauth", "oauth2", "oj", "omniauth", "omniauth-oauth2", "omniauth-facebook", "omniauth-github-discourse", "omniauth-google-oauth2", "omniauth-instagram", "omniauth-oauth", "ruby-openid", "rack-openid", "omniauth-openid", "omniauth-twitter", "onebox", "redis", "openid-redis-store", "pg", "slop", "pry", "pry-nav", "pry-rails", "puma", "r2", "rack-mini-profiler", "rack-protection", "sprockets-rails", "rails", "rails-observers", "rails_multisite", "raindrops", "rb-fsevent", "rb-inotify", "trollop", "rbtrace", "redis-namespace", "rest-client", "rinku", "rmmseg-cpp", "rspec-support", "rspec-core", "rspec-expectations", "rspec-mocks", "rspec", "rspec-given", "rspec-html-matchers", "rspec-rails", "rtlit", "ruby-readability", "sanitize", "sass", "tilt", "sass-rails", "seed-fu", "shoulda-context", "shoulda-matchers", "shoulda", "sidekiq", "sidekiq-statistic", "simple-rss", "simplecov-html", "simplecov", "sinatra", "spork", "spork-rails", "stackprof", "thin", "timecop", "uglifier", "unicorn"]
HTTP GET https://index.rubygems.org/info/rake
HTTP GET https://index.rubygems.org/info/i18n
HTTP GET https://index.rubygems.org/info/json
HTTP GET https://index.rubygems.org/info/minitest
HTTP GET https://index.rubygems.org/info/thread_safe
HTTP GET https://index.rubygems.org/info/tzinfo
HTTP GET https://index.rubygems.org/info/activesupport
HTTP GET https://index.rubygems.org/info/builder
HTTP GET https://index.rubygems.org/info/erubis
HTTP GET https://index.rubygems.org/info/mini_portile2
HTTP GET https://index.rubygems.org/info/pkg-config
HTTP GET https://index.rubygems.org/info/nokogiri
HTTP GET https://index.rubygems.org/info/rails-deprecated_sanitizer
HTTP GET https://index.rubygems.org/info/rails-dom-testing
HTTP GET https://index.rubygems.org/info/loofah
HTTP GET https://index.rubygems.org/info/rails-html-sanitizer
HTTP GET https://index.rubygems.org/info/actionview
HTTP GET https://index.rubygems.org/info/rack
HTTP GET https://index.rubygems.org/info/rack-test
HTTP GET https://index.rubygems.org/info/actionpack
HTTP GET https://index.rubygems.org/info/globalid
HTTP GET https://index.rubygems.org/info/activejob
HTTP GET https://index.rubygems.org/info/mime-types
HTTP GET https://index.rubygems.org/info/mail
HTTP GET https://index.rubygems.org/info/actionmailer
HTTP 200 OK https://index.rubygems.org/info/json
HTTP 200 OK https://index.rubygems.org/info/activesupport
HTTP 200 OK https://index.rubygems.org/info/rails-html-sanitizer
HTTP 200 OK https://index.rubygems.org/info/loofah
HTTP 200 OK https://index.rubygems.org/info/actionpack
HTTP 200 OK https://index.rubygems.org/info/rails-dom-testing
HTTP 200 OK https://index.rubygems.org/info/rails-deprecated_sanitizer
HTTP 200 OK https://index.rubygems.org/info/i18n
HTTP 200 OK https://index.rubygems.org/info/erubis
HTTP 200 OK https://index.rubygems.org/info/actionview
HTTP 200 OK https://index.rubygems.org/info/rack
HTTP 200 OK https://index.rubygems.org/info/rack-test
HTTP 200 OK https://index.rubygems.org/info/pkg-config
HTTP 200 OK https://index.rubygems.org/info/tzinfo
HTTP 200 OK https://index.rubygems.org/info/nokogiri
HTTP 200 OK https://index.rubygems.org/info/globalid
HTTP 200 OK https://index.rubygems.org/info/mini_portile2
HTTP 200 OK https://index.rubygems.org/info/thread_safe
HTTP 200 OK https://index.rubygems.org/info/mail
HTTP 200 OK https://index.rubygems.org/info/minitest
HTTP 200 OK https://index.rubygems.org/info/mime-types
HTTP GET https://index.rubygems.org/info/activemodel
HTTP GET https://index.rubygems.org/info/active_model_serializers
HTTP GET https://index.rubygems.org/info/arel
HTTP GET https://index.rubygems.org/info/activerecord
HTTP 200 OK https://index.rubygems.org/info/actionmailer
HTTP GET https://index.rubygems.org/info/i18n
HTTP 200 OK https://index.rubygems.org/info/builder
HTTP 200 OK https://index.rubygems.org/info/rake
HTTP 200 OK https://index.rubygems.org/info/activejob
HTTP GET https://index.rubygems.org/info/jmespath
HTTP GET https://index.rubygems.org/info/aws-sdk-core
HTTP GET https://index.rubygems.org/info/aws-sdk-resources
HTTP GET https://index.rubygems.org/info/aws-sdk
HTTP GET https://index.rubygems.org/info/babel-source
HTTP GET https://index.rubygems.org/info/pkg-config
HTTP GET https://index.rubygems.org/info/execjs
HTTP GET https://index.rubygems.org/info/babel-transpiler
HTTP GET https://index.rubygems.org/info/rack-test
HTTP GET https://index.rubygems.org/info/nokogiri
HTTP GET https://index.rubygems.org/info/mini_portile2
HTTP GET https://index.rubygems.org/info/ember-source
HTTP GET https://index.rubygems.org/info/barber
HTTP GET https://index.rubygems.org/info/byebug
HTTP GET https://index.rubygems.org/info/mime-types
HTTP GET https://index.rubygems.org/info/certified
HTTP 200 OK https://index.rubygems.org/info/arel
HTTP 200 OK https://index.rubygems.org/info/activemodel
HTTP 200 OK https://index.rubygems.org/info/active_model_serializers
HTTP 200 OK https://index.rubygems.org/info/i18n
HTTP 200 OK https://index.rubygems.org/info/activerecord
HTTP GET https://index.rubygems.org/info/coderay
HTTP GET https://index.rubygems.org/info/concurrent-ruby
HTTP 200 OK https://index.rubygems.org/info/jmespath
HTTP 200 OK https://index.rubygems.org/info/aws-sdk-core
HTTP 200 OK https://index.rubygems.org/info/aws-sdk-resources
HTTP 200 OK https://index.rubygems.org/info/certified
HTTP 200 OK https://index.rubygems.org/info/aws-sdk
HTTP 200 OK https://index.rubygems.org/info/pkg-config
HTTP GET https://index.rubygems.org/info/connection_pool
HTTP 200 OK https://index.rubygems.org/info/babel-transpiler
HTTP GET https://index.rubygems.org/info/arel
HTTP 200 OK https://index.rubygems.org/info/barber
HTTP 200 OK https://index.rubygems.org/info/mini_portile2
HTTP 200 OK https://index.rubygems.org/info/execjs
HTTP GET https://index.rubygems.org/info/crass
HTTP 200 OK https://index.rubygems.org/info/ember-source
HTTP GET https://index.rubygems.org/info/daemons
HTTP 200 OK https://index.rubygems.org/info/nokogiri
HTTP GET https://index.rubygems.org/info/active_model_serializers
HTTP 200 OK https://index.rubygems.org/info/mime-types
HTTP 200 OK https://index.rubygems.org/info/babel-source
HTTP 200 OK https://index.rubygems.org/info/byebug
HTTP 200 OK https://index.rubygems.org/info/rack-test
HTTP GET https://index.rubygems.org/info/diff-lcs
HTTP GET https://index.rubygems.org/info/certified
HTTP GET https://index.rubygems.org/info/aws-sdk-resources
HTTP GET https://index.rubygems.org/info/jmespath
HTTP GET https://index.rubygems.org/info/thor
HTTP GET https://index.rubygems.org/info/railties
Retrying fetcher due to error (2/4): Bundler::HTTPError The checksum of /info/i18n does not match the checksum provided by the server! Something is wrong (local checksum is "\"592a48ff848b8aa9e20c1f29ff264bf4\"", was expecting "W/\"592a48ff848b8aa9e20c1f29ff264bf4\"").
HTTP 200 OK https://index.rubygems.org/info/concurrent-ruby
HTTP GET https://index.rubygems.org/info/discourse-qunit-rails
HTTP 200 OK https://index.rubygems.org/info/coderay
HTTP GET https://index.rubygems.org/info/discourse_fastimage
HTTP 200 OK https://index.rubygems.org/info/connection_pool
HTTP GET https://index.rubygems.org/info/barber
HTTP GET https://index.rubygems.org/info/docile
HTTP GET https://index.rubygems.org/info/unf_ext
HTTP GET https://index.rubygems.org/info/ember-source
HTTP 200 OK https://index.rubygems.org/info/arel
HTTP GET https://index.rubygems.org/info/unf
HTTP GET https://index.rubygems.org/info/domain_name
HTTP 200 OK https://index.rubygems.org/info/barber
HTTP 200 OK https://index.rubygems.org/info/unf_ext
HTTP 200 OK https://index.rubygems.org/info/active_model_serializers
HTTP GET https://index.rubygems.org/info/email_reply_trimmer
HTTP 200 OK https://index.rubygems.org/info/ember-source
HTTP 200 OK https://index.rubygems.org/info/unf
HTTP GET https://index.rubygems.org/info/ember-data-source
HTTP 200 OK https://index.rubygems.org/info/diff-lcs
Looking up gems ["rake", "i18n", "json", "minitest", "thread_safe", "tzinfo", "activesupport", "builder", "erubis", "mini_portile2", "pkg-config", "nokogiri", "rails-deprecated_sanitizer", "rails-dom-testing", "loofah", "rails-html-sanitizer", "actionview", "rack", "rack-test", "actionpack", "globalid", "activejob", "mime-types", "mail", "actionmailer", "activemodel", "active_model_serializers", "arel", "activerecord", "jmespath", "aws-sdk-core", "aws-sdk-resources", "aws-sdk", "babel-source", "execjs", "babel-transpiler", "ember-source", "barber", "byebug", "certified", "coderay", "concurrent-ruby", "connection_pool", "crass", "daemons", "diff-lcs", "thor", "railties", "discourse-qunit-rails", "discourse_fastimage", "docile", "unf_ext", "unf", "domain_name", "email_reply_trimmer", "ember-data-source", "sprockets", "ember-handlebars-template", "jquery-rails", "ember-rails", "eventmachine", "excon", "exifr", "fabrication", "fakeweb", "multipart-post", "faraday", "fast_blank", "rake-compiler", "fast_xor", "fast_xs", "ffi", "flamegraph", "fspath", "sorcerer", "given_core", "guess_html_encoding", "hashie", "highline", "hiredis", "htmlentities", "http-cookie", "http_accept_language", "image_size", "in_threads", "progress", "image_optim", "jwt", "kgio", "libv8", "listen", "logster", "lru_redux", "memory_profiler", "message_bus", "metaclass", "method_source", "mini_racer", "mocha", "mock_redis", "moneta", "msgpack", "multi_json", "multi_xml", "mustache", "netrc", "nokogumbo", "oauth", "oauth2", "oj", "omniauth", "omniauth-oauth2", "omniauth-facebook", "omniauth-github-discourse", "omniauth-google-oauth2", "omniauth-instagram", "omniauth-oauth", "ruby-openid", "rack-openid", "omniauth-openid", "omniauth-twitter", "onebox", "redis", "openid-redis-store", "pg", "slop", "pry", "pry-nav", "pry-rails", "puma", "r2", "rack-mini-profiler", "rack-protection", "sprockets-rails", "rails", "rails-observers", "rails_multisite", "raindrops", "rb-fsevent", "rb-inotify", "trollop", "rbtrace", "redis-namespace", "rest-client", "rinku", "rmmseg-cpp", "rspec-support", "rspec-core", "rspec-expectations", "rspec-mocks", "rspec", "rspec-given", "rspec-html-matchers", "rspec-rails", "rtlit", "ruby-readability", "sanitize", "sass", "tilt", "sass-rails", "seed-fu", "shoulda-context", "shoulda-matchers", "shoulda", "sidekiq", "sidekiq-statistic", "simple-rss", "simplecov-html", "simplecov", "sinatra", "spork", "spork-rails", "stackprof", "thin", "timecop", "uglifier", "unicorn"]
HTTP 200 OK https://index.rubygems.org/info/jmespath
HTTP 200 OK https://index.rubygems.org/info/thor
HTTP 200 OK https://index.rubygems.org/info/certified
HTTP GET https://index.rubygems.org/info/sprockets
HTTP GET https://index.rubygems.org/info/coderay
HTTP 200 OK https://index.rubygems.org/info/aws-sdk-resources
HTTP GET https://index.rubygems.org/info/ember-handlebars-template
HTTP 200 OK https://index.rubygems.org/info/sprockets
HTTP 200 OK https://index.rubygems.org/info/docile
HTTP 200 OK https://index.rubygems.org/info/railties
HTTP 200 OK https://index.rubygems.org/info/daemons
HTTP GET https://index.rubygems.org/info/jquery-rails
HTTP GET https://index.rubygems.org/info/ember-rails
HTTP 200 OK https://index.rubygems.org/info/coderay
HTTP 200 OK https://index.rubygems.org/info/crass
HTTP GET https://index.rubygems.org/info/eventmachine
HTTP GET https://index.rubygems.org/info/unf_ext
HTTP GET https://index.rubygems.org/info/excon
HTTP GET https://index.rubygems.org/info/exifr
HTTP GET https://index.rubygems.org/info/fabrication
HTTP 200 OK https://index.rubygems.org/info/domain_name
HTTP GET https://index.rubygems.org/info/fakeweb
HTTP GET https://index.rubygems.org/info/multipart-post
Retrying fetcher due to error (3/4): Bundler::HTTPError The checksum of /info/pkg-config does not match the checksum provided by the server! Something is wrong (local checksum is "\"ded0ed0c9955847541a2111b6aade6fa\"", was expecting "W/\"ded0ed0c9955847541a2111b6aade6fa\"").
Looking up gems ["rake", "i18n", "json", "minitest", "thread_safe", "tzinfo", "activesupport", "builder", "erubis", "mini_portile2", "pkg-config", "nokogiri", "rails-deprecated_sanitizer", "rails-dom-testing", "loofah", "rails-html-sanitizer", "actionview", "rack", "rack-test", "actionpack", "globalid", "activejob", "mime-types", "mail", "actionmailer", "activemodel", "active_model_serializers", "arel", "activerecord", "jmespath", "aws-sdk-core", "aws-sdk-resources", "aws-sdk", "babel-source", "execjs", "babel-transpiler", "ember-source", "barber", "byebug", "certified", "coderay", "concurrent-ruby", "connection_pool", "crass", "daemons", "diff-lcs", "thor", "railties", "discourse-qunit-rails", "discourse_fastimage", "docile", "unf_ext", "unf", "domain_name", "email_reply_trimmer", "ember-data-source", "sprockets", "ember-handlebars-template", "jquery-rails", "ember-rails", "eventmachine", "excon", "exifr", "fabrication", "fakeweb", "multipart-post", "faraday", "fast_blank", "rake-compiler", "fast_xor", "fast_xs", "ffi", "flamegraph", "fspath", "sorcerer", "given_core", "guess_html_encoding", "hashie", "highline", "hiredis", "htmlentities", "http-cookie", "http_accept_language", "image_size", "in_threads", "progress", "image_optim", "jwt", "kgio", "libv8", "listen", "logster", "lru_redux", "memory_profiler", "message_bus", "metaclass", "method_source", "mini_racer", "mocha", "mock_redis", "moneta", "msgpack", "multi_json", "multi_xml", "mustache", "netrc", "nokogumbo", "oauth", "oauth2", "oj", "omniauth", "omniauth-oauth2", "omniauth-facebook", "omniauth-github-discourse", "omniauth-google-oauth2", "omniauth-instagram", "omniauth-oauth", "ruby-openid", "rack-openid", "omniauth-openid", "omniauth-twitter", "onebox", "redis", "openid-redis-store", "pg", "slop", "pry", "pry-nav", "pry-rails", "puma", "r2", "rack-mini-profiler", "rack-protection", "sprockets-rails", "rails", "rails-observers", "rails_multisite", "raindrops", "rb-fsevent", "rb-inotify", "trollop", "rbtrace", "redis-namespace", "rest-client", "rinku", "rmmseg-cpp", "rspec-support", "rspec-core", "rspec-expectations", "rspec-mocks", "rspec", "rspec-given", "rspec-html-matchers", "rspec-rails", "rtlit", "ruby-readability", "sanitize", "sass", "tilt", "sass-rails", "seed-fu", "shoulda-context", "shoulda-matchers", "shoulda", "sidekiq", "sidekiq-statistic", "simple-rss", "simplecov-html", "simplecov", "sinatra", "spork", "spork-rails", "stackprof", "thin", "timecop", "uglifier", "unicorn"]
HTTP 200 OK https://index.rubygems.org/info/email_reply_trimmer
HTTP GET https://index.rubygems.org/info/faraday
HTTP GET https://index.rubygems.org/info/fast_blank
HTTP 200 OK https://index.rubygems.org/info/ember-data-source
HTTP GET https://index.rubygems.org/info/rake-compiler
HTTP 200 OK https://index.rubygems.org/info/discourse_fastimage
HTTP 200 OK https://index.rubygems.org/info/discourse-qunit-rails
HTTP GET https://index.rubygems.org/info/fast_xor
HTTP GET https://index.rubygems.org/info/railties
HTTP 200 OK https://index.rubygems.org/info/ember-handlebars-template
HTTP GET https://index.rubygems.org/info/fast_xs
HTTP GET https://index.rubygems.org/info/ffi
HTTP GET https://index.rubygems.org/info/flamegraph
HTTP 200 OK https://index.rubygems.org/info/unf_ext
HTTP 200 OK https://index.rubygems.org/info/exifr
HTTP 200 OK https://index.rubygems.org/info/jquery-rails
Retrying fetcher due to error (4/4): Bundler::HTTPError The checksum of /info/mini_portile2 does not match the checksum provided by the server! Something is wrong (local checksum is "\"e0b71d9492546d5891de400a2e95b93a\"", was expecting "W/\"e0b71d9492546d5891de400a2e95b93a\"").
HTTP GET https://index.rubygems.org/info/fspath
HTTP 200 OK https://index.rubygems.org/info/ember-rails
HTTP 200 OK https://index.rubygems.org/info/eventmachine
HTTP 200 OK https://index.rubygems.org/info/fakeweb
HTTP GET https://index.rubygems.org/info/email_reply_trimmer
HTTP 200 OK https://index.rubygems.org/info/multipart-post
HTTP 200 OK https://index.rubygems.org/info/fabrication
HTTP 200 OK https://index.rubygems.org/info/excon
HTTP GET https://index.rubygems.org/info/ember-data-source
HTTP GET https://index.rubygems.org/info/discourse_fastimage
HTTP GET https://index.rubygems.org/info/discourse-qunit-rails
HTTP GET https://index.rubygems.org/info/sorcerer
HTTP 200 OK https://index.rubygems.org/info/discourse-qunit-rails
HTTP 200 OK https://index.rubygems.org/info/discourse_fastimage
HTTP 200 OK https://index.rubygems.org/info/fast_blank
HTTP 200 OK https://index.rubygems.org/info/rake-compiler
HTTP 200 OK https://index.rubygems.org/info/railties
HTTP 200 OK https://index.rubygems.org/info/faraday
HTTP GET https://index.rubygems.org/info/ember-handlebars-template
HTTP GET https://index.rubygems.org/info/given_core
HTTP 200 OK https://index.rubygems.org/info/ffi
HTTP GET https://index.rubygems.org/info/guess_html_encoding
HTTP 200 OK https://index.rubygems.org/info/flamegraph
Looking up gems ["rake", "i18n", "json", "minitest", "thread_safe", "tzinfo", "activesupport", "builder", "erubis", "mini_portile2", "pkg-config", "nokogiri", "rails-deprecated_sanitizer", "rails-dom-testing", "loofah", "rails-html-sanitizer", "actionview", "rack", "rack-test", "actionpack", "globalid", "activejob", "mime-types", "mail", "actionmailer", "activemodel", "active_model_serializers", "arel", "activerecord", "jmespath", "aws-sdk-core", "aws-sdk-resources", "aws-sdk", "babel-source", "execjs", "babel-transpiler", "ember-source", "barber", "byebug", "certified", "coderay", "concurrent-ruby", "connection_pool", "crass", "daemons", "diff-lcs", "thor", "railties", "discourse-qunit-rails", "discourse_fastimage", "docile", "unf_ext", "unf", "domain_name", "email_reply_trimmer", "ember-data-source", "sprockets", "ember-handlebars-template", "jquery-rails", "ember-rails", "eventmachine", "excon", "exifr", "fabrication", "fakeweb", "multipart-post", "faraday", "fast_blank", "rake-compiler", "fast_xor", "fast_xs", "ffi", "flamegraph", "fspath", "sorcerer", "given_core", "guess_html_encoding", "hashie", "highline", "hiredis", "htmlentities", "http-cookie", "http_accept_language", "image_size", "in_threads", "progress", "image_optim", "jwt", "kgio", "libv8", "listen", "logster", "lru_redux", "memory_profiler", "message_bus", "metaclass", "method_source", "mini_racer", "mocha", "mock_redis", "moneta", "msgpack", "multi_json", "multi_xml", "mustache", "netrc", "nokogumbo", "oauth", "oauth2", "oj", "omniauth", "omniauth-oauth2", "omniauth-facebook", "omniauth-github-discourse", "omniauth-google-oauth2", "omniauth-instagram", "omniauth-oauth", "ruby-openid", "rack-openid", "omniauth-openid", "omniauth-twitter", "onebox", "redis", "openid-redis-store", "pg", "slop", "pry", "pry-nav", "pry-rails", "puma", "r2", "rack-mini-profiler", "rack-protection", "sprockets-rails", "rails", "rails-observers", "rails_multisite", "raindrops", "rb-fsevent", "rb-inotify", "trollop", "rbtrace", "redis-namespace", "rest-client", "rinku", "rmmseg-cpp", "rspec-support", "rspec-core", "rspec-expectations", "rspec-mocks", "rspec", "rspec-given", "rspec-html-matchers", "rspec-rails", "rtlit", "ruby-readability", "sanitize", "sass", "tilt", "sass-rails", "seed-fu", "shoulda-context", "shoulda-matchers", "shoulda", "sidekiq", "sidekiq-statistic", "simple-rss", "simplecov-html", "simplecov", "sinatra", "spork", "spork-rails", "stackprof", "thin", "timecop", "uglifier", "unicorn"]
HTTP GET https://index.rubygems.org/info/hashie
HTTP 200 OK https://index.rubygems.org/info/fspath
HTTP GET https://index.rubygems.org/info/highline
HTTP GET https://index.rubygems.org/info/fabrication
HTTP GET https://index.rubygems.org/info/hiredis
HTTP GET https://index.rubygems.org/info/htmlentities
HTTP 200 OK https://index.rubygems.org/info/email_reply_trimmer
HTTP GET https://index.rubygems.org/info/http-cookie
HTTP GET https://index.rubygems.org/info/http_accept_language
HTTP 200 OK https://index.rubygems.org/info/fabrication
HTTP GET https://index.rubygems.org/info/image_size
HTTP GET https://index.rubygems.org/info/in_threads
HTTP 200 OK https://index.rubygems.org/info/ember-data-source
HTTP 200 OK https://index.rubygems.org/info/fast_xor
HTTP 200 OK https://index.rubygems.org/info/sorcerer
HTTP GET https://index.rubygems.org/info/progress
HTTP GET https://index.rubygems.org/info/image_optim
HTTP 200 OK https://index.rubygems.org/info/fast_xs
HTTP GET https://index.rubygems.org/info/jwt
HTTP GET https://index.rubygems.org/info/kgio
The checksum of /info/nokogiri does not match the checksum provided by the
server! Something is wrong (local checksum is
"\"0d78b76d728e0683b4b691f2862bdbc4\"", was expecting
"W/\"0d78b76d728e0683b4b691f2862bdbc4\"").

I, [2016-10-10T13:16:31.116771 #18]  INFO -- : Terminating async processes
I, [2016-10-10T13:16:31.116924 #18]  INFO -- : Sending INT to HOME=/var/lib/postgresql USER=postgres exec chpst -u postgres:postgres:ssl-cert -U postgres:postgres:ssl-cert /usr/lib/postgresql/9.5/bin/postmaster -D /etc/postgresql/9.5/main pid: 47
I, [2016-10-10T13:16:31.117516 #18]  INFO -- : Sending TERM to exec chpst -u redis -U redis /usr/bin/redis-server /etc/redis/redis.conf pid: 160
2016-10-10 13:16:31 UTC [47-2] LOG:  received fast shutdown request
2016-10-10 13:16:31 UTC [47-3] LOG:  aborting any active transactions
160:signal-handler (1476105391) Received SIGTERM scheduling shutdown...
2016-10-10 13:16:31 UTC [54-2] LOG:  autovacuum launcher shutting down
2016-10-10 13:16:31 UTC [51-1] LOG:  shutting down
2016-10-10 13:16:31 UTC [51-2] LOG:  database system is shut down
160:M 10 Oct 13:16:31.149 # User requested shutdown...
160:M 10 Oct 13:16:31.149 * Saving the final RDB snapshot before exiting.
160:M 10 Oct 13:16:31.261 * DB saved on disk
160:M 10 Oct 13:16:31.261 # Redis is now ready to exit, bye bye...


FAILED
--------------------
Pups::ExecError: cd /var/www/discourse && su discourse -c 'bundle install --deployment --verbose --without test --without development' failed with return #<Process::Status: pid 333 exit 17>
Location of failure: /pups/lib/pups/exec_command.rb:108:in `spawn'
exec failed with the params {"cd"=>"$home", "hook"=>"bundle_exec", "cmd"=>["su discourse -c 'bundle install --deployment --verbose --without test --without development'", "su discourse -c 'bundle exec rake db:migrate'", "su discourse -c 'bundle exec rake assets:precompile'"]}
62deb8e0b43ac907c3b6cbb2e09fa91fde02dea83d7b94603fa8e65368c63754
** FAILED TO BOOTSTRAP ** please scroll up and look for earlier error messages, there may be more than one

A part of the logs hope this helps.

Getting this error when i am trying to ./launcher rebuild app

Posts: 8

Participants: 3

Read full topic

SSO avatar overrides default letter profile pic

$
0
0

@jesselperry wrote:

A bit nuanced, but I noticed something that was happening with my Discourse and profile pictures. I am using discourse-wp as my SSO provider, and it sends over the user's avatar image. However I also have SSO avatar override setting disabled. Since Wordpress user pictures default to a grey person, that image gets sent on every user login as part of SSO. This doesn't appear to be an issue if the user has already uploaded their own image, or selected to use Gravatar.

It does become an issue if they haven't selected anything and are using the letter proxy. In this case, the Wordpress generic picture becomes their Discourse profile picture, even though I have SSO avatar override disabled.

I would consider this a bug? The expected behavior should be for the letter proxy to continue to be used when SSO avatar override isn't enabled, even if there is a profile picture from SSO.

Posts: 3

Participants: 3

Read full topic

How to disable the Email Notifications?

Wordpress Plugin Error on Login

$
0
0

@Fillipe_Cordeiro wrote:

Hi,

I've got some errors when to try to login on my Wordpress with Discourse plugin.

Warning: Cannot modify header information - headers already sent by (output started at /nfs/c12/h04/mnt/217028/domains/membros.androidaccelerate.com.br/html/wp-content/plugins/wp-discourse/lib/discourse-sso.php:227) in /nfs/c12/h04/mnt/217028/domains/membros.androidaccelerate.com.br/html/wp-includes/pluggable.php on line 994

What's happening?

Thanks

Posts: 7

Participants: 2

Read full topic

Viewing all 60678 articles
Browse latest View live




Latest Images