pavelevap

Results 70 issues of pavelevap

I tried following: - `docker exec -it vpdev_wordpress_1 wp vp apply-changes` - `docker-compose exec wordpress wp vp apply-changes` Everytime it ends with error: `Error: Maintenance mode couldn't be switched. Details:...

bug
scope: dev-infrastructure

``` [12-Dec-2017 11:10:28 UTC] Unknown column '' in 'where clause'. Query: SELECT * FROM `wp49_term_relationships` WHERE `` = '0'. Function: do_action('toplevel_page_mlang'), WP_Hook->do_action, WP_Hook->apply_filters, call_user_func_array, PLL_Settings->languages_page, PLL_Settings->handle_actions, PLL_Admin_Model->set_language_in_mass, VersionPress\Database\WpdbMirrorBridge->query, VersionPress\Database\WpdbMirrorBridge->processInsertQuery, VersionPress\Database\Database->get_row,...

improvement
plugin support

I will only gather some notes from testing here. - When starting development environment (`npm start`), `localhost` does not work immediatelly, because we are not waiting for MySQL to start...

improvement
scope: dev-infrastructure
help wanted

Resolves #1442 Move from tracking **admin/frontend** actions to **registered/anonymous**, based on availability of registered WordPress user. It fixes problem for example with REST requests which are not generally depending on...

needs-migration
scope: core

During work on test infrastructure we found a problem with order of posts on cloned site. When there are several posts (or other items) **published at the same time and...

scope: core
discussion

- [ ] Actions from new editor (Gutenberg) are tracked as "non-admin", probably due to REST API requests (see #1442). - [ ] POST and REST request at once in...

noteworthy
Gutenberg

When saving a post in Gutenberg, both requests are made, see https://github.com/WordPress/gutenberg/issues/12903 Example: Create or edit postmeta on WordPress admin screen. Before Gutenberg it was one request (commit), now we...

improvement
scope: core
Gutenberg

History: - Values for `ignored-entities` and `frequently-written` were originally compared as **case-sensitive**. - But during work on issue #586 were values changed to **case-insensitive** to handle commit filtering in `QueryLanguageUtils::createRulesFromQueries`,...

improvement
scope: core

VersionPress is using basic functions like `strtolower()` for values which could lead to problems. [Multibyte string functions](https://www.php.net/manual/en/ref.mbstring.php) should be used when working with some values, see for example issue #1439....

improvement
scope: core

VersionPress currently differentiates requests made from WordPress administration and public frontend. https://github.com/versionpress/versionpress/blob/e2209836d30889727991365fde2c983d0121e5a1/plugins/versionpress/src/Git/Committer.php#L89-L103 But there are several related problems: - For example comments made by registered users (even by administrators) **SOMETIMES**...

improvement
scope: core