Eric Schirra
d5738e9737
- Update to 5.0.4 - issue #16245 Fix failed Zoom search clears existing values - issue Fixed a PHP error when reporting a particular JS error - issue #16326 Fixed latitude and longitude swap for geometries in edit mode - issue #16032 Fix CREATE TABLE not being tracked when auto tracking is enabled - issue #16397 Fix compatibility problems with older PHP versions (also issue #16399) - issue #16396 Fix broken two-factor authentication - Changes from 5.0.3 - https://github.com/phpmyadmin/phpmyadmin/blob/RELEASE_5_0_3/ChangeLog - Changes from 5.0.2 - https://github.com/phpmyadmin/phpmyadmin/blob/RELEASE_5_0_2/ChangeLog - Changes from 5.0.1 - https://github.com/phpmyadmin/phpmyadmin/blob/RELEASE_5_0_1/ChangeLog - Changes from 5.0.0 - https://github.com/phpmyadmin/phpmyadmin/blob/RELEASE_5_0_0/ChangeLog - Set php >= 7.4 as recommends because: Due to changes in the MySQL authentication method, PHP versions prior to 7.4 are unable to authenticate to a MySQL 8.0 or newer server (our tests show the problem actually began with MySQL 8.0.11). This relates to a PHP bug https://bugs.php.net/bug.php?id=76243. - Remove Suggests: php-mcrypt as described in boo#1050980 - Change tmpdir from ap_docroot/tmp to localstatedir/cache/phpMyAdmin. OBS-URL: https://build.opensuse.org/request/show/847420 OBS-URL: https://build.opensuse.org/package/show/server:php:applications/phpMyAdmin?expand=0&rev=360
28 lines
1.0 KiB
Diff
28 lines
1.0 KiB
Diff
Index: sql/create_tables.sql
|
|
===================================================================
|
|
--- sql/create_tables.sql.orig
|
|
+++ sql/create_tables.sql
|
|
@@ -27,8 +27,8 @@ USE phpmyadmin;
|
|
-- Privileges
|
|
--
|
|
-- (activate this statement if necessary)
|
|
--- GRANT SELECT, INSERT, DELETE, UPDATE, ALTER ON `phpmyadmin`.* TO
|
|
--- 'pma'@localhost;
|
|
+GRANT SELECT, INSERT, DELETE, UPDATE, ALTER ON `phpmyadmin`.* TO
|
|
+ 'pma'@localhost IDENTIFIED BY 'pmapass';
|
|
|
|
-- --------------------------------------------------------
|
|
|
|
Index: config.sample.inc.php
|
|
===================================================================
|
|
--- config.sample.inc.php.orig
|
|
+++ config.sample.inc.php
|
|
@@ -201,7 +201,6 @@ $cfg['Servers'][$i]['savedsearches']
|
|
$cfg['Servers'][$i]['central_columns'] = 'pma__central_columns';
|
|
$cfg['Servers'][$i]['designer_settings'] = 'pma__designer_settings';
|
|
$cfg['Servers'][$i]['export_templates'] = 'pma__export_templates';
|
|
-$cfg['Servers'][$i]['auth_swekey_config'] = '';
|
|
*/
|
|
|
|
/**
|