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.
Hello,
We just launched our new website and our developers sent us the following:
One item of note — once we launched the new website, we noticed that the version of PHP that your hosting provider is running is outdated. When you log into the Dashboard in WordPress you’ll see a warning message about it. It’s pretty important to run an up-to-date version of PHP from a site performance and security standpoint. We recommend contacting your hosting provider and requesting an update to the newest version of PHP for your server.
Can someone look in to this and let me know if it is possible?
Thanks, Julie
________________________________________________
Julie Lopez
Senior Marketing Manager
Trilliant Surgical
Direct: 713-388-6061 | Main: 800-495-2919, Ext. 1009
727 North Shepherd Drive, Suite 100 | Houston, TX 77007
jlopez(a)trilliantsurgical.com <mailto:jlopez@trilliantsurgical.com> | www.trilliantsurgical.com <http://www.trilliantsurgical.com/>
PRIVILEGED/CONFIDENTIAL INFORMATION may be contained in this message. If you are not the addressee indicated in this message or the employee or agent responsible for delivering to addressee, you are hereby on notice that you are in possession of confidential information. Any dissemination, distribution, or copying of this e-mail is strictly prohibited. In such case, you should destroy message and kindly notify sender by reply e-mail.
Hi Community,
I was working on revamping the javascript code base to make it modular as
GSoC 18 project.
While revamping the code base, I introduced webpack as the bundler to
create a production bundle but the combined bundle coming out to be was
large which was not good in terms of performance.
So I have decided to use code splitting which will create small bundles and
they can be used for different pages. But there are two options for ode
splitting. The first one is to create multiple entry points which will
generate file specific bundles having independent scope of modules imported
in those specific files and the other one is dynamic imports which will
split the code at dynamic import points.
So I have decided to go with dynamic imports for code splitting because in
this method, the bundles will have a common scope and the bundles can be
downloaded at the time of need. We don't need to take care of which scripts
have been downloaded. Webpack uses a JSONP function for loading the chunks
asynchronously and these downloaded chunks will remain in the head of the
document until the page reloads. This will ensure that chunks which are
loaded once will not be loaded again.
Some Important Links:
https://webpack.js.org/guides/code-splitting/https://medium.com/@piyush3079/week3-gsoc-with-phpmyadmin-41a1b7f1dd70https://github.com/phpmyadmin/phpmyadmin/issues/14355