The folder already exists and the user accessing the dashboard belongs to the UX group, which has full permissions on the folder /ood/www/apps/sys/dashboard/tmp.
Hey sorry for the issue. Looking at the path in this error message I noticed something seems off with this path of /ood/www/apps/sys/dashboard/tmp/cache/assets as it has the root coming out of /ood and not /www which is what I would expect.
I’m really not sure what this could be given the info though. What changes did you make to which files? What are the actual permissions and ownership of the file that is being accessed?
The issue is the way rails builds the asset pipeline here. You are referencing an asset using the rails asset pipeline but rails is not serving this right do to how it precompiles the assets.
What you should do here is place the image in /public and then reference it there as /custom_image.svg, this will avoid the asset pipeline issue.