Edgaras Janušauskas
Edgaras Janušauskas
Try `'include-tables' => array()` option. https://github.com/ifsnop/mysqldump-php#dump-settings
If dump was aborted by exception like in https://github.com/ifsnop/mysqldump-php/issues/220, it is very likely SQL file will be partial.
Which exception messages you think should be translatable? Most exceptions are helpers for developers about invalid app code (invalid data types, classes, configuration) and are not intended to be displayed...
PHP 8.1: Integers and floats in result sets will now be returned using native PHP types instead of strings when using emulated prepared statements. This matches the behavior of native...
Did you use `$this->pdoOptions` in constructor or `$this->conn->setAttribute()`? https://github.com/druidfi/mysqldump-php/blob/bd3d8c44a2275eba1367177107dcdd8585045cd2/src/Mysqldump.php#L278-L285
Did you try `'no-create-info' => true`?
You could add new property `$domain` to `GettextTranslator` and set it when creating new `GettextTranslator` object.
You could add new methods/properties to `DebugLog` and either recompute after each `log()`, or compute stats by calling methods from template. Could you open this or updated diff as pull...
Looks like something wrong with DebugKit AJAX proxy setup. Callstack has 5 consecutive `window.XMLHttpRequest.send @ VM375 toolbar.js:91`, it probably setups additional `XMLHttpRequest.send` proxy level when navigating to different page. DebugKit...
This is limitation of database server. You cannot change column if it is used in a foreign key constraint. You can drop foreign key, change column, then recreate foreign key.