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
| CREATE TABLE IF NOT EXISTS `xxx_litespeed_optimizer` ( | |
| `id` int(11) NOT NULL AUTO_INCREMENT, | |
| `hash_name` varchar(60) NOT NULL COMMENT "hash.filetype", | |
| `src` text NOT NULL COMMENT "full url array set", | |
| `dateline` int(11) NOT NULL, | |
| `refer` varchar(255) NOT NULL COMMENT "The container page url", | |
| PRIMARY KEY (`id`), | |
| UNIQUE KEY `hash_name` (`hash_name`), | |
| KEY `dateline` (`dateline`) |
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
| CREATE TABLE IF NOT EXISTS `xxx_litespeed_optimizer` ( | |
| `id` int(11) NOT NULL AUTO_INCREMENT, | |
| `hash_name` varchar(60) NOT NULL COMMENT "hash.filetype", | |
| `src` text NOT NULL COMMENT "full url array set", | |
| `dateline` int(11) NOT NULL, | |
| `refer` varchar(255) NOT NULL COMMENT "The container page url", | |
| PRIMARY KEY (`id`), | |
| UNIQUE KEY `hash_name` (`hash_name`), | |
| KEY `dateline` (`dateline`) |
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
| 05/20/19 14:20:02.522 [218.250.236.27:53080 1 dyj] 💓 ------POST HTTP/1.1 /wp-login.php | |
| 05/20/19 14:20:02.522 [218.250.236.27:53080 1 dyj] Query String: | |
| 05/20/19 14:20:02.522 [218.250.236.27:53080 1 dyj] HTTP_REFERER: http://ls.rcvc.io/loginpress/ | |
| 05/20/19 14:20:02.522 [218.250.236.27:53080 1 dyj] User Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36 | |
| 05/20/19 14:20:02.522 [218.250.236.27:53080 1 dyj] Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3 | |
| 05/20/19 14:20:02.522 [218.250.236.27:53080 1 dyj] Accept Encoding: gzip, deflate | |
| 05/20/19 14:20:02.522 [218.250.236.27:53080 1 dyj] X-LSCACHE: true | |
| 05/20/19 14:20:02.649 [218.250.236.27:53080 1 dyj] -------- litespeed-cache.class init run -------- | |
| 05/20/19 14:20:02.650 [218.250.236.27:53080 1 dyj] Media init | |
| 05/20/19 14:20:02.650 [218.250.236.27:53080 1 dyj] ---- Run get_role ---- |
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
| <Route | |
| onChange={(prevState, nextState) => { | |
| if (nextState.location.action !== 'POP') window.scrollTo(0, 0); | |
| }} | |
| > | |
| <Route/> |
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
| server { | |
| # ---- Should be default on your config ---- | |
| listen 80; | |
| listen [::]:80; | |
| # ...... | |
| # ---- ^^^ should be default set on your config ^^^ ---- |
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
| $brew install jpegoptim | |
| $find ./ -name "*.jpg" -exec jpegoptim -m 90 {} \; |
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Login</title> | |
| </head> | |
| <body> | |
| <section> | |
| <div id="message"></div> |
NewerOlder