Commit 4fa2af426b1b208be60a92aa5d0a9fa4a8206d4b
1 parent
ac61c4e2
Exists in
master
and in
23 other branches
Reviewing INSTALL file
Showing
1 changed file
with
9 additions
and
6 deletions
Show diff stats
INSTALL
| ... | ... | @@ -139,8 +139,8 @@ so if you are planning to use a different database this steps won't apply. |
| 139 | 139 | # apt-get install postgresql libpgsql-ruby |
| 140 | 140 | # su postgres -c 'createuser noosfero -S -d -R' |
| 141 | 141 | |
| 142 | -By default Rails will try to connect on postgresql through 5432 port, but | |
| 143 | -you can check it in /etc/postgresql/8.4/main/postgresql.conf file. | |
| 142 | +By default Rails will try to connect on postgresql through 5432 port, | |
| 143 | +you can check it on /etc/postgresql/8.4/main/postgresql.conf file. | |
| 144 | 144 | |
| 145 | 145 | Restart postgresql: |
| 146 | 146 | |
| ... | ... | @@ -221,12 +221,15 @@ $ ./script/dbconsole production |
| 221 | 221 | If it connects to your database, then everything is fine. If you got an error |
| 222 | 222 | message, then you have to check your database configuration. |
| 223 | 223 | |
| 224 | -As root user | |
| 225 | -============ | |
| 224 | +Installing gem rack | |
| 225 | +=================== | |
| 226 | 226 | |
| 227 | -Install RubyGem Rack 1.0.1: | |
| 227 | +This gem is required if you want to run Mezuro plugin. | |
| 228 | + | |
| 229 | +Install RubyGem Rack 1.0.1. | |
| 230 | +Others versions may not be compatible with Noosfero: | |
| 228 | 231 | |
| 229 | -$ gem install rack -v 1.0.1 | |
| 232 | +# gem install rack -v 1.0.1 | |
| 230 | 233 | |
| 231 | 234 | As noosfero user |
| 232 | 235 | ================ | ... | ... |