- No Flash, Java or other plugins
- Responsive Layout
- Mobile First
| After automatically updating Postgres to 9.6.1 via Homebrew, the pg_ctl start command didn't work. | |
| The error was something like "database files are incompatible with server". | |
| Database files have to be updated before starting the server, here are the steps that had to be followed: | |
| # need to have both 9.6.1 and latest 9.5.x installed, and keep 9.6.1 as default | |
| brew unlink postgresql | |
| brew install postgresql95 | |
| brew unlink postgresql95 | |
| brew link postgresql |
| After automatically updating Postgres to 9.6.1 via Homebrew, the pg_ctl start command didn't work. | |
| The error was something like "database files are incompatible with server". | |
| Database files have to be updated before starting the server, here are the steps that had to be followed: | |
| # need to have both 9.6.1 and latest 9.5.x installed, and keep 9.6.1 as default | |
| brew unlink postgresql | |
| brew install postgresql95 | |
| brew unlink postgresql95 | |
| brew link postgresql |
| curl -XPOST http://localhost:8098/types/location_type/buckets/people/datatypes/person1 \ | |
| -H "Content-Type: application/json" \ | |
| -d ' | |
| { | |
| "update": { "username_register": "user1", "city_register": "Denver", "state_register": "NY", "position_register": "42.27,-74.53" } | |
| }' | |
| curl -XPOST http://localhost:8098/types/location_type/buckets/people/datatypes/person2 \ | |
| -H "Content-Type: application/json" \ | |
| -d ' |
| curl -XPOST http://localhost:8098/types/location_type/buckets/people/datatypes/person1 \ | |
| -H "Content-Type: application/json" \ | |
| -d ' | |
| { | |
| "update": { "username_register": "user1", "city_register": "Denver", "state_register": "NY", "position_register": "42.27,-74.53" } | |
| }' | |
| curl -XPOST http://localhost:8098/types/location_type/buckets/people/datatypes/person2 \ | |
| -H "Content-Type: application/json" \ | |
| -d ' |