You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The complete file path to the non merged CSS files are used instead of the URL's to those files. Creating html like <link rel="stylesheet" type="text/css" href="/home/linuxuser/path_to_docroot/skin/adminhtml/default/default/reset.css" media="all"> instead of <link rel="stylesheet" type="text/css" href="https://mydomain.tld/skin/adminhtml/default/default/reset.css" media="all">. This breaks the admin panel because the CSS file https://mydomain.tld/home/linuxuser/path_to_docroot/skin/adminhtml/default/default/reset.css doesn't exist. I think the same happens on the frontend because the same code is used to merge those files but I did not test this yet.
An error is logged in OpenMage 19.4.19 (Added by An Exception is thrown and logged if file is not found while merging #2445), the problem in this code is that not only the error is logged but the whole merging stops by throwing an Exception here. Or maybe it should stop the whole merging but then the URL's of the non merged CSS files should be used and not the file paths.
The text was updated successfully, but these errors were encountered:
Preconditions (*)
Steps to reproduce (*)
Expected result (*)
Actual result (*)
<link rel="stylesheet" type="text/css" href="/home/linuxuser/path_to_docroot/skin/adminhtml/default/default/reset.css" media="all">
instead of<link rel="stylesheet" type="text/css" href="https://mydomain.tld/skin/adminhtml/default/default/reset.css" media="all">
. This breaks the admin panel because the CSS file https://mydomain.tld/home/linuxuser/path_to_docroot/skin/adminhtml/default/default/reset.css doesn't exist. I think the same happens on the frontend because the same code is used to merge those files but I did not test this yet.The text was updated successfully, but these errors were encountered: