Hello everyone,
I'm going to create preview panels for theme generator. As the colours
would be dynamic it's best use to use javascript to change inline style
tags. I know that we are trying to convert all the already present inline
style tags to css files. But I think for changing colours of panels on
pressing preview buttons, the best way is to use style tags for the
background of panels. Any other idea is highly appreciated.
Regards,
Saksham Gupta
Hi,
I'm having some trouble with the testsuite. The daily builds are not
updating, and it looks like it's because the testsuite for phpMyAdmin
5.0-snapshot is failing (ultimately, MySQL on the build server doesn't
allow the testsuite to authenticate with the stored credentials, but I
think that's secondary to the problem I describe below).
When I run the failing test from the QA branch, it is shown as skipped:
> ./vendor/bin/phpunit -c phpunit.xml.nocoverage test/Environment_test.php
> There was 1 skipped test:
>
> 1) Environment_Test::testMySQL
> Error: SQLSTATE[HY000] [1045] Access denied for user 'root'@'localhost' (using password: NO)
However, from master, it fails:
> ./vendor/bin/phpunit -c phpunit.xml.nocoverage test/EnvironmentTest.php
> There was 1 error:
>
> 1) PhpMyAdmin\Tests\EnvironmentTest::testMySQL
> PDOException: SQLSTATE[HY000] [1045] Access denied for user 'root'@'localhost' (using password: NO)
I don't see anything obvious that would make these two behave
differently. Do you have any thoughts to help me out?
Isaac
Hello Developers,
I'm currently working on this
<https://github.com/phpmyadmin/phpmyadmin/issues/13155> feature as a part
of my GSoC project. Isaac and I have been trying to think of some
workarounds but your ideas are welcome.
I have currently thought of the following workarounds.
Disable drag drop at the backend, but drag drop handlers in javascript are
written in common,js which has other stuff also, so we can either separate
it in some other file(which I don't think would be a good solution because
it might cause some bugs), or we can find a way to expose the configuration
to javascript(not sure but could lead to security issues) or we can leave
the javascript as it is and disable it only on the server side.(it still
works well, I've tested).
Thanks,
Lakshya arora (nulll-pointer)
The phpMyAdmin team is pleased to announce the release of phpMyAdmin
version 4.8.2. Among other bug fixes, this contains an important
security update and it is highly recommended that all users upgrade
immediately.
The urgent vulnerability allows an authenticated attacker to exploit a
phpMyAdmin feature to show and potentially execute files on the server.
PHP open_basedir restrictions mitigate the effect of this flaw. For
further details, see the PMASA announcement
<https://www.phpmyadmin.net/security/PMASA-2018-4/>.
A second flaw was also fixed allowing an attacker to use a specially
crafted database name to trick a user in to executing a cross-site
scripting (XSS) attack in the Designer feature
<https://www.phpmyadmin.net/security/PMASA-2018-3/>.
In addition to the security fixes, this release also includes these bug
fixes as part of our regular release cycle:
* WHERE 0 clause causes a fatal error
* Fix missing "INDEX" icon
Downloads are available at https://www.phpmyadmin.net/downloads/
Hello everyone,
I am working on the theme generator project and I'm facing a problem
regarding contrast ratios of text colour and background. I way to solve
this issue is by using mix-blend-mode, but according to
https://caniuse.com/#feat=css-mixblendmode , there are still compatibility
issues. So should I go ahead with it, and if so, what should be the
fallbacks?
Regards
Saksham Gupta
Hi all,
Hope you are doing well.
I'm working on this feature
<https://github.com/phpmyadmin/phpmyadmin/issues/13235> and I need some
suggestions.
As of now, Isaac and I have decided to not show any add index popup and
automatically add index.
My idea is to create an index named A_I_columnName if it doesn't exist and
leave it if user removes A_I on that column, If user chooses to add the A_I
on that column again, we'll use that index if it exists and create it if it
doesn't.
Any suggestions would be appreciated,
thanks.