Internet Explorer 8 does not render the bundles - asp.net-mvc-4

I created a page that has bundles for CSS and JavaScript. Everything went well until testing for Internet Explorer 8.
The tests are being run on a Windows XP virtual machine with Windows updates disabled. Thus, the version of IE8 is really neat.
My problems only happen in this browser. All other tests running fine.
Is there any hint?
thank you
EDIT
When the browsers load the page, we can see the link to bundles generated by c# and the result file too. So, the IE doesnt render this css.
EDIT IN TIME
Right before a send this, a did another search and I guess i found the answer.
At the tops of generated bundle, is an error:
/* Minification failed. Returning unminified contents.
(12907,28): run-time error CSS1038: Expected hex color, found '#porcentagem-container'
(12929,25): run-time error CSS1038: Expected hex color, found '#porcentagem-container'
(13663,21): run-time error CSS1038: Expected hex color, found '#porcentagem-container'
(13663,43): run-time error CSS1062: Expected semicolon or closing curly-brace, found '
(14222,15): run-time error CSS1038: Expected hex color, found '#porcentagem-container'
(14222,37): run-time error CSS1062: Expected semicolon or closing curly-brace, found '
(25557,27): run-time error CSS1038: Expected hex color, found '#porcentagem-container'
I'll check all those errors and come back here with the answer (If i got some).
Thanks

There is a file size limit of roughly 288kb for individual files in IE9 and below. Only content read before hitting this limit will be processed.
Please see:
http://joshua.perina.com/africa/gambia/fajara/post/internet-explorer-css-file-size-limit

Related

PDF intermittently shows a grey box in Safari

There is an issue with Safari (on desktop) where PDF previews intermittently fail. I've observed this with files around 2MB, but not those under 1MB.
It seemed like a race condition, potentially in the code that generates the signed link however I've since narrowed it down to a Safari bug.
The symptoms are:
Intermittently failing Byte Range requests
Duplicate Byte Range requests (may or may not be an issue)
The preview shows empty, which essentially means a large grey box with the usual actions within the pdf viewer for downloading etc.
The solution to this was to use iframe instead of embed.
This does not appear to be an easy bug to search the solution for, and I've not a clue why it is a problem in the first place, however there is a documented report over on https://github.com/pipwerks/PDFObject/issues/243 which is where I found the solution.
I've also written a short blog post about it: https://shanehudson.net/articles/2022/pdf-breaking-safari/

Vue.js file error "The file will not be displayed in the editor because it is either binary, very large or uses an unsupported text encoding."

I was working on a Vuejs project. So this morning when I opened the project it wasn't compiling anymore and it was reporting an error in one of the components. When opening the component, this message appeared in the VSCode editor "The file will not be displayed in the editor because it is either binary, very large or uses an unsupported text encoding." Clicking on open anyway appears a lot of code with strange symbols as shown in the image. When I try to open the file in another editor, the same problem also happens, but the symbols change. I would like to know what might have happened and if there is a way to recover my file?
Looks like your file is corrupt. Restore from a backup, or re-pull from git.

What is the log format expected by Intellij log options?

I have found the option in Intellij to read log files of my program and show them where the console is shown: https://www.jetbrains.com/help/pycharm/setting-log-options.html A very cool feature, as I can have filtered output of some of my logs in a file and then read them in this second console.
However Intellij seems to randomly decide which of those lines are warnings and which of them are just info, therefore randomly marking some of them red. I guess I need to format the log lines in a specific way, but I cannot figure out how. The default Formatter used by the java.util.logging.FileHandler is some XMLFormat that is unreadable and the SimpleFormatter is not recognized correctly by intellij as you can see in the following picture where the only line not red is the actual only line that should be red.
Question: Which log format is expected by Intellij to correctly display my logs?

Issue with printing generated PDF

In my project I generate PDFs from HTML. The problem is these PDFs can't be printed though I they are opened and displayed correctly. Files are generated by ConvertAPI, I also tried wkhtmltopdf but it gave me the same result.
In Windows Adobe Reader 9 gave me error messages "Print is impossible" and then "No pages were selected for print" (this is translation as there isn't English localization in my Reader). After I upgraded to Adobe Reader X it started printing but only part of document and giving error message "Drawing error occurred".
Using print as images doesn't help, i just got empty sheet.
I managed to print document from Linux but it's not an option for me.
Any ideas what could be a problem here? Or at least how can i find what's actually a problem?
UPD. Most likely problems are caused by SVG in my HTML.

Dreamweaver CS5 - See what error is in PHP?

I noticed in Dreamweaver CS5, that when I edit a PHP file and an error is produced, while it highlights the line, I cannot find a way to get the actual error itself like you get in Eclipse.
You can't. Dreamweaver only tells you that the syntax is currently invalid. It doesn't report the actual error.