0
I currently own the following tree in my dreamhost hosting
[Core do laravel]
- laracore
-- app
-- bootstrap
-- config ...
[Pasta public fora do core]
- exemplo.com.br
--css
--js
After adjusting the settings ran normal. But implementing the admin Voyager his image upload is in trouble. From what I researched I realized that it is in the Storage configuration.
- How can I solve this problem ?
On shared servers what is the best file structure ?
I tried running php Artisan Storage:link, but I may be missing something.
why did you take
public
of the correct location ? I see big problems doing so, mainly because the folderpublic
is responsible for having theindex.php
who calls the app.– novic
To avoid direct access through the core. The access to index I just hit the bootstrap route of the Laravel and works normal, but the part of Storage I need to figure out how to hit
– Ronnie G. Chagas
When you say:
Para evitar o acesso direto pelo core
the Laravel application, already configured to not directly access thecore
. Now if you remove thepublic
the part of thestorage
does not work either. Good try to configure Laravel the same way you program, will not have any problem and what you said is not correct.– novic
@Virgilionovic, thanks for clarifying me. After numerous searches I solved my problem with this link link
– Ronnie G. Chagas