-
Controller Versionlatest Describe Your Issue or Questioni am trying to make a custom portal page, by downloading template, edit the files then importing the files to the controller That happens if any the files gets any modification Expected Behaviorit should load any modified portal Steps to Reproducego to portals How You're Launching the Container
Container Logs
MongoDB Logs
Additional Context |
Beta Was this translation helpful? Give feedback.
Replies: 7 comments 3 replies
-
am currently experiencing this exact problem and i havent found a solution, am told it probably works in windows but docker container is where issues arise |
Beta Was this translation helpful? Give feedback.
-
So is this something that previously worked on older versions or is this specific to 5.15.8.2 (or some other specific version where it doesn't work)? Also, is this something that works outside of a container but doesn't work inside? I'm almost certain this is an application problem or a problem related to the Java version but not directly a containerization issue. |
Beta Was this translation helpful? Give feedback.
-
I've added example container logs since none were provided. The controller outputs an error when a client attempts to connect. |
Beta Was this translation helpful? Give feedback.
-
@mbentley could you be knowing the solution to this mystery. |
Beta Was this translation helpful? Give feedback.
-
OK, so I did a little bit more testing after some googling led me to another random java app's README on github where it mentioned creating a zip file from the CLI. This got me thinking that maybe there is something odd or malformed about the zipfile that is being created. I did a test on my Mac, which is what I typically use.
Original TemplateHere's the original template contents that gets downloaded for comparison: unzip -l demo_orig.zip
Archive: demo_orig.zip
Length Date Time Name
--------- ---------- ----- ----
6040 04-10-2024 14:23 [email protected]
0 07-02-2024 15:52 img/
564 07-02-2024 15:45 img/Edit.png
528 07-02-2024 15:45 img/EditActive.png
599 07-02-2024 15:45 img/ModalIconClose.png
835 07-02-2024 15:45 img/star.png
918 07-02-2024 15:45 img/starGrey.png
251941 04-10-2024 14:23 background.png
7083 07-02-2024 15:45 index.css
3026 07-02-2024 15:45 index.html
33845 07-02-2024 15:45 index.js
92903 07-02-2024 15:45 jquery.min.js
--------- -------
398282 12 files Create zip file from macOS context menu
$ unzip -l demo.zip
Archive: demo.zip
Length Date Time Name
--------- ---------- ----- ----
0 07-02-2024 15:52 img/
215 07-02-2024 15:52 __MACOSX/._img
528 07-02-2024 15:45 img/EditActive.png
215 07-02-2024 15:45 __MACOSX/img/._EditActive.png
918 07-02-2024 15:45 img/starGrey.png
215 07-02-2024 15:45 __MACOSX/img/._starGrey.png
599 07-02-2024 15:45 img/ModalIconClose.png
215 07-02-2024 15:45 __MACOSX/img/._ModalIconClose.png
564 07-02-2024 15:45 img/Edit.png
215 07-02-2024 15:45 __MACOSX/img/._Edit.png
835 07-02-2024 15:45 img/star.png
215 07-02-2024 15:45 __MACOSX/img/._star.png
251941 04-10-2024 14:23 background.png
215 04-10-2024 14:23 __MACOSX/._background.png
7083 07-02-2024 15:45 index.css
215 07-02-2024 15:45 __MACOSX/._index.css
3049 01-18-2025 06:32 index.html
314 01-18-2025 06:32 __MACOSX/._index.html
33845 07-02-2024 15:45 index.js
215 07-02-2024 15:45 __MACOSX/._index.js
92903 07-02-2024 15:45 jquery.min.js
215 07-02-2024 15:45 __MACOSX/._jquery.min.js
6040 04-10-2024 14:23 [email protected]
215 04-10-2024 14:23 __MACOSX/[email protected]
--------- -------
400984 24 files Create zip file from macOS cli using
|
Beta Was this translation helpful? Give feedback.
-
i took time to download template, unzip it, zip it again unmodified and uploaded, it worked fine i got the impression zipping works fine if nothing is modified, everything breaks once even anything small is changed. This frustrated me for very many days. |
Beta Was this translation helpful? Give feedback.
OK, so I did a little bit more testing after some googling led me to another random java app's README on github where it mentioned creating a zip file from the CLI. This got me thinking that maybe there is something odd or malformed about the zipfile that is being created.
I did a test on my Mac, which is what I typically use.
Original Template
Here's the original template contents that gets downloaded for comparison: