Advertisement
Werdffelynir

cloud errors

Mar 6th, 2020
708
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 14.48 KB | None | 0 0
  1.  
  2. <style>
  3. .is-hidden{visibility: hidden}
  4. .none,.hide{display: none}
  5. .block{display: block}
  6. .inline{display: inline}
  7. .inline-block{display: inline-block}
  8. .text-left{text-align:left}
  9. .text-right{text-align:right}
  10. .text-center{text-align:center}
  11. .font-bold{font-weight: bold}
  12. .font-italic{font-style: italic}
  13. .font-normal{font-style: normal; font-weight: normal}
  14. .margin-top{margin-top:0}
  15. .margin-bottom{margin-bottom: 0}
  16. .margin-left{margin-left: 0}
  17. .margin-right{margin-right: 0}
  18. .margin-center{margin: 0 auto}
  19. .float-left{float: left}
  20. .float-right{float: right}
  21. .table{display:table; width:100%; height: 100%}
  22. .table>*{display:table-cell; vertical-align:middle}
  23. .table-cell{display:table-cell; vertical-align:middle}
  24. .table-row{display:table-row}
  25. .table-column{display:table-column}
  26. .table-capt{display:table-caption}
  27. .valign-baseline{vertical-align:baseline}
  28. .valign-bottom{vertical-align:bottom}
  29. .valign-middle{vertical-align:middle}
  30. .valign-top{vertical-align:top}
  31. .select-off{-webkit-user-select: none; -moz-user-select: none; user-select: none}
  32. .flex{display: flex}
  33. .flex-around{display: flex; justify-content: space-around}
  34. .flex-between{display: flex; justify-content: space-between}
  35. .flex-center{display: flex; align-items: center}
  36. .pt-1{padding-top:1rem}.pt-2{padding-top:2rem}.pt-3{padding-top:3rem}.pt-4{padding-top:4rem}.pt-5{padding-top:5rem}
  37. .pb-1{padding-bottom:1rem}.pb-2{padding-bottom:2rem}.pb-3{padding-bottom:3rem}.pb-4{padding-bottom:4rem}.pb-5{padding-bottom:5rem}
  38. .pl-1{padding-left:1rem}.pl-2{padding-left:2rem}.pl-3{padding-left:3rem}.pl-4{padding-left:4rem}.pl-5{padding-left:5rem}
  39. .pr-1{padding-right:1rem}.pr-2{padding-right:2rem}.pr-3{padding-right:3rem}.pr-4{padding-right:4rem}.pr-5{padding-right:5rem}
  40. .mt-1{margin-top:1rem}.mt-2{margin-top:2rem}.mt-3{margin-top:3rem}.mt-4{margin-top:4rem}.mt-5{margin-top:5rem}
  41. .mb-1{margin-bottom:1rem}.mb-2{margin-bottom:2rem}.mb-3{margin-bottom:3rem}.mb-4{margin-bottom:4rem}.mb-5{margin-bottom:5rem}
  42. .ml-1{margin-left:1rem}.ml-2{margin-left:2rem}.ml-3{margin-left:3rem}.ml-4{margin-left:4rem}.ml-5{margin-left:5rem}
  43. .mr-1{margin-right:1rem}.mr-2{margin-right:2rem}.mr-3{margin-right:3rem}.mr-4{margin-right:4rem}.mr-5{margin-right:5rem}
  44. *[class^="width-"] {display: inline-block}
  45. .width-1{width:1%}.width-2{width:2%}.width-3{width:3%}.width-4{width:4%}.width-5{width:5%}.width-10{width:10%}.width-15{width:15%}.width-20{width:20%}.width-25{width:25%}.width-33{width:33%}.width-50{width:50%}.width-75{width:75%}.width-100{width:100%}
  46. .height-1{height:1%}.height-2{height:2%}.height-3{height:3%}.height-4{height:4%}.height-5{height:5%}.height-10{height:10%}.height-15{height:15%}.height-20{height:20%}.height-25{height:25%}.height-33{height:33%}.height-50{height:50%}.height-75{height:75%}.height-100{height:100%}
  47. .vw-1{width:1vw}.vw-2{width:2vw}.vw-3{width:3vw}.vw-4{width:4vw}.vw-5{width:5vw}.vw-10{width:10vw}.vw-15{width:15vw}.vw-20{width:20vw}.vw-25{width:25vw}.vw-33{width:33vw}.vw-50{width:50vw}.vw-75{width:75vw}.vw-100{width:100vw}
  48. .vh-1{height:1vh}.vh-2{height:2vh}.vh-3{height:3vh}.vh-4{height:4vh}.vh-5{height:5vh}.vh-10{height:10vh}.vh-15{height:15vh}.vh-20{height:20vh}.vh-25{height:25vh}.vh-33{height:33vh}.vh-50{height:50vh}.vh-75{height:75vh}.vh-100{height:100vh}
  49. .clear:before, .clear:after{content: " "; display: table;}
  50. .clear:after {clear: both;}
  51. .clear {*zoom: 1;}
  52. .clear-line{clear: both; width: 100%; height: 1px; margin-top: -1px}
  53.  
  54. /* Base positions */
  55. .blocks * {
  56. box-sizing: border-box;
  57. }
  58. .blocks {
  59. /*position: absolute;*/
  60. margin-top: 3rem;
  61. margin-left: calc(50vw - 300px);
  62. margin-bottom: 3rem;
  63. }
  64. .block-a {
  65. margin-top: 100px;
  66. margin-left: 0;
  67. z-index: 1000;
  68. }
  69. .block-b {
  70. margin-top: 0;
  71. margin-left: 100px;
  72. z-index: 990;
  73. }
  74. .block {
  75. width: 500px;
  76. height: 700px;
  77. background: white;
  78. box-shadow: 0 0 5rem -3rem #171717;
  79. border: 1px solid #a9a9a9;
  80. }
  81. /* Special */
  82. .block {
  83. position: absolute;
  84. transition: z-index 1s ease;
  85. }
  86. .block-top {
  87. margin-top: 100px;
  88. margin-left: 0;
  89. z-index: 1000;
  90. animation: move 0.7s ease-in-out;
  91. }
  92. .block-under {
  93. margin-top: 0;
  94. margin-left: 100px;
  95. z-index: 990;
  96. animation: move_down 0.7s ease-in-out;
  97. }
  98.  
  99. @keyframes move {
  100. from {
  101. margin-top: 0;
  102. margin-left: 100px;
  103. z-index: 990;
  104. }
  105. 50% {
  106. margin-left: 400px;
  107. }
  108. to {
  109. margin-top: 100px;
  110. margin-left: 0;
  111. z-index: 1000;
  112. }
  113. }
  114.  
  115. @keyframes move_down {
  116. from {
  117. margin-top: 100px;
  118. margin-left: 0;
  119. }
  120. 50% {
  121. margin-top: 100px;
  122. margin-left: -110px;
  123. }
  124. to {
  125. margin-top: 0;
  126. margin-left: 100px;
  127. }
  128. }
  129.  
  130. .dr {
  131. text-align: center;
  132. }
  133.  
  134. .dr h1 {
  135. padding: 20px 0;
  136. font-size: 28px;
  137. }
  138. .dr a {
  139. color: #0A246A;
  140. text-decoration: underline;
  141. }
  142. .dr a.button {
  143. text-decoration: none;
  144. color: #fff;
  145. }
  146.  
  147. .dr .field {
  148. margin-top: 1rem;
  149. }
  150.  
  151. .dr .header {
  152. background: #434343;
  153. transition: background 0.5s ease-in-out;
  154. }
  155. .dr .header h1 {
  156. color: #7b7b7b;
  157. transition: color 0.5s ease-in-out;
  158. }
  159. .dr .header-active {
  160. background: #ff0000;
  161. }
  162. .dr .header-active h1{
  163. color: #ffffff;
  164. }
  165.  
  166. .dr .error {
  167. color: #ff0000;
  168. min-height: 20px;}
  169. .dr .reg-loader {
  170. min-height: 32px;}
  171.  
  172. .dr .eye {
  173. width: 24px;
  174. height: 24px;
  175. position: absolute;
  176. margin-left: calc(50% + 80px);
  177. margin-top: -28px;
  178. cursor: pointer;
  179. background: url(/register/images/eye.png) no-repeat 100% 0%;
  180. filter: opacity(.5);
  181. }
  182.  
  183. .dr .eye-off {
  184. background: url(/register/images/eye.png) no-repeat 100% 100%;}
  185. .evaluate-content {min-height: 100vh;}
  186.  
  187. .dr textarea {
  188. height: 90px;}
  189. .dr .error-input {
  190. border: 1px solid red;}
  191.  
  192. @media screen and (max-width: 1200px) and (orientation: portrait)
  193. {
  194. .blocks {
  195. margin-left: 2.5vw;
  196. }
  197. .blocks * {
  198. font-size: 102%;
  199. }
  200. .header {
  201. padding-left: 0.2rem;
  202. }
  203. .header h1 {
  204. font-size: 1.3rem;
  205. }
  206. .block {
  207. /* transition: all 1s ease; */
  208. width: 95vw;
  209. /* width: 100%; */
  210. /* min-width: 346px; */
  211. height: auto;
  212. padding-bottom: 1rem;
  213. }
  214. .block-a {
  215. height: 360px;
  216. }
  217. .dr .eye {
  218. /* margin-left: calc(100% - 85px); */
  219. margin-top: -30px;
  220. }
  221.  
  222. /* animation */
  223. .block-top {
  224. margin-top: 100px;
  225. margin-left: 0;
  226. z-index: 1000;
  227. animation: move 0.7s ease-in-out;
  228. }
  229. .block-under {
  230. margin-top: 0;
  231. margin-left: 50px;
  232. z-index: 990;
  233. animation: move_down 0.7s ease-in-out;
  234. }
  235.  
  236. @keyframes move {
  237. from {
  238. margin-top: 0;
  239. margin-left: 50px;
  240. z-index: 990;
  241. }
  242. 50% {
  243. margin-left: 400px;
  244. }
  245. to {
  246. margin-top: 100px;
  247. margin-left: 0;
  248. z-index: 1000;
  249. }
  250. }
  251. @keyframes move_down {
  252. from {
  253. margin-top: 100px;
  254. margin-left: 0;
  255. }
  256. 50% {
  257. margin-top: 100px;
  258. margin-left: -60px;
  259. }
  260. to {
  261. margin-top: 0;
  262. margin-left: 50px;
  263. }
  264. }
  265.  
  266. }
  267.  
  268. @media screen and (max-width: 1200px) and (orientation: landscape)
  269. {
  270. .blocks {}
  271. .blocks * {
  272. font-size: 105%;
  273. }
  274. .block {
  275. width: 70vw;
  276. height: 570px;
  277. }
  278. }
  279.  
  280.  
  281. @media screen and (max-height: 380px)
  282. {
  283. .block {
  284. width: 100%;
  285. height: 570px;
  286. margin-left: 120px;
  287. }
  288.  
  289. .dr .eye {
  290. margin-left: calc(50% + 90px);
  291. margin-top: -30px;
  292. }
  293.  
  294. @keyframes move {
  295. from {
  296. margin-top: 0;
  297. margin-left: 50px;
  298. z-index: 990;
  299. }
  300. 50% {
  301. margin-left: 400px;
  302. }
  303. to {
  304. margin-top: 100px;
  305. margin-left: 0;
  306. z-index: 1000;
  307. }
  308. }
  309. @keyframes move_down {
  310. from {
  311. margin-top: 100px;
  312. margin-left: 0;
  313. }
  314. 50% {
  315. margin-top: 100px;
  316. margin-left: -60px;
  317. }
  318. to {
  319. margin-top: 0;
  320. margin-left: 120px;
  321. }
  322. }
  323. }
  324.  
  325. </style>
  326. ========================================================================================================================
  327. insert into requests (DateTime, Name, Email, IP, IPCountryCode, IPAddress, Note, Comment) values( NOW(), '', 'admin@admin.com', '176.37.205.104', '0', '0', '', null )
  328.  
  329.  
  330.  
  331.  
  332. http://cloudtest.worktime.com:3000/collector.js
  333.  
  334.  
  335.  
  336. Action php-cgi /php.cgi
  337. AddHandler php-cgi .php
  338.  
  339. #!/bin/bash
  340. /usr/local/bin/php-cgi -c /путь/к/файлу/php.ini
  341. ===========================
  342. 2020-03-06 11:55:11 SERVER -> CLIENT: 220 smtp.gmail.com ESMTP 124sm695593lfb.28 - gsmtp 2020-03-06 11:55:11 CLIENT -> SERVER: EHLO worktime.loc 2020-03-06 11:55:11 SERVER -> CLIENT: 250-smtp.gmail.com at your service, [195.230.144.234] 250-SIZE 35882577 250-8BITMIME 250-AUTH LOGIN PLAIN XOAUTH2 PLAIN-CLIENTTOKEN OAUTHBEARER XOAUTH 250-ENHANCEDSTATUSCODES 250-PIPELINING 250-CHUNKING 250 SMTPUTF8 2020-03-06 11:55:11 CLIENT -> SERVER: AUTH LOGIN 2020-03-06 11:55:11 SERVER -> CLIENT: 334 VXNlcm5hbWU6 2020-03-06 11:55:11 CLIENT -> SERVER: b2xlZy53ZXJkQHdvcmt0aW1lLmNvbQ== 2020-03-06 11:55:11 SERVER -> CLIENT: 334 UGFzc3dvcmQ6 2020-03-06 11:55:11 CLIENT -> SERVER: RmtmZDkwZmtzZA== 2020-03-06 11:55:12 SERVER -> CLIENT: 535-5.7.8 Username and Password not accepted. Learn more at 535 5.7.8 https://support.google.com/mail/?p=BadCredentials 124sm695593lfb.28 - gsmtp 2020-03-06 11:55:12 SMTP ERROR: Password command failed: 535-5.7.8 Username and Password not accepted. Learn more at 535 5.7.8 https://support.google.com/mail/?p=BadCredentials 124sm695593lfb.28 - gsmtp 2020-03-06 11:55:12 SMTP Error: Could not authenticate. 2020-03-06 11:55:12 CLIENT -> SERVER: QUIT 2020-03-06 11:55:12 SERVER -> CLIENT: 221 2.0.0 closing connection 124sm695593lfb.28 - gsmtp 2020-03-06 11:55:12 SMTP connect() failed. https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting
  343.  
  344.  
  345. [Fri Mar 06 10:13:12.413682 2020] [mpm_winnt:notice] [pid 3104:tid 216] AH00428: Parent: child process 4116 exited with status 3221225477 -- Restarting.
  346. [Fri Mar 06 10:13:12.464463 2020] [ssl:warn] [pid 3104:tid 216] AH01909: worktime.loc:443:0 server certificate does NOT include an ID which matches the server name
  347. [Fri Mar 06 10:13:12.464463 2020] [ssl:warn] [pid 3104:tid 216] AH01909: default:443:0 server certificate does NOT include an ID which matches the server name
  348. [Fri Mar 06 10:13:12.496689 2020] [mpm_winnt:notice] [pid 3104:tid 216] AH00455: Apache/2.4.41 (Win64) OpenSSL/1.1.1c configured -- resuming normal operations
  349. [Fri Mar 06 10:13:12.497666 2020] [mpm_winnt:notice] [pid 3104:tid 216] AH00456: Apache Lounge VC15 Server built: Aug 11 2019 12:20:04
  350. [Fri Mar 06 10:13:12.497666 2020] [core:notice] [pid 3104:tid 216] AH00094: Command line: 'C:\\server\\modules\\http\\Apache_2.4-PHP_7.2-7.3-x64\\bin\\httpd.exe -d C:/Server/modules/http/Apache_2.4-PHP_7.2-7.3-x64 -f c:\\server\\modules\\http\\Apache_2.4-PHP_7.2-7.3-x64\\conf\\httpd.conf'
  351. [Fri Mar 06 10:13:12.498643 2020] [mpm_winnt:notice] [pid 3104:tid 216] AH00418: Parent: Created child process 2232
  352. [Fri Mar 06 10:13:12.662705 2020] [ssl:warn] [pid 2232:tid 228] AH01909: worktime.loc:443:0 server certificate does NOT include an ID which matches the server name
  353. [Fri Mar 06 10:13:12.663682 2020] [ssl:warn] [pid 2232:tid 228] AH01909: default:443:0 server certificate does NOT include an ID which matches the server name
  354. [Fri Mar 06 10:13:12.685166 2020] [ssl:warn] [pid 2232:tid 228] AH01909: worktime.loc:443:0 server certificate does NOT include an ID which matches the server name
  355. [Fri Mar 06 10:13:12.685166 2020] [ssl:warn] [pid 2232:tid 228] AH01909: default:443:0 server certificate does NOT include an ID which matches the server name
  356. [Fri Mar 06 10:13:12.713486 2020] [mpm_winnt:notice] [pid 2232:tid 228] AH00354: Child: Starting 150 worker threads.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement