This file contains 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
Restoring : | |
Done | |
----- | |
~/jobstuff | |
~/personal | |
~/CodeWorkspaces | |
~/Desktop | |
~/Documents | |
~/Downloads |
This file contains 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
server { | |
listen 80; | |
server_name {{host}}; | |
rewrite ^ https://{{host}}$request_uri? permanent; | |
} | |
server { |
This file contains 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
server { | |
listen 80; | |
server_name {{host}}; | |
rewrite ^ https://{{host}}$request_uri? permanent; | |
} | |
server { |
This file contains 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
server { | |
listen 80; | |
server_name {{host}}; | |
rewrite ^ https://{{host}}$request_uri? permanent; | |
} | |
server { |
This file contains 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
server { | |
listen 80; | |
server_name {{host}}; | |
rewrite ^ https://{{host}}$request_uri? permanent; | |
} | |
server { |
This file contains 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
server { | |
listen 80; | |
listen [::]:80; | |
server_name tao.openthinklabs; | |
return 301 https://$host$request_uri; | |
} | |
server { | |
listen 443 ssl default_server; |
This file contains 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 | |
$file = $request->file('file'); | |
$extension = $file->getClientOriginalExtension(); | |
$file_import = time().'.'.$extension; | |
Storage::disk('my_upload')->put('import_user/'.$file_import, File::get($file)); | |
$path = storage_path('dokumennya/import_user/'.$file_import); | |
$inputFileName = $path; |
This file contains 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
2020-12-14 15:14:41 0 [ERROR] [FATAL] InnoDB: fsync() returned 5 | |
201214 15:14:41 [ERROR] mysqld got signal 6 ; | |
This could be because you hit a bug. It is also possible that this binary | |
or one of the libraries it was linked against is corrupt, improperly built, | |
or misconfigured. This error can also be caused by malfunctioning hardware. | |
To report this bug, see https://mariadb.com/kb/en/reporting-bugs | |
We will try our best to scrape up some info that will hopefully help | |
diagnose the problem, but since we have already crashed, |
This file contains 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
Welcome to the MariaDB monitor. Commands end with ; or \g. | |
Your MariaDB connection id is 979 | |
Server version: 10.3.25-MariaDB-0ubuntu0.20.04.1 Ubuntu 20.04 | |
Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others. | |
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. | |
MariaDB [(none)]> SELECT TABLE_NAME, ENGINE FROM information_schema.TABLES WHERE TABLE_SCHEMA = 'taolbi'; | |
+------------------------+--------+ |
This file contains 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
2020-12-12 8:18:33 927711 [ERROR] [FATAL] InnoDB: fsync() returned 5 | |
201212 8:18:33 [ERROR] mysqld got signal 6 ; | |
This could be because you hit a bug. It is also possible that this binary | |
or one of the libraries it was linked against is corrupt, improperly built, | |
or misconfigured. This error can also be caused by malfunctioning hardware. | |
To report this bug, see https://mariadb.com/kb/en/reporting-bugs | |
We will try our best to scrape up some info that will hopefully help | |
diagnose the problem, but since we have already crashed, |
NewerOlder