Missing CSS and/or JS files on redmine 6.0.7 podman install
Added by Andres Tarallo 3 days ago
I've downloaded a docker official docker image of Redmine 6.0.7, running on Podman hosted in Rocky Linux 9.6. Database backend is a VM with MySQL.
We installed the following plugins: Additionals , Additional Tags , Redmine Agile plugin (Light version), Redmine Checklists plugin (Light version), Redmine - Smile - Project Enumerations Custom Field Format and View Customize plugin.
I was pointed out that many .JS or CSS of plugins give a 404 error, examples:
http://MYSERVER/assets/plugin_assets/additionals/select2_helpers.js
http://MYSERVER/assets/plugin_assets/additional_tags/tags.js
We googled and found that similar issues where solved running bundle. This is what we runned from command line
podman exec -it redmine6 bundle exec rake assets:precompile RAILS_ENV=production
podman exec -it redmine6 bundle exec rake tmp:cache:clear RAILS_ENV=prodution
Finished without errors. But looks as if nothing changed, we get the same errors. Any help or ideas are appreciated.