I installed erpnext v15 in windows 11 (with wsl). Installation was fine but I am not able to load css. Js is loaded but not css.
What could be the problem and how can I solve it ?
I installed erpnext v15 in windows 11 (with wsl). Installation was fine but I am not able to load css. Js is loaded but not css.
What could be the problem and how can I solve it ?
This was the problem.
Solved by this line:
sudo chmod 755 /home/{YOURUSER}
Thank you for your time.
None of these solution helped, until I found this GitHub comment:
https://github.com/frappe/erpnext/issues/40054#issuecomment-2595249110
Somehow I now constantly have to clear all my old volumes exept of these 2 volumes: frappe_docker_sites
and frappe_docker_db-data
:
This is the comment I use:
docker volume ls -q | grep -v -E 'frappe_docker_sites|frappe_docker_db-data' | xargs -r docker volume rm