Last active
December 25, 2022 03:11
-
-
Save totoprayogo1916/89bb241f0f09e188889460b936330d50 to your computer and use it in GitHub Desktop.
CodeIgniter4 :: Create a symlink on the WRITABLE (upload) directory for public
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
**WINDOWS** | |
mklink /D "D:\project\public\uploads" "D:\project\writable\uploads" | |
**LINUX** | |
ln -s ~/project/writable/uploads ~/project/public/uploads |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment