I am faced with the mkdir(): Permission denied
issue and i have checked multiple answers. All of them stated the permission of the storage folder shoulf be changed sudo chmod -R 777 app/storage
but still the issue is not resolved in my case.
Any other solutions i should try to get it working?
Have you checked ownership of the master directory? If for example, it's owned by
root:root
you'd only be able to access it as root, unless you usedchown
to change ownership.