disetec21
Member
- Jun 24, 2020
- 69
- 12
- 8
I can't make the images to be seen from version 3.1, as you really did, when I execute the link it tells me that I create it satisfactorily, but the images are still not seen.You need to create a laravel symbolic link storage.
Make a PHP file and put :
<?php
$targetFolder = $_SERVER['DOCUMENT_ROOT'].'/code/storage/app/public';
$linkFolder = $_SERVER['DOCUMENT_ROOT'].'/storage';
symlink($targetFolder,$linkFolder);
echo 'Symlink process successfully completed';
Change the links according to your locations
Put the file in your server, then execute it (like www.yoursite.com/symlink.php and hit enter)
I hope this helps!