You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 28, 2022. It is now read-only.
Also created public/images function under ZendSkeletonModule folder and placed an image there. In my index.phtml file in ZendSkeletonModule, I call the image file as () which worked fine.
But when I hit the application module (which is the default module) I was getting an empty page. After digging a little bit, I changed the checkRequestUriForAsset method to check if the asset is directory or not before sending it.
...
foreach ($this->assetPaths as $assetPath) {
if (!is_dir($assetPath . $path)) {
if (file_exists($assetPath . $path)) {
$this->sendFile($assetPath . $path);
}
}
}
And know both Application and Skeleton modules works just as they should be.
I don't know if this was a bug or I was doing something wrong but just wanted to let you know.