Valentyn Kolesnikov
Valentyn Kolesnikov
I reproduced this error locally. Will investigate it. 
This is because of Postgres 13. I checked with version 11. It works.
It will be better to add compatibility with version 13.
The error message is ``` [09-Jul-2021 09:07:19 UTC] PHP Warning: pg_query(): Query failed: ERROR: relation "wp_options" does not exist 2021-07-09T09:07:19.488283+00:00 app[web.1]: LINE 1: SELECT option_name, option_value FROM wp_options WHERE autol......
It looks like create table is not working for postgres 13. ``` CREATE TABLE $wpdb->options ( option_id bigint(20) unsigned NOT NULL auto_increment, option_name varchar(191) NOT NULL default '', option_value longtext...
I will try to fix php code to make it working with postgres 13.
Not yet. The problem is known: incompatibility with postgres 13.
```json { "a": [ { "t": 1 } ] } ``` may be converted to xml ```xml 1 ``` https://xmltojson.github.io/json-to-xml.html
```json { "some tag": "...", "#omit-xml-declaration": "yes" } ``` may be converted to xml ```xml ... ```
```xml CONTENT ``` may be converted to json ```json { "SomeThing": { "-SomeAttr": "VALUE", "#text": "CONTENT" }, "#omit-xml-declaration": "yes" } ```