Describe the bug
Repo folder hierarchy does not match the intended structure. This breaks modules such as Google where the module path is hardcoded to /htdocs/custom/ - the repo is missing the custom folder layer, causing path resolution to fail at runtime.
To Reproduce
- Clone the repo and deploy to an htdocs-based server environment
- Attempt to load a module that references
/htdocs/custom/ (e.g., Google module)
- Observe that the module fails to load — the
custom/ directory layer is absent from the repo structure
Expected behavior
The repo folder structure should include a custom/ directory layer under htdocs/, matching the hardcoded paths expected by dependent modules:
htdocs/
└── custom/
└── [module folders]
Current behavior
The repo structure is missing the custom/ layer:
htdocs/
└── [module folders]
Additional context
Any module with a hardcoded reference to /htdocs/custom/ will be affected. Audit other modules for similar path assumptions to prevent recurrence.
Describe the bug
Repo folder hierarchy does not match the intended structure. This breaks modules such as Google where the module path is hardcoded to
/htdocs/custom/- the repo is missing thecustomfolder layer, causing path resolution to fail at runtime.To Reproduce
/htdocs/custom/(e.g., Google module)custom/directory layer is absent from the repo structureExpected behavior
The repo folder structure should include a
custom/directory layer underhtdocs/, matching the hardcoded paths expected by dependent modules:Current behavior
The repo structure is missing the
custom/layer:Additional context
Any module with a hardcoded reference to
/htdocs/custom/will be affected. Audit other modules for similar path assumptions to prevent recurrence.