Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove documented support for Postgres #3227

Merged
merged 1 commit into from
Jun 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ about: Something not working? Let us know to help us improve.
Give us some context:

* It'd also be really handy if you could tell us the contents of your ```version.known``` file
* What database are you using? (e.g. mongo, mysql, postgres)
* What database are you using? (e.g. mongo, mysql)
* Any warnings or errors in your admin/diagnostics page?
* If this is a programming bug, can you include examples of any Micropub / API calls / webhook pings you make? Otherwise please don't worry about what this means!
* Bonus points - are you able to illustrate the issue with a unit test? If so, submit it as a pull request!
6 changes: 0 additions & 6 deletions docs/install/instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,6 @@ If you need to use a non-standard database port, you can also select this:

Additionally, you will need to create the database referred to in this configuration file, and ensure that it can be connected to using the user credentials you supply. For now, you will need to load the SQL schema stored in `/warmup/schemas/mysql/mysql.sql`.

### If you’re using Postgres

Postgres users follow the MySQL instructions above, but set your database engine as follows:

database = "Postgres"

### If you're using SQLite

As with MySQL, currently SQLite users need to create a ```config.ini``` in the root of their installation. This should contain the following information:
Expand Down
2 changes: 1 addition & 1 deletion docs/install/requirements.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Additionally, Known requires the following PHP components:
+ json
+ libxml
+ mbstring
+ mysql (or postgresql or sqlite, depending on database backend)
+ mysql (or sqlite, depending on database backend)
+ reflection
+ session
+ xmlrpc
Expand Down