2013-02-28 12:11:25 -05:00
|
|
|
## Troubleshooting issues with Discourse environments
|
|
|
|
|
|
|
|
Are you having trouble setting up Discourse? Here are some basic things to check before
|
|
|
|
reaching out to the community for help:
|
|
|
|
|
|
|
|
|
2018-11-09 10:00:11 -05:00
|
|
|
1. Are you running Ruby 2.5 or later?
|
2013-02-28 12:11:25 -05:00
|
|
|
|
2018-11-09 10:00:11 -05:00
|
|
|
Discourse is designed for Ruby 2.5 or later. We recommend 2.5.2 or later. You can check your version by typing
|
2013-02-28 12:11:25 -05:00
|
|
|
`ruby -v` and checking the response.
|
|
|
|
|
|
|
|
|
2018-10-01 00:12:52 -04:00
|
|
|
2. Are you on Postgres 10 or later with HSTORE enabled?
|
2013-02-28 12:11:25 -05:00
|
|
|
|
|
|
|
You can check your postgres version by typing `psql --version`. To see if hstore is
|
|
|
|
installed, open a session to postgres and type `\dx` and see if hstore is listed.
|
|
|
|
|
|
|
|
|
|
|
|
3. Have you run `bundle install`?
|
|
|
|
|
|
|
|
We frequently update our dependencies to newer versions. It is a good idea to run
|
|
|
|
`bundle install` every time you check out Discourse, especially if it's been a while.
|
|
|
|
|
2013-03-07 16:20:09 -05:00
|
|
|
4. Did you run `bundle update`?
|
2013-02-28 12:11:25 -05:00
|
|
|
|
2013-03-07 16:20:09 -05:00
|
|
|
Don't. Running `bundle update` will download gem versions that we haven't tested with.
|
|
|
|
The Gemfile.lock has the gem versions that Discourse currently uses, so `bundle install`
|
2013-03-13 06:16:45 -04:00
|
|
|
will work. If you ran update, then you should uninstall the gems, run
|
|
|
|
`git checkout -- Gemfile.lock` and then run `bundle install`.
|
2013-03-07 16:20:09 -05:00
|
|
|
|
|
|
|
5. Have you migrated your database?
|
2013-02-28 12:11:25 -05:00
|
|
|
|
2015-04-25 04:16:18 -04:00
|
|
|
Our schema changes fairly frequently. After checking out the source code, you should
|
2018-06-19 15:10:48 -04:00
|
|
|
run `bundle exec rake db:migrate && RAILS_ENV=test bundle exec rake db:migrate`
|
2013-02-28 12:11:25 -05:00
|
|
|
|
2013-03-07 16:20:09 -05:00
|
|
|
7. Do the tests pass?
|
2013-02-28 12:11:25 -05:00
|
|
|
|
2015-04-25 04:16:18 -04:00
|
|
|
If you are having other problems, it's useful to know if the test suite passes. You
|
2018-06-19 15:10:48 -04:00
|
|
|
can run it by first using `RAILS_ENV=test bundle exec rake db:drop db:create db:migrate` and then `bundle exec rspec`. If you
|
2015-04-25 04:16:18 -04:00
|
|
|
experience any failures, that's a bad sign! Our master branch should *always* pass
|
2013-02-28 12:11:25 -05:00
|
|
|
every test.
|
|
|
|
|
2013-03-07 16:20:09 -05:00
|
|
|
8. Have you updated host_names in your database.yml?
|
2013-02-28 12:11:25 -05:00
|
|
|
|
2013-03-04 15:18:48 -05:00
|
|
|
If links in emails have localhost in them, then you are still using the default host_names
|
|
|
|
value in database.yml. Update it to use your site's host name(s).
|
2015-04-25 04:16:18 -04:00
|
|
|
|
2013-05-03 20:09:06 -04:00
|
|
|
9. Are you having problems bundling:
|
|
|
|
|
2019-01-21 04:19:28 -05:00
|
|
|
``` text
|
2013-05-03 20:09:06 -04:00
|
|
|
ArgumentError: invalid byte sequence in US-ASCII
|
|
|
|
An error occurred while installing active_model_serializers (0.7.0), and Bundler cannot continue.
|
|
|
|
Make sure that `gem install active_model_serializers -v '0.7.0'` succeeds before bundling.
|
|
|
|
```
|
|
|
|
|
|
|
|
Try this in console:
|
|
|
|
|
2019-01-21 04:19:28 -05:00
|
|
|
``` text
|
2013-05-03 20:09:06 -04:00
|
|
|
$ export LANG="en_US.UTF-8"
|
|
|
|
$ export LC_ALL="en_US.UTF-8"
|
|
|
|
```
|
|
|
|
|
|
|
|
And/or this in top of `Gemfile`:
|
|
|
|
|
2019-01-21 04:19:28 -05:00
|
|
|
``` text
|
2013-05-03 20:09:06 -04:00
|
|
|
if RUBY_VERSION =~ /1.9/
|
|
|
|
Encoding.default_external = Encoding::UTF_8
|
|
|
|
Encoding.default_internal = Encoding::UTF_8
|
|
|
|
end
|
|
|
|
```
|