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
| DELETE FROM wp_usermeta | |
| WHERE NOT EXISTS ( | |
| SELECT * FROM wp_users | |
| WHERE wp_usermeta.user_id = wp_users.ID | |
| ) |
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
| #Warming up | |
| sudo apt update -y; sudo apt dist-upgrade -y; sudo apt autoremove -y; | |
| #Install Nginx | |
| sudo apt update -y; sudo apt install nginx -y; | |
| #Restart Nginx | |
| sudo systemctl stop nginx.service; sudo systemctl start nginx.service; sudo systemctl enable nginx.service | |
| #Install MariaDB | |
| sudo apt-get install mariadb-server mariadb-client |
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
| Git Submodules | |
| ============== | |
| STRUCTURE | |
| -- Main Branch | |
| - App (Second Branch) | |
| - Frontend (Third Branch) | |
| =============== |
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 | |
| namespace App\Providers; | |
| use Illuminate\Support\ServiceProvider; | |
| use Aws\S3\S3Client; | |
| use League\Flysystem\AwsS3v3\AwsS3Adapter; | |
| use League\Flysystem\Filesystem; | |
| use Storage; | |
| class DOSpacesStorageServiceProvider extends ServiceProvider | |
| { | |
| /** |
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
| {"lastUpload":"2018-10-23T10:39:38.915Z","extensionVersion":"v3.2.0"} |
NewerOlder