https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29678
--- Comment #28 from David Cook <[email protected]> --- (In reply to David Cook from comment #27) > [2024/07/08 23:09:24] [WARN] http error : Operation in progress > http error : Unknown IO error > [2024/07/08 23:09:24] [WARN] XSLT::Base: Could not create file parser > context for file When using a HTTP URL, the URL is handed directly to the XSLT library, which is constrained by the security restrictions added by bug 23290. > [2024/07/08 23:10:20] [WARN] XSLT::Base: I/O warning : failed to load > external entity "MARC21slimUtils.xsl" > compilation error: file unknown-5571f4c2a370 element import > xsl:import : unable to load MARC21slimUtils.xsl > at /kohadevbox/koha/Koha/XSLT/Base.pm line 346. When using a HTTPS URL, the URL is first fetched by Koha code, and then presented to Koha as a string. Here it fails, probably because it can't find the file on the system. If loading a XSLT via HTTPS with properly set up filepaths, it should probably work. I'll see about doing a quick test over HTTPS... -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
