PHP Openssl is missing perhaps?
I know you've stated that it's there, but if it's having issues loading for any reason, it will fail with updates.
Try doing a phpinfo(); call to check...
It seems that the redirect behavior either was or can be overridden with Rules.
We were able to keep people on the same page by creating a rule that sends them back to the original page...
Ah... I did not know that.
Thank you for the info/explanation. I would really like the ability to be able to generate travel distance in real time, but not if I have to go back to Drupal...
Posted2 days 11 hours ago by (john@delinuxco.com) on:
Comments
I guess because the CSS code that manages this element is:
.block-hero-no-image {
background-blend-mode: luminosity;
background-color: #0074bd;
background-image: url("/core/themes/basis/images/texture.png");
background-position: center center;
background-repeat: repeat;
}
The background-blend-mode CSS3 property is not supported by Microsoft browsers:
https://www.w3schools.com/cssref/pr_background-blend-mode.asp
https://developer.mozilla.org/en-US/docs/Web/CSS/background-blend-mode
I would recommend to use another CSS technique for this block - for example CSS opacity or RGBA color.
Or may be simply color texture.png file.