According to my hosting service provider, I can't make a symlink between domines in a shared hosting because that's a mayor security issue (this happened when I ask them why my symlink created with "php artisan storage:link" wasn't working). So, I'm looking for another alternative if there is so I can't make my Laravel app works on their servers (the company I work for contracted the service with them without asking my opinion, so I don't have another alternative).
My project is located in "repositories/Laravel-app" in my user root folder, while the public folder content is located in "public_html (or www/html)" in my user root folder.
Mostly the command didn't work because different structure than the default. If you can SSH to the host, try to run the command your self you should add public_html/storage symlink to your_project/storage/app/public directory
ln -s <path to the file/folder to be linked> <the path of the link to be created>
@MohamedTammam I don't have access through SSH. What I did to create the symbolic link was to make a path that would execute the command "php storage:link". The link is created, but it does not work throwing the following error:
Symbolic link not allowed or link target not accessible: /home/myuser/public_html/storage, referer: http://myroute/
I tried to change the permissions according to some website, but it didn't work either.