I'm having trouble symbolically linking my storage directories in a new Spark installation. I checked the Spark docs ( found here ) and I tried to follow the instructions in the "Linking the repository directory section" section. But when I run the command
ln -s /storage/app/public /public/storage
I get the following error:
ln: failed to create symbolic link β/public/storageβ: No such file or directory.
This is strange because I checked through the command line and my editor, and the directory exists.
I also tried using
ln -sr /storage/app/public /public/storageas suggested here .
This created a symlink. But in my application, I still get 404 errors.
For more information that may help: I ββuse the Homestead development environment and I set up my project using the Spark installer. I also checked this other stack overflow question, but suggested that I take the same steps that I already tried.
Thanks for the help!
source
share