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 |
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
<input type="email" name="email" value="" autocomplete="off" class="form-material-input" id="email" pattern="((?!\.)[\w\-_+.]*[^.])(@\w+)(\.\w+(\.\w+)?[^.\W])" required> |
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 | |
function checkFolderPermissions($folderPath) { | |
// Memeriksa apakah folder ada | |
if (!file_exists($folderPath)) { | |
return "Folder tidak ditemukan."; | |
} | |
// Memeriksa apakah ini adalah sebuah folder | |
if (!is_dir($folderPath)) { | |
return "Ini bukan sebuah folder."; |
OlderNewer