This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| #Please note that project folder is one level from public_html (/../projects/laravel/) | |
| #Plese note that laravel public folder files must be in public_html (configure the location) | |
| #1 Remove storage folder in public_html/public/storage if you perfomed storage:link in local | |
| #2 Create a php file: mysymlink.php @ public_html folder | |
| #3 Add below codes to mysymlink.php file | |
| $targetFolder = $_SERVER['DOCUMENT_ROOT'].'/../projects/laravel/storage/app/public'; | |
| $linkFolder = $_SERVER['DOCUMENT_ROOT'].'/storage'; | |
| symlink($targetFolder,$linkFolder); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo apt-get purge anydesk | |
| sudo apt-get autoclean | |
| sudo apt-get autoremove | |
| sudo apt update | |
| sudo apt list --upgradable | |
| sudo apt upgrade -y | |
| https://download.anydesk.com/linux/anydesk_4.0.0-1_amd64.deb | |
| sudo dpkg -i anydesk_4.0.0-1_amd64.deb | |
| sudo apt install -f | |
| sudo apt update |