-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathdebug.log
3715 lines (3715 loc) · 392 KB
/
debug.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
- 14:57:15.109 INFO: --------------------------------------------------------
- 14:57:15.109 INFO: Started application
- 14:57:15.125 INFO: Logging to: C:\Users\Harun\Downloads\phpdesktop-chrome-57.0-rc-php-7.1.3\debug.log
- 14:57:15.125 INFO: Log level = DEBUG4
- 14:57:15.125 INFO: Starting Mongoose 3.9c web server
- 14:57:15.125 INFO: WWW directory: C:\Users\Harun\Downloads\phpdesktop-chrome-57.0-rc-php-7.1.3\www
- 14:57:15.125 INFO: Index files: index.html,index.php
- 14:57:15.141 INFO: CGI interpreter: C:\Users\Harun\Downloads\phpdesktop-chrome-57.0-rc-php-7.1.3\php\php-cgi.exe
- 14:57:15.141 INFO: CGI pattern: **.php$
- 14:57:15.141 INFO: Hide files patterns:
- 14:57:15.141 INFO: CGI environment variables set: TMP=C:\Users\Harun\AppData\Local\Temp\,TEMP=C:\Users\Harun\AppData\Local\Temp\,TMPDIR=C:\Users\Harun\AppData\Local\Temp\,SERVER_NAME=127.0.0.1,PHPDESKTOP_VERSION=57.0
- 14:57:15.172 INFO: Web server url: http://127.0.0.1:16674/
- 14:57:15.172 INFO: remote_debugging_port = 65169
- 14:57:15.172 DEBUG: Command line string for the browser process: "C:\Users\Harun\Downloads\phpdesktop-chrome-57.0-rc-php-7.1.3\phpdesktop-chrome.exe" --no-sandbox --lang=en-US --log-file="C:\Users\Harun\Downloads\phpdesktop-chrome-57.0-rc-php-7.1.3\debug.log" --remote-debugging-port=65169
- 14:57:15.469 DEBUG: App::OnContextInitialized()
- 14:57:15.469 DEBUG: Window max width/height = 1840/992
- 14:57:15.469 DEBUG: GetBrowserWindow(): not found, hwnd = 329212
- 14:57:15.469 DEBUG: WindowProc(): event WM_GETMINMAXINFO: could not fetch BrowserWindow
- 14:57:15.484 DEBUG: BrowserWindow::CreateBrowserControl()
- 14:57:15.000 DEBUG: Command line string for the gpu-process process: "C:\Users\Harun\Downloads\phpdesktop-chrome-57.0-rc-php-7.1.3\phpdesktop-chrome.exe" --type=gpu-process --no-sandbox --lang=en-US --log-file="C:\Users\Harun\Downloads\phpdesktop-chrome-57.0-rc-php-7.1.3\debug.log" --disable-direct-composition --supports-dual-gpus=false --gpu-driver-bug-workarounds=7,10,18,19,20,23,41,61,74 --disable-gl-extensions="GL_KHR_blend_equation_advanced GL_KHR_blend_equation_advanced_coherent" --gpu-vendor-id=0x8086 --gpu-device-id=0x0166 --gpu-driver-vendor="Intel Corporation" --gpu-driver-version=10.18.10.4358 --gpu-driver-date=12-21-2015 --lang=en-US --log-file="C:\Users\Harun\Downloads\phpdesktop-chrome-57.0-rc-php-7.1.3\debug.log" --service-request-channel-token=7DAD31619CB9DCDEBCAC10FE6AC4AC7D --mojo-platform-channel-handle=1832 /prefetch:2
- 14:57:15.484 DEBUG: StoreBrowserWindow(): hwnd = 329212
- 14:57:15.562 DEBUG: ClientHandler::OnAfterCreated()
- 14:57:15.562 DEBUG: SetCefBrowser() called in ClientHandler::OnAfterCreated()
- 14:57:15.594 DEBUG: OnLoadingStateChange: loading=1, url=
- 14:57:15.000 DEBUG: Command line string for the renderer process: "C:\Users\Harun\Downloads\phpdesktop-chrome-57.0-rc-php-7.1.3\phpdesktop-chrome.exe" --type=renderer --no-sandbox --primordial-pipe-token=C6A71AED3B123CAE1CDD460FE982D6A9 --lang=en-US --lang=en-US --log-file="C:\Users\Harun\Downloads\phpdesktop-chrome-57.0-rc-php-7.1.3\debug.log" --enable-pinch --device-scale-factor=1 --num-raster-threads=2 --enable-main-frame-before-activation --content-image-texture-target=0,0,3553;0,1,3553;0,2,3553;0,3,3553;0,4,3553;0,5,3553;0,6,3553;0,7,3553;0,8,3553;0,9,3553;0,10,3553;0,11,3553;0,12,3553;0,13,3553;0,14,3553;0,15,3553;1,0,3553;1,1,3553;1,2,3553;1,3,3553;1,4,3553;1,5,3553;1,6,3553;1,7,3553;1,8,3553;1,9,3553;1,10,3553;1,11,3553;1,12,3553;1,13,3553;1,14,3553;1,15,3553;2,0,3553;2,1,3553;2,2,3553;2,3,3553;2,4,3553;2,5,3553;2,6,3553;2,7,3553;2,8,3553;2,9,3553;2,10,3553;2,11,3553;2,12,3553;2,13,3553;2,14,3553;2,15,3553;3,0,3553;3,1,3553;3,2,3553;3,3,3553;3,4,3553;3,5,3553;3,6,3553;3,7,3553;3,8,3553;3,9,3553;3,10,3553;3,11,3553;3,12,3553;3,13,3553;3,14,3553;3,15,3553 --service-request-channel-token=C6A71AED3B123CAE1CDD460FE982D6A9 --renderer-client-id=3 --mojo-platform-channel-handle=2388 /prefetch:1
- 14:57:16.062 DEBUG: OnBrowserCreated()
[0310/145716.197:ERROR:child_thread_impl.cc(762)] Request for unknown Channel-associated interface: ui::mojom::GpuMain
- 14:57:17.484 INFO: GET 200 /
- 14:57:17.484 INFO: GET 200 /style.css
- 14:57:17.859 DEBUG: OnContextCreated()
- 14:57:17.547 DEBUG: OnLoadingStateChange: loading=0, url=http://127.0.0.1:16674/
- 14:57:22.125 DEBUG: WM_DESTROY
- 14:57:22.125 DEBUG: RemoveBrowserWindow(): hwnd = 329212
- 14:57:22.125 INFO: Stopping Mongoose web server
- 14:57:22.125 DEBUG: Mongoose webserver stopped immediately
- 14:57:22.125 DEBUG: OnBeforeClose() hwnd=263760
- 14:57:22.125 DEBUG: RemoveBrowserWindow(): hwnd = 263760
- 14:57:22.125 DEBUG: GetBrowserWindow(): not found, hwnd = 263760
- 14:57:22.125 WARNING: RemoveBrowserWindow() failed: GetBrowserWindow() failed
- 14:57:22.125 DEBUG: Calling CefQuitMessageLoop()
- 14:57:22.500 DEBUG: OnBrowserDestroyed()
- 14:57:22.203 INFO: Ended application
- 14:57:22.203 INFO: --------------------------------------------------------
- 15:04:30.094 INFO: --------------------------------------------------------
- 15:04:30.094 INFO: Started application
- 15:04:30.109 INFO: Logging to: C:\Users\Harun\Desktop\php-desktop\debug.log
- 15:04:30.109 INFO: Log level = DEBUG4
- 15:04:30.109 INFO: Starting Mongoose 3.9c web server
- 15:04:30.109 INFO: WWW directory: C:\Users\Harun\Desktop\php-desktop\www
- 15:04:30.109 INFO: Index files: index.html,public/index.php
- 15:04:30.109 INFO: CGI interpreter: C:\Users\Harun\Desktop\php-desktop\php\php-cgi.exe
- 15:04:30.109 INFO: CGI pattern: **.php$
- 15:04:30.109 INFO: Hide files patterns:
- 15:04:30.109 INFO: CGI environment variables set: TMP=C:\Users\Harun\AppData\Local\Temp\,TEMP=C:\Users\Harun\AppData\Local\Temp\,TMPDIR=C:\Users\Harun\AppData\Local\Temp\,SERVER_NAME=127.0.0.1,PHPDESKTOP_VERSION=57.0
- 15:04:30.125 INFO: Web server url: http://127.0.0.1:17591/
- 15:04:30.125 INFO: remote_debugging_port = 64337
- 15:04:30.125 DEBUG: Command line string for the browser process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --no-sandbox --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --remote-debugging-port=64337
- 15:04:31.203 DEBUG: App::OnContextInitialized()
- 15:04:31.203 DEBUG: Window max width/height = 1840/992
- 15:04:31.203 DEBUG: GetBrowserWindow(): not found, hwnd = 394880
- 15:04:31.203 DEBUG: WindowProc(): event WM_GETMINMAXINFO: could not fetch BrowserWindow
- 15:04:31.203 DEBUG: BrowserWindow::CreateBrowserControl()
- 15:04:31.203 DEBUG: StoreBrowserWindow(): hwnd = 394880
- 15:04:31.000 DEBUG: Command line string for the gpu-process process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --type=gpu-process --no-sandbox --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --disable-direct-composition --supports-dual-gpus=false --gpu-driver-bug-workarounds=7,10,18,19,20,23,41,61,74 --disable-gl-extensions="GL_KHR_blend_equation_advanced GL_KHR_blend_equation_advanced_coherent" --gpu-vendor-id=0x8086 --gpu-device-id=0x0166 --gpu-driver-vendor="Intel Corporation" --gpu-driver-version=10.18.10.4358 --gpu-driver-date=12-21-2015 --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --service-request-channel-token=4A4B33C6FC618BAC102E34390E598E52 --mojo-platform-channel-handle=1844 /prefetch:2
- 15:04:31.281 DEBUG: ClientHandler::OnAfterCreated()
- 15:04:31.281 DEBUG: SetCefBrowser() called in ClientHandler::OnAfterCreated()
- 15:04:31.297 DEBUG: OnLoadingStateChange: loading=1, url=
- 15:04:31.000 DEBUG: Command line string for the renderer process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --type=renderer --no-sandbox --primordial-pipe-token=681E812F43944CD3BF76DADB8FE45F67 --lang=en-US --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --enable-pinch --device-scale-factor=1 --num-raster-threads=2 --enable-main-frame-before-activation --content-image-texture-target=0,0,3553;0,1,3553;0,2,3553;0,3,3553;0,4,3553;0,5,3553;0,6,3553;0,7,3553;0,8,3553;0,9,3553;0,10,3553;0,11,3553;0,12,3553;0,13,3553;0,14,3553;0,15,3553;1,0,3553;1,1,3553;1,2,3553;1,3,3553;1,4,3553;1,5,3553;1,6,3553;1,7,3553;1,8,3553;1,9,3553;1,10,3553;1,11,3553;1,12,3553;1,13,3553;1,14,3553;1,15,3553;2,0,3553;2,1,3553;2,2,3553;2,3,3553;2,4,3553;2,5,3553;2,6,3553;2,7,3553;2,8,3553;2,9,3553;2,10,3553;2,11,3553;2,12,3553;2,13,3553;2,14,3553;2,15,3553;3,0,3553;3,1,3553;3,2,3553;3,3,3553;3,4,3553;3,5,3553;3,6,3553;3,7,3553;3,8,3553;3,9,3553;3,10,3553;3,11,3553;3,12,3553;3,13,3553;3,14,3553;3,15,3553 --service-request-channel-token=681E812F43944CD3BF76DADB8FE45F67 --renderer-client-id=3 --mojo-platform-channel-handle=2412 /prefetch:1
[0310/150431.203:ERROR:child_thread_impl.cc(762)] Request for unknown Channel-associated interface: ui::mojom::GpuMain
- 15:04:31.062 DEBUG: OnBrowserCreated()
- 15:04:32.547 INFO: GET 200 /
- 15:04:32.609 DEBUG: OnLoadingStateChange: loading=0, url=http://127.0.0.1:17591/
- 15:04:39.844 DEBUG: WM_DESTROY
- 15:04:39.844 DEBUG: RemoveBrowserWindow(): hwnd = 394880
- 15:04:39.844 INFO: Stopping Mongoose web server
- 15:04:39.844 DEBUG: Mongoose webserver stopped immediately
- 15:04:39.844 DEBUG: OnBeforeClose() hwnd=460338
- 15:04:39.859 DEBUG: RemoveBrowserWindow(): hwnd = 460338
- 15:04:39.859 DEBUG: GetBrowserWindow(): not found, hwnd = 460338
- 15:04:39.859 WARNING: RemoveBrowserWindow() failed: GetBrowserWindow() failed
- 15:04:39.859 DEBUG: Calling CefQuitMessageLoop()
- 15:04:39.531 DEBUG: OnBrowserDestroyed()
- 15:04:39.922 INFO: Ended application
- 15:04:39.922 INFO: --------------------------------------------------------
- 15:05:03.093 INFO: --------------------------------------------------------
- 15:05:03.093 INFO: Started application
- 15:05:03.093 INFO: Logging to: C:\Users\Harun\Desktop\php-desktop\debug.log
- 15:05:03.093 INFO: Log level = DEBUG4
- 15:05:03.109 INFO: Starting Mongoose 3.9c web server
- 15:05:03.109 INFO: WWW directory: C:\Users\Harun\Desktop\php-desktop\www
- 15:05:03.109 INFO: Index files: index.php
- 15:05:03.109 INFO: CGI interpreter: C:\Users\Harun\Desktop\php-desktop\php\php-cgi.exe
- 15:05:03.109 INFO: CGI pattern: **.php$
- 15:05:03.109 INFO: Hide files patterns:
- 15:05:03.109 INFO: CGI environment variables set: TMP=C:\Users\Harun\AppData\Local\Temp\,TEMP=C:\Users\Harun\AppData\Local\Temp\,TMPDIR=C:\Users\Harun\AppData\Local\Temp\,SERVER_NAME=127.0.0.1,PHPDESKTOP_VERSION=57.0
- 15:05:03.125 INFO: Web server url: http://127.0.0.1:17658/
- 15:05:03.125 INFO: remote_debugging_port = 55909
- 15:05:03.125 DEBUG: Command line string for the browser process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --no-sandbox --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --remote-debugging-port=55909
- 15:05:03.203 DEBUG: App::OnContextInitialized()
- 15:05:03.203 DEBUG: Window max width/height = 1840/992
- 15:05:03.000 DEBUG: Command line string for the gpu-process process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --type=gpu-process --no-sandbox --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --disable-direct-composition --supports-dual-gpus=false --gpu-driver-bug-workarounds=7,10,18,19,20,23,41,61,74 --disable-gl-extensions="GL_KHR_blend_equation_advanced GL_KHR_blend_equation_advanced_coherent" --gpu-vendor-id=0x8086 --gpu-device-id=0x0166 --gpu-driver-vendor="Intel Corporation" --gpu-driver-version=10.18.10.4358 --gpu-driver-date=12-21-2015 --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --service-request-channel-token=6C1AE1B1336A977C67296E34F7B1F731 --mojo-platform-channel-handle=1820 /prefetch:2
- 15:05:03.218 DEBUG: GetBrowserWindow(): not found, hwnd = 460214
- 15:05:03.218 DEBUG: WindowProc(): event WM_GETMINMAXINFO: could not fetch BrowserWindow
- 15:05:03.218 DEBUG: BrowserWindow::CreateBrowserControl()
- 15:05:03.218 DEBUG: StoreBrowserWindow(): hwnd = 460214
- 15:05:03.296 DEBUG: ClientHandler::OnAfterCreated()
- 15:05:03.296 DEBUG: SetCefBrowser() called in ClientHandler::OnAfterCreated()
[0310/150503.246:ERROR:child_thread_impl.cc(762)] Request for unknown Channel-associated interface: ui::mojom::GpuMain
- 15:05:03.312 DEBUG: OnLoadingStateChange: loading=1, url=
- 15:05:03.016 DEBUG: Command line string for the renderer process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --type=renderer --no-sandbox --primordial-pipe-token=5A712293652469E4DEB87AE2B325F480 --lang=en-US --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --enable-pinch --device-scale-factor=1 --num-raster-threads=2 --enable-main-frame-before-activation --content-image-texture-target=0,0,3553;0,1,3553;0,2,3553;0,3,3553;0,4,3553;0,5,3553;0,6,3553;0,7,3553;0,8,3553;0,9,3553;0,10,3553;0,11,3553;0,12,3553;0,13,3553;0,14,3553;0,15,3553;1,0,3553;1,1,3553;1,2,3553;1,3,3553;1,4,3553;1,5,3553;1,6,3553;1,7,3553;1,8,3553;1,9,3553;1,10,3553;1,11,3553;1,12,3553;1,13,3553;1,14,3553;1,15,3553;2,0,3553;2,1,3553;2,2,3553;2,3,3553;2,4,3553;2,5,3553;2,6,3553;2,7,3553;2,8,3553;2,9,3553;2,10,3553;2,11,3553;2,12,3553;2,13,3553;2,14,3553;2,15,3553;3,0,3553;3,1,3553;3,2,3553;3,3,3553;3,4,3553;3,5,3553;3,6,3553;3,7,3553;3,8,3553;3,9,3553;3,10,3553;3,11,3553;3,12,3553;3,13,3553;3,14,3553;3,15,3553 --service-request-channel-token=5A712293652469E4DEB87AE2B325F480 --renderer-client-id=3 --mojo-platform-channel-handle=2392 /prefetch:1
- 15:05:03.062 DEBUG: OnBrowserCreated()
- 15:05:06.062 INFO: GET 200 /
- 15:05:06.109 DEBUG: OnLoadingStateChange: loading=0, url=http://127.0.0.1:17658/
- 15:07:14.468 DEBUG: WM_DESTROY
- 15:07:14.468 DEBUG: RemoveBrowserWindow(): hwnd = 460214
- 15:07:14.468 INFO: Stopping Mongoose web server
- 15:07:14.468 DEBUG: Mongoose webserver stopped immediately
- 15:07:14.484 DEBUG: OnBeforeClose() hwnd=460538
- 15:07:14.484 DEBUG: RemoveBrowserWindow(): hwnd = 460538
- 15:07:14.484 DEBUG: GetBrowserWindow(): not found, hwnd = 460538
- 15:07:14.484 WARNING: RemoveBrowserWindow() failed: GetBrowserWindow() failed
- 15:07:14.484 DEBUG: Calling CefQuitMessageLoop()
- 15:07:14.141 DEBUG: OnBrowserDestroyed()
- 15:07:14.578 INFO: Ended application
- 15:07:14.578 INFO: --------------------------------------------------------
- 15:07:17.094 INFO: --------------------------------------------------------
- 15:07:17.094 INFO: Started application
- 15:07:17.094 INFO: Logging to: C:\Users\Harun\Desktop\php-desktop\debug.log
- 15:07:17.094 INFO: Log level = DEBUG4
- 15:07:17.094 INFO: Starting Mongoose 3.9c web server
- 15:07:17.110 INFO: WWW directory: C:\Users\Harun\Desktop\php-desktop\www
- 15:07:17.110 INFO: Index files: index.php
- 15:07:17.110 INFO: CGI interpreter: C:\Users\Harun\Desktop\php-desktop\php\php-cgi.exe
- 15:07:17.110 INFO: CGI pattern: **.php$
- 15:07:17.110 INFO: Hide files patterns:
- 15:07:17.110 INFO: CGI environment variables set: TMP=C:\Users\Harun\AppData\Local\Temp\,TEMP=C:\Users\Harun\AppData\Local\Temp\,TMPDIR=C:\Users\Harun\AppData\Local\Temp\,SERVER_NAME=127.0.0.1,PHPDESKTOP_VERSION=57.0
- 15:07:17.110 INFO: Web server url: http://127.0.0.1:17949/
- 15:07:17.125 INFO: remote_debugging_port = 57890
- 15:07:17.125 DEBUG: Command line string for the browser process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --no-sandbox --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --remote-debugging-port=57890
- 15:07:17.188 DEBUG: App::OnContextInitialized()
- 15:07:17.188 DEBUG: Window max width/height = 1840/992
- 15:07:17.203 DEBUG: GetBrowserWindow(): not found, hwnd = 526074
- 15:07:17.203 DEBUG: WindowProc(): event WM_GETMINMAXINFO: could not fetch BrowserWindow
- 15:07:17.203 DEBUG: BrowserWindow::CreateBrowserControl()
- 15:07:17.203 DEBUG: StoreBrowserWindow(): hwnd = 526074
- 15:07:17.016 DEBUG: Command line string for the gpu-process process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --type=gpu-process --no-sandbox --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --disable-direct-composition --supports-dual-gpus=false --gpu-driver-bug-workarounds=7,10,18,19,20,23,41,61,74 --disable-gl-extensions="GL_KHR_blend_equation_advanced GL_KHR_blend_equation_advanced_coherent" --gpu-vendor-id=0x8086 --gpu-device-id=0x0166 --gpu-driver-vendor="Intel Corporation" --gpu-driver-version=10.18.10.4358 --gpu-driver-date=12-21-2015 --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --service-request-channel-token=9A62BF7042955EB5E494B08446A95800 --mojo-platform-channel-handle=1804 /prefetch:2
- 15:07:17.266 DEBUG: ClientHandler::OnAfterCreated()
- 15:07:17.266 DEBUG: SetCefBrowser() called in ClientHandler::OnAfterCreated()
- 15:07:17.281 DEBUG: OnLoadingStateChange: loading=1, url=
[0310/150718.021:ERROR:child_thread_impl.cc(762)] Request for unknown Channel-associated interface: ui::mojom::GpuMain
- 15:07:18.000 DEBUG: Command line string for the renderer process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --type=renderer --no-sandbox --primordial-pipe-token=C5F9A4C9BD2A8C58875A24FBE7C6F2DB --lang=en-US --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --enable-pinch --device-scale-factor=1 --num-raster-threads=2 --enable-main-frame-before-activation --content-image-texture-target=0,0,3553;0,1,3553;0,2,3553;0,3,3553;0,4,3553;0,5,3553;0,6,3553;0,7,3553;0,8,3553;0,9,3553;0,10,3553;0,11,3553;0,12,3553;0,13,3553;0,14,3553;0,15,3553;1,0,3553;1,1,3553;1,2,3553;1,3,3553;1,4,3553;1,5,3553;1,6,3553;1,7,3553;1,8,3553;1,9,3553;1,10,3553;1,11,3553;1,12,3553;1,13,3553;1,14,3553;1,15,3553;2,0,3553;2,1,3553;2,2,3553;2,3,3553;2,4,3553;2,5,3553;2,6,3553;2,7,3553;2,8,3553;2,9,3553;2,10,3553;2,11,3553;2,12,3553;2,13,3553;2,14,3553;2,15,3553;3,0,3553;3,1,3553;3,2,3553;3,3,3553;3,4,3553;3,5,3553;3,6,3553;3,7,3553;3,8,3553;3,9,3553;3,10,3553;3,11,3553;3,12,3553;3,13,3553;3,14,3553;3,15,3553 --service-request-channel-token=C5F9A4C9BD2A8C58875A24FBE7C6F2DB --renderer-client-id=3 --mojo-platform-channel-handle=2324 /prefetch:1
- 15:07:18.063 DEBUG: OnBrowserCreated()
- 15:07:21.938 INFO: GET 200 /
- 15:07:21.016 DEBUG: OnLoadingStateChange: loading=0, url=http://127.0.0.1:17949/
- 15:07:45.750 DEBUG: WM_DESTROY
- 15:07:45.750 DEBUG: RemoveBrowserWindow(): hwnd = 526074
- 15:07:45.750 INFO: Stopping Mongoose web server
- 15:07:45.750 DEBUG: Mongoose webserver stopped immediately
- 15:07:45.750 DEBUG: OnBeforeClose() hwnd=657388
- 15:07:45.750 DEBUG: RemoveBrowserWindow(): hwnd = 657388
- 15:07:45.750 DEBUG: GetBrowserWindow(): not found, hwnd = 657388
- 15:07:45.750 WARNING: RemoveBrowserWindow() failed: GetBrowserWindow() failed
- 15:07:45.766 DEBUG: Calling CefQuitMessageLoop()
- 15:07:45.813 INFO: Ended application
- 15:07:45.813 INFO: --------------------------------------------------------
- 15:08:50.094 INFO: --------------------------------------------------------
- 15:08:50.094 INFO: Started application
- 15:08:50.094 INFO: Logging to: C:\Users\Harun\Desktop\php-desktop\debug.log
- 15:08:50.094 INFO: Log level = DEBUG4
- 15:08:50.094 INFO: Starting Mongoose 3.9c web server
- 15:08:50.094 INFO: WWW directory: C:\Users\Harun\Desktop\php-desktop\www
- 15:08:50.094 INFO: Index files: index.php
- 15:08:50.094 INFO: CGI interpreter: C:\Users\Harun\Desktop\php-desktop\php\php-cgi.exe
- 15:08:50.094 INFO: CGI pattern: **.php$
- 15:08:50.094 INFO: Hide files patterns:
- 15:08:50.094 INFO: CGI environment variables set: TMP=C:\Users\Harun\AppData\Local\Temp\,TEMP=C:\Users\Harun\AppData\Local\Temp\,TMPDIR=C:\Users\Harun\AppData\Local\Temp\,SERVER_NAME=127.0.0.1,PHPDESKTOP_VERSION=57.0
- 15:08:50.110 INFO: Web server url: http://127.0.0.1:18144/
- 15:08:50.110 INFO: remote_debugging_port = 56817
- 15:08:50.110 DEBUG: Command line string for the browser process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --no-sandbox --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --remote-debugging-port=56817
- 15:08:50.188 DEBUG: App::OnContextInitialized()
- 15:08:50.188 DEBUG: Window max width/height = 1840/992
- 15:08:50.188 DEBUG: GetBrowserWindow(): not found, hwnd = 853696
- 15:08:50.204 DEBUG: WindowProc(): event WM_GETMINMAXINFO: could not fetch BrowserWindow
- 15:08:50.204 DEBUG: BrowserWindow::CreateBrowserControl()
- 15:08:50.204 DEBUG: StoreBrowserWindow(): hwnd = 853696
- 15:08:50.000 DEBUG: Command line string for the gpu-process process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --type=gpu-process --no-sandbox --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --disable-direct-composition --supports-dual-gpus=false --gpu-driver-bug-workarounds=7,10,18,19,20,23,41,61,74 --disable-gl-extensions="GL_KHR_blend_equation_advanced GL_KHR_blend_equation_advanced_coherent" --gpu-vendor-id=0x8086 --gpu-device-id=0x0166 --gpu-driver-vendor="Intel Corporation" --gpu-driver-version=10.18.10.4358 --gpu-driver-date=12-21-2015 --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --service-request-channel-token=79E52AE1C7045343A713D1E21DA5BFF9 --mojo-platform-channel-handle=1804 /prefetch:2
- 15:08:50.266 DEBUG: ClientHandler::OnAfterCreated()
- 15:08:50.282 DEBUG: SetCefBrowser() called in ClientHandler::OnAfterCreated()
- 15:08:50.297 DEBUG: OnLoadingStateChange: loading=1, url=
[0310/150850.311:ERROR:child_thread_impl.cc(762)] Request for unknown Channel-associated interface: ui::mojom::GpuMain
- 15:08:50.000 DEBUG: Command line string for the renderer process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --type=renderer --no-sandbox --primordial-pipe-token=E3D3BCC7EA431D6F07B6108A75A9ADB9 --lang=en-US --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --enable-pinch --device-scale-factor=1 --num-raster-threads=2 --enable-main-frame-before-activation --content-image-texture-target=0,0,3553;0,1,3553;0,2,3553;0,3,3553;0,4,3553;0,5,3553;0,6,3553;0,7,3553;0,8,3553;0,9,3553;0,10,3553;0,11,3553;0,12,3553;0,13,3553;0,14,3553;0,15,3553;1,0,3553;1,1,3553;1,2,3553;1,3,3553;1,4,3553;1,5,3553;1,6,3553;1,7,3553;1,8,3553;1,9,3553;1,10,3553;1,11,3553;1,12,3553;1,13,3553;1,14,3553;1,15,3553;2,0,3553;2,1,3553;2,2,3553;2,3,3553;2,4,3553;2,5,3553;2,6,3553;2,7,3553;2,8,3553;2,9,3553;2,10,3553;2,11,3553;2,12,3553;2,13,3553;2,14,3553;2,15,3553;3,0,3553;3,1,3553;3,2,3553;3,3,3553;3,4,3553;3,5,3553;3,6,3553;3,7,3553;3,8,3553;3,9,3553;3,10,3553;3,11,3553;3,12,3553;3,13,3553;3,14,3553;3,15,3553 --service-request-channel-token=E3D3BCC7EA431D6F07B6108A75A9ADB9 --renderer-client-id=3 --mojo-platform-channel-handle=2384 /prefetch:1
- 15:08:50.047 DEBUG: OnBrowserCreated()
- 15:08:52.469 INFO: GET 200 /
- 15:08:52.516 DEBUG: OnLoadingStateChange: loading=0, url=http://127.0.0.1:18144/
- 15:08:57.813 DEBUG: WM_DESTROY
- 15:08:57.829 DEBUG: RemoveBrowserWindow(): hwnd = 853696
- 15:08:57.829 INFO: Stopping Mongoose web server
- 15:08:57.829 DEBUG: Mongoose webserver stopped immediately
- 15:08:57.829 DEBUG: OnBeforeClose() hwnd=1312136
- 15:08:57.829 DEBUG: RemoveBrowserWindow(): hwnd = 1312136
- 15:08:57.829 DEBUG: GetBrowserWindow(): not found, hwnd = 1312136
- 15:08:57.829 WARNING: RemoveBrowserWindow() failed: GetBrowserWindow() failed
- 15:08:57.829 DEBUG: Calling CefQuitMessageLoop()
- 15:08:57.500 DEBUG: OnBrowserDestroyed()
- 15:08:57.875 INFO: Ended application
- 15:08:57.875 INFO: --------------------------------------------------------
- 15:10:43.094 INFO: --------------------------------------------------------
- 15:10:43.094 INFO: Started application
- 15:10:43.094 INFO: Logging to: C:\Users\Harun\Desktop\php-desktop\debug.log
- 15:10:43.094 INFO: Log level = DEBUG4
- 15:10:43.094 INFO: Starting Mongoose 3.9c web server
- 15:10:43.094 INFO: WWW directory: C:\Users\Harun\Desktop\php-desktop\www
- 15:10:43.094 INFO: Index files: index.php
- 15:10:43.109 INFO: CGI interpreter: C:\Users\Harun\Desktop\php-desktop\php\php-cgi.exe
- 15:10:43.109 INFO: CGI pattern: **.php$
- 15:10:43.109 INFO: Hide files patterns:
- 15:10:43.109 INFO: CGI environment variables set: TMP=C:\Users\Harun\AppData\Local\Temp\,TEMP=C:\Users\Harun\AppData\Local\Temp\,TMPDIR=C:\Users\Harun\AppData\Local\Temp\,SERVER_NAME=127.0.0.1,PHPDESKTOP_VERSION=57.0
- 15:10:43.109 INFO: Web server url: http://127.0.0.1:18378/
- 15:10:43.109 INFO: remote_debugging_port = 56523
- 15:10:43.109 DEBUG: Command line string for the browser process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --no-sandbox --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --remote-debugging-port=56523
- 15:10:43.188 DEBUG: App::OnContextInitialized()
- 15:10:43.188 DEBUG: Window max width/height = 1840/992
- 15:10:43.188 DEBUG: GetBrowserWindow(): not found, hwnd = 1050044
- 15:10:43.188 DEBUG: WindowProc(): event WM_GETMINMAXINFO: could not fetch BrowserWindow
- 15:10:43.188 DEBUG: BrowserWindow::CreateBrowserControl()
- 15:10:43.188 DEBUG: StoreBrowserWindow(): hwnd = 1050044
- 15:10:43.000 DEBUG: Command line string for the gpu-process process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --type=gpu-process --no-sandbox --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --disable-direct-composition --supports-dual-gpus=false --gpu-driver-bug-workarounds=7,10,18,19,20,23,41,61,74 --disable-gl-extensions="GL_KHR_blend_equation_advanced GL_KHR_blend_equation_advanced_coherent" --gpu-vendor-id=0x8086 --gpu-device-id=0x0166 --gpu-driver-vendor="Intel Corporation" --gpu-driver-version=10.18.10.4358 --gpu-driver-date=12-21-2015 --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --service-request-channel-token=79BC9FF8852274ADCC7228DE6C8D3621 --mojo-platform-channel-handle=1828 /prefetch:2
- 15:10:43.281 DEBUG: ClientHandler::OnAfterCreated()
- 15:10:43.281 DEBUG: SetCefBrowser() called in ClientHandler::OnAfterCreated()
- 15:10:43.297 DEBUG: OnLoadingStateChange: loading=1, url=
- 15:10:43.000 DEBUG: Command line string for the renderer process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --type=renderer --no-sandbox --primordial-pipe-token=2DB621779870F7474EAB993154E7E6B5 --lang=en-US --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --enable-pinch --device-scale-factor=1 --num-raster-threads=2 --enable-main-frame-before-activation --content-image-texture-target=0,0,3553;0,1,3553;0,2,3553;0,3,3553;0,4,3553;0,5,3553;0,6,3553;0,7,3553;0,8,3553;0,9,3553;0,10,3553;0,11,3553;0,12,3553;0,13,3553;0,14,3553;0,15,3553;1,0,3553;1,1,3553;1,2,3553;1,3,3553;1,4,3553;1,5,3553;1,6,3553;1,7,3553;1,8,3553;1,9,3553;1,10,3553;1,11,3553;1,12,3553;1,13,3553;1,14,3553;1,15,3553;2,0,3553;2,1,3553;2,2,3553;2,3,3553;2,4,3553;2,5,3553;2,6,3553;2,7,3553;2,8,3553;2,9,3553;2,10,3553;2,11,3553;2,12,3553;2,13,3553;2,14,3553;2,15,3553;3,0,3553;3,1,3553;3,2,3553;3,3,3553;3,4,3553;3,5,3553;3,6,3553;3,7,3553;3,8,3553;3,9,3553;3,10,3553;3,11,3553;3,12,3553;3,13,3553;3,14,3553;3,15,3553 --service-request-channel-token=2DB621779870F7474EAB993154E7E6B5 --renderer-client-id=3 --mojo-platform-channel-handle=2388 /prefetch:1
[0310/151043.330:ERROR:child_thread_impl.cc(762)] Request for unknown Channel-associated interface: ui::mojom::GpuMain
- 15:10:43.047 DEBUG: OnBrowserCreated()
- 15:10:44.719 INFO: GET 200 /
- 15:10:44.750 DEBUG: OnLoadingStateChange: loading=0, url=http://127.0.0.1:18378/
- 15:10:50.234 DEBUG: WM_DESTROY
- 15:10:50.234 DEBUG: RemoveBrowserWindow(): hwnd = 1050044
- 15:10:50.234 INFO: Stopping Mongoose web server
- 15:10:50.234 DEBUG: Mongoose webserver stopped immediately
- 15:10:50.250 DEBUG: OnBeforeClose() hwnd=918952
- 15:10:50.250 DEBUG: RemoveBrowserWindow(): hwnd = 918952
- 15:10:50.250 DEBUG: GetBrowserWindow(): not found, hwnd = 918952
- 15:10:50.250 WARNING: RemoveBrowserWindow() failed: GetBrowserWindow() failed
- 15:10:50.250 DEBUG: Calling CefQuitMessageLoop()
- 15:10:50.906 DEBUG: OnBrowserDestroyed()
- 15:10:50.297 INFO: Ended application
- 15:10:50.297 INFO: --------------------------------------------------------
- 15:14:12.093 INFO: --------------------------------------------------------
- 15:14:12.093 INFO: Started application
- 15:14:12.109 INFO: Logging to: C:\Users\Harun\Desktop\php-desktop\debug.log
- 15:14:12.109 INFO: Log level = DEBUG4
- 15:14:12.109 INFO: Starting Mongoose 3.9c web server
- 15:14:12.109 INFO: WWW directory: C:\Users\Harun\Desktop\php-desktop\www
- 15:14:12.109 INFO: Index files: index.php
- 15:14:12.109 INFO: CGI interpreter: C:\Users\Harun\Desktop\php-desktop\php\php-cgi.exe
- 15:14:12.109 INFO: CGI pattern: **.php$
- 15:14:12.109 INFO: Hide files patterns:
- 15:14:12.109 INFO: CGI environment variables set: TMP=C:\Users\Harun\AppData\Local\Temp\,TEMP=C:\Users\Harun\AppData\Local\Temp\,TMPDIR=C:\Users\Harun\AppData\Local\Temp\,SERVER_NAME=127.0.0.1,PHPDESKTOP_VERSION=57.0
- 15:14:12.125 INFO: Web server url: http://127.0.0.1:18828/
- 15:14:12.125 INFO: remote_debugging_port = 56330
- 15:14:12.125 DEBUG: Command line string for the browser process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --no-sandbox --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --remote-debugging-port=56330
- 15:14:12.203 DEBUG: App::OnContextInitialized()
- 15:14:12.203 DEBUG: Window max width/height = 1840/992
- 15:14:13.203 DEBUG: GetBrowserWindow(): not found, hwnd = 460800
- 15:14:13.218 DEBUG: WindowProc(): event WM_GETMINMAXINFO: could not fetch BrowserWindow
- 15:14:13.218 DEBUG: BrowserWindow::CreateBrowserControl()
- 15:14:13.218 DEBUG: StoreBrowserWindow(): hwnd = 460800
- 15:14:13.000 DEBUG: Command line string for the gpu-process process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --type=gpu-process --no-sandbox --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --disable-direct-composition --supports-dual-gpus=false --gpu-driver-bug-workarounds=7,10,18,19,20,23,41,61,74 --disable-gl-extensions="GL_KHR_blend_equation_advanced GL_KHR_blend_equation_advanced_coherent" --gpu-vendor-id=0x8086 --gpu-device-id=0x0166 --gpu-driver-vendor="Intel Corporation" --gpu-driver-version=10.18.10.4358 --gpu-driver-date=12-21-2015 --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --service-request-channel-token=04A372C58C97E5A3DB5ED1844C81A8D8 --mojo-platform-channel-handle=1812 /prefetch:2
- 15:14:13.281 DEBUG: ClientHandler::OnAfterCreated()
- 15:14:13.281 DEBUG: SetCefBrowser() called in ClientHandler::OnAfterCreated()
- 15:14:13.296 DEBUG: OnLoadingStateChange: loading=1, url=
- 15:14:13.000 DEBUG: Command line string for the renderer process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --type=renderer --no-sandbox --primordial-pipe-token=F38F9A4119786F1E41BFB6CEAE27D2E6 --lang=en-US --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --enable-pinch --device-scale-factor=1 --num-raster-threads=2 --enable-main-frame-before-activation --content-image-texture-target=0,0,3553;0,1,3553;0,2,3553;0,3,3553;0,4,3553;0,5,3553;0,6,3553;0,7,3553;0,8,3553;0,9,3553;0,10,3553;0,11,3553;0,12,3553;0,13,3553;0,14,3553;0,15,3553;1,0,3553;1,1,3553;1,2,3553;1,3,3553;1,4,3553;1,5,3553;1,6,3553;1,7,3553;1,8,3553;1,9,3553;1,10,3553;1,11,3553;1,12,3553;1,13,3553;1,14,3553;1,15,3553;2,0,3553;2,1,3553;2,2,3553;2,3,3553;2,4,3553;2,5,3553;2,6,3553;2,7,3553;2,8,3553;2,9,3553;2,10,3553;2,11,3553;2,12,3553;2,13,3553;2,14,3553;2,15,3553;3,0,3553;3,1,3553;3,2,3553;3,3,3553;3,4,3553;3,5,3553;3,6,3553;3,7,3553;3,8,3553;3,9,3553;3,10,3553;3,11,3553;3,12,3553;3,13,3553;3,14,3553;3,15,3553 --service-request-channel-token=F38F9A4119786F1E41BFB6CEAE27D2E6 --renderer-client-id=3 --mojo-platform-channel-handle=2404 /prefetch:1
[0310/151413.135:ERROR:child_thread_impl.cc(762)] Request for unknown Channel-associated interface: ui::mojom::GpuMain
- 15:14:13.047 DEBUG: OnBrowserCreated()
- 15:14:16.687 INFO: GET 404 /auth/login
- 15:14:16.687 INFO: GET 302 /
- 15:14:16.703 DEBUG: OnLoadingStateChange: loading=0, url=http://127.0.0.1:18828/auth/login
- 15:15:23.343 DEBUG: WM_DESTROY
- 15:15:23.343 DEBUG: RemoveBrowserWindow(): hwnd = 460800
- 15:15:23.343 INFO: Stopping Mongoose web server
- 15:15:23.343 DEBUG: Mongoose webserver stopped immediately
- 15:15:23.343 DEBUG: OnBeforeClose() hwnd=984488
- 15:15:23.343 DEBUG: RemoveBrowserWindow(): hwnd = 984488
- 15:15:23.343 DEBUG: GetBrowserWindow(): not found, hwnd = 984488
- 15:15:23.343 WARNING: RemoveBrowserWindow() failed: GetBrowserWindow() failed
- 15:15:23.343 DEBUG: Calling CefQuitMessageLoop()
- 15:15:23.016 DEBUG: OnBrowserDestroyed()
- 15:15:23.390 INFO: Ended application
- 15:15:23.390 INFO: --------------------------------------------------------
- 15:15:27.093 INFO: --------------------------------------------------------
- 15:15:27.093 INFO: Started application
- 15:15:27.093 INFO: Logging to: C:\Users\Harun\Desktop\php-desktop\debug.log
- 15:15:27.093 INFO: Log level = DEBUG4
- 15:15:27.109 INFO: Starting Mongoose 3.9c web server
- 15:15:27.109 INFO: WWW directory: C:\Users\Harun\Desktop\php-desktop\www
- 15:15:27.109 INFO: Index files: index.php
- 15:15:27.109 INFO: CGI interpreter: C:\Users\Harun\Desktop\php-desktop\php\php-cgi.exe
- 15:15:27.109 INFO: CGI pattern: **.php$
- 15:15:27.109 INFO: Hide files patterns:
- 15:15:27.109 INFO: CGI environment variables set: TMP=C:\Users\Harun\AppData\Local\Temp\,TEMP=C:\Users\Harun\AppData\Local\Temp\,TMPDIR=C:\Users\Harun\AppData\Local\Temp\,SERVER_NAME=127.0.0.1,PHPDESKTOP_VERSION=57.0
- 15:15:27.125 INFO: Web server url: http://127.0.0.1:8000/
- 15:15:27.125 INFO: remote_debugging_port = 62563
- 15:15:27.125 DEBUG: Command line string for the browser process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --no-sandbox --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --remote-debugging-port=62563
- 15:15:27.187 DEBUG: App::OnContextInitialized()
- 15:15:27.203 DEBUG: Window max width/height = 1840/992
- 15:15:27.203 DEBUG: GetBrowserWindow(): not found, hwnd = 1443334
- 15:15:27.203 DEBUG: WindowProc(): event WM_GETMINMAXINFO: could not fetch BrowserWindow
- 15:15:27.203 DEBUG: BrowserWindow::CreateBrowserControl()
- 15:15:27.203 DEBUG: StoreBrowserWindow(): hwnd = 1443334
- 15:15:27.000 DEBUG: Command line string for the gpu-process process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --type=gpu-process --no-sandbox --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --disable-direct-composition --supports-dual-gpus=false --gpu-driver-bug-workarounds=7,10,18,19,20,23,41,61,74 --disable-gl-extensions="GL_KHR_blend_equation_advanced GL_KHR_blend_equation_advanced_coherent" --gpu-vendor-id=0x8086 --gpu-device-id=0x0166 --gpu-driver-vendor="Intel Corporation" --gpu-driver-version=10.18.10.4358 --gpu-driver-date=12-21-2015 --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --service-request-channel-token=8BA0E8AF35F1D72536733076640FB89A --mojo-platform-channel-handle=1812 /prefetch:2
- 15:15:27.265 DEBUG: ClientHandler::OnAfterCreated()
- 15:15:27.265 DEBUG: SetCefBrowser() called in ClientHandler::OnAfterCreated()
- 15:15:27.281 DEBUG: OnLoadingStateChange: loading=1, url=
[0310/151527.812:ERROR:child_thread_impl.cc(762)] Request for unknown Channel-associated interface: ui::mojom::GpuMain
- 15:15:27.000 DEBUG: Command line string for the renderer process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --type=renderer --no-sandbox --primordial-pipe-token=B60184848B11783B39913B6A11C1E651 --lang=en-US --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --enable-pinch --device-scale-factor=1 --num-raster-threads=2 --enable-main-frame-before-activation --content-image-texture-target=0,0,3553;0,1,3553;0,2,3553;0,3,3553;0,4,3553;0,5,3553;0,6,3553;0,7,3553;0,8,3553;0,9,3553;0,10,3553;0,11,3553;0,12,3553;0,13,3553;0,14,3553;0,15,3553;1,0,3553;1,1,3553;1,2,3553;1,3,3553;1,4,3553;1,5,3553;1,6,3553;1,7,3553;1,8,3553;1,9,3553;1,10,3553;1,11,3553;1,12,3553;1,13,3553;1,14,3553;1,15,3553;2,0,3553;2,1,3553;2,2,3553;2,3,3553;2,4,3553;2,5,3553;2,6,3553;2,7,3553;2,8,3553;2,9,3553;2,10,3553;2,11,3553;2,12,3553;2,13,3553;2,14,3553;2,15,3553;3,0,3553;3,1,3553;3,2,3553;3,3,3553;3,4,3553;3,5,3553;3,6,3553;3,7,3553;3,8,3553;3,9,3553;3,10,3553;3,11,3553;3,12,3553;3,13,3553;3,14,3553;3,15,3553 --service-request-channel-token=B60184848B11783B39913B6A11C1E651 --renderer-client-id=3 --mojo-platform-channel-handle=2400 /prefetch:1
- 15:15:27.047 DEBUG: OnBrowserCreated()
- 15:15:29.422 INFO: GET 404 /auth/login
- 15:15:29.437 INFO: GET 302 /
- 15:15:29.453 DEBUG: OnLoadingStateChange: loading=0, url=http://127.0.0.1:8000/auth/login
- 15:16:40.734 DEBUG: WM_DESTROY
- 15:16:40.750 DEBUG: RemoveBrowserWindow(): hwnd = 1443334
- 15:16:40.750 INFO: Stopping Mongoose web server
- 15:16:40.750 DEBUG: Mongoose webserver stopped immediately
- 15:16:40.750 DEBUG: OnBeforeClose() hwnd=1050024
- 15:16:40.750 DEBUG: RemoveBrowserWindow(): hwnd = 1050024
- 15:16:40.750 DEBUG: GetBrowserWindow(): not found, hwnd = 1050024
- 15:16:40.765 WARNING: RemoveBrowserWindow() failed: GetBrowserWindow() failed
- 15:16:40.765 DEBUG: Calling CefQuitMessageLoop()
- 15:16:40.828 INFO: Ended application
- 15:16:40.828 INFO: --------------------------------------------------------
- 15:16:43.094 INFO: --------------------------------------------------------
- 15:16:43.094 INFO: Started application
- 15:16:43.094 INFO: Logging to: C:\Users\Harun\Desktop\php-desktop\debug.log
- 15:16:43.094 INFO: Log level = DEBUG4
- 15:16:43.094 INFO: Starting Mongoose 3.9c web server
- 15:16:43.094 INFO: WWW directory: C:\Users\Harun\Desktop\php-desktop\www
- 15:16:43.094 INFO: Index files: index.php
- 15:16:43.094 INFO: CGI interpreter: C:\Users\Harun\Desktop\php-desktop\php\php-cgi.exe
- 15:16:43.094 INFO: CGI pattern: **.php$
- 15:16:43.094 INFO: Hide files patterns:
- 15:16:43.094 INFO: CGI environment variables set: TMP=C:\Users\Harun\AppData\Local\Temp\,TEMP=C:\Users\Harun\AppData\Local\Temp\,TMPDIR=C:\Users\Harun\AppData\Local\Temp\,SERVER_NAME=127.0.0.1,PHPDESKTOP_VERSION=57.0
- 15:16:43.110 INFO: Web server url: http://127.0.0.1:8000/
- 15:16:43.110 INFO: remote_debugging_port = 55528
- 15:16:43.110 DEBUG: Command line string for the browser process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --no-sandbox --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --remote-debugging-port=55528
- 15:16:43.188 DEBUG: App::OnContextInitialized()
- 15:16:43.188 DEBUG: Window max width/height = 1840/992
- 15:16:43.188 DEBUG: GetBrowserWindow(): not found, hwnd = 1377854
- 15:16:43.188 DEBUG: WindowProc(): event WM_GETMINMAXINFO: could not fetch BrowserWindow
- 15:16:43.203 DEBUG: BrowserWindow::CreateBrowserControl()
- 15:16:43.203 DEBUG: StoreBrowserWindow(): hwnd = 1377854
- 15:16:43.000 DEBUG: Command line string for the gpu-process process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --type=gpu-process --no-sandbox --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --disable-direct-composition --supports-dual-gpus=false --gpu-driver-bug-workarounds=7,10,18,19,20,23,41,61,74 --disable-gl-extensions="GL_KHR_blend_equation_advanced GL_KHR_blend_equation_advanced_coherent" --gpu-vendor-id=0x8086 --gpu-device-id=0x0166 --gpu-driver-vendor="Intel Corporation" --gpu-driver-version=10.18.10.4358 --gpu-driver-date=12-21-2015 --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --service-request-channel-token=0CB18655919315E704C12D780860C647 --mojo-platform-channel-handle=1820 /prefetch:2
- 15:16:43.266 DEBUG: ClientHandler::OnAfterCreated()
- 15:16:43.266 DEBUG: SetCefBrowser() called in ClientHandler::OnAfterCreated()
- 15:16:43.281 DEBUG: OnLoadingStateChange: loading=1, url=
- 15:16:43.000 DEBUG: Command line string for the renderer process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --type=renderer --no-sandbox --primordial-pipe-token=C16B2913865EBD29750DFD148A8CE9A9 --lang=en-US --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --enable-pinch --device-scale-factor=1 --num-raster-threads=2 --enable-main-frame-before-activation --content-image-texture-target=0,0,3553;0,1,3553;0,2,3553;0,3,3553;0,4,3553;0,5,3553;0,6,3553;0,7,3553;0,8,3553;0,9,3553;0,10,3553;0,11,3553;0,12,3553;0,13,3553;0,14,3553;0,15,3553;1,0,3553;1,1,3553;1,2,3553;1,3,3553;1,4,3553;1,5,3553;1,6,3553;1,7,3553;1,8,3553;1,9,3553;1,10,3553;1,11,3553;1,12,3553;1,13,3553;1,14,3553;1,15,3553;2,0,3553;2,1,3553;2,2,3553;2,3,3553;2,4,3553;2,5,3553;2,6,3553;2,7,3553;2,8,3553;2,9,3553;2,10,3553;2,11,3553;2,12,3553;2,13,3553;2,14,3553;2,15,3553;3,0,3553;3,1,3553;3,2,3553;3,3,3553;3,4,3553;3,5,3553;3,6,3553;3,7,3553;3,8,3553;3,9,3553;3,10,3553;3,11,3553;3,12,3553;3,13,3553;3,14,3553;3,15,3553 --service-request-channel-token=C16B2913865EBD29750DFD148A8CE9A9 --renderer-client-id=3 --mojo-platform-channel-handle=2384 /prefetch:1
[0310/151643.246:ERROR:child_thread_impl.cc(762)] Request for unknown Channel-associated interface: ui::mojom::GpuMain
- 15:16:43.062 DEBUG: OnBrowserCreated()
- 15:16:44.969 INFO: GET 200 /
- 15:16:44.985 DEBUG: OnLoadingStateChange: loading=0, url=http://127.0.0.1:8000/
- 15:17:43.297 DEBUG: WM_DESTROY
- 15:17:43.297 DEBUG: RemoveBrowserWindow(): hwnd = 1377854
- 15:17:43.297 INFO: Stopping Mongoose web server
- 15:17:43.297 DEBUG: Mongoose webserver stopped immediately
- 15:17:43.297 DEBUG: OnBeforeClose() hwnd=1968120
- 15:17:43.297 DEBUG: RemoveBrowserWindow(): hwnd = 1968120
- 15:17:43.313 DEBUG: GetBrowserWindow(): not found, hwnd = 1968120
- 15:17:43.313 WARNING: RemoveBrowserWindow() failed: GetBrowserWindow() failed
- 15:17:43.313 DEBUG: Calling CefQuitMessageLoop()
- 15:17:43.000 DEBUG: OnBrowserDestroyed()
- 15:17:43.360 INFO: Ended application
- 15:17:43.360 INFO: --------------------------------------------------------
- 15:17:46.094 INFO: --------------------------------------------------------
- 15:17:46.094 INFO: Started application
- 15:17:46.094 INFO: Logging to: C:\Users\Harun\Desktop\php-desktop\debug.log
- 15:17:46.094 INFO: Log level = DEBUG4
- 15:17:46.094 INFO: Starting Mongoose 3.9c web server
- 15:17:46.094 INFO: WWW directory: C:\Users\Harun\Desktop\php-desktop\www
- 15:17:46.094 INFO: Index files: index.php
- 15:17:46.094 INFO: CGI interpreter: C:\Users\Harun\Desktop\php-desktop\php\php-cgi.exe
- 15:17:46.094 INFO: CGI pattern: **.php$
- 15:17:46.094 INFO: Hide files patterns:
- 15:17:46.094 INFO: CGI environment variables set: TMP=C:\Users\Harun\AppData\Local\Temp\,TEMP=C:\Users\Harun\AppData\Local\Temp\,TMPDIR=C:\Users\Harun\AppData\Local\Temp\,SERVER_NAME=127.0.0.1,PHPDESKTOP_VERSION=57.0
- 15:17:46.109 INFO: Web server url: http://127.0.0.1:8000/
- 15:17:46.109 INFO: remote_debugging_port = 63428
- 15:17:46.109 DEBUG: Command line string for the browser process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --no-sandbox --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --remote-debugging-port=63428
- 15:17:46.172 DEBUG: App::OnContextInitialized()
- 15:17:46.172 DEBUG: Window max width/height = 1840/992
- 15:17:46.188 DEBUG: GetBrowserWindow(): not found, hwnd = 2229800
- 15:17:46.188 DEBUG: WindowProc(): event WM_GETMINMAXINFO: could not fetch BrowserWindow
- 15:17:46.203 DEBUG: BrowserWindow::CreateBrowserControl()
- 15:17:46.203 DEBUG: StoreBrowserWindow(): hwnd = 2229800
- 15:17:46.000 DEBUG: Command line string for the gpu-process process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --type=gpu-process --no-sandbox --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --disable-direct-composition --supports-dual-gpus=false --gpu-driver-bug-workarounds=7,10,18,19,20,23,41,61,74 --disable-gl-extensions="GL_KHR_blend_equation_advanced GL_KHR_blend_equation_advanced_coherent" --gpu-vendor-id=0x8086 --gpu-device-id=0x0166 --gpu-driver-vendor="Intel Corporation" --gpu-driver-version=10.18.10.4358 --gpu-driver-date=12-21-2015 --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --service-request-channel-token=1FB6B5AEA67C9E705E0C41590A39922F --mojo-platform-channel-handle=1828 /prefetch:2
- 15:17:46.281 DEBUG: ClientHandler::OnAfterCreated()
- 15:17:46.281 DEBUG: SetCefBrowser() called in ClientHandler::OnAfterCreated()
- 15:17:46.297 DEBUG: OnLoadingStateChange: loading=1, url=
[0310/151746.538:ERROR:child_thread_impl.cc(762)] Request for unknown Channel-associated interface: ui::mojom::GpuMain
- 15:17:46.000 DEBUG: Command line string for the renderer process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --type=renderer --no-sandbox --primordial-pipe-token=92B1BB8D081062EE90252EF99D326201 --lang=en-US --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --enable-pinch --device-scale-factor=1 --num-raster-threads=2 --enable-main-frame-before-activation --content-image-texture-target=0,0,3553;0,1,3553;0,2,3553;0,3,3553;0,4,3553;0,5,3553;0,6,3553;0,7,3553;0,8,3553;0,9,3553;0,10,3553;0,11,3553;0,12,3553;0,13,3553;0,14,3553;0,15,3553;1,0,3553;1,1,3553;1,2,3553;1,3,3553;1,4,3553;1,5,3553;1,6,3553;1,7,3553;1,8,3553;1,9,3553;1,10,3553;1,11,3553;1,12,3553;1,13,3553;1,14,3553;1,15,3553;2,0,3553;2,1,3553;2,2,3553;2,3,3553;2,4,3553;2,5,3553;2,6,3553;2,7,3553;2,8,3553;2,9,3553;2,10,3553;2,11,3553;2,12,3553;2,13,3553;2,14,3553;2,15,3553;3,0,3553;3,1,3553;3,2,3553;3,3,3553;3,4,3553;3,5,3553;3,6,3553;3,7,3553;3,8,3553;3,9,3553;3,10,3553;3,11,3553;3,12,3553;3,13,3553;3,14,3553;3,15,3553 --service-request-channel-token=92B1BB8D081062EE90252EF99D326201 --renderer-client-id=3 --mojo-platform-channel-handle=2384 /prefetch:1
- 15:17:46.047 DEBUG: OnBrowserCreated()
- 15:17:48.969 INFO: GET 404 /auth/login
- 15:17:48.969 INFO: GET 302 /
- 15:17:48.984 DEBUG: OnLoadingStateChange: loading=0, url=http://127.0.0.1:8000/auth/login
- 15:19:50.094 INFO: --------------------------------------------------------
- 15:19:50.094 INFO: Started application
- 15:19:50.094 INFO: Logging to: C:\Users\Harun\Desktop\php-desktop\debug.log
- 15:19:50.094 INFO: Log level = DEBUG4
- 15:19:50.094 INFO: Starting Mongoose 3.9c web server
- 15:19:50.110 INFO: WWW directory: C:\Users\Harun\Desktop\php-desktop\www
- 15:19:50.110 INFO: Index files: index.php
- 15:19:50.110 INFO: CGI interpreter: C:\Users\Harun\Desktop\php-desktop\php\php-cgi.exe
- 15:19:50.110 INFO: CGI pattern: **.php$
- 15:19:50.110 INFO: Hide files patterns:
- 15:19:50.110 INFO: CGI environment variables set: TMP=C:\Users\Harun\AppData\Local\Temp\,TEMP=C:\Users\Harun\AppData\Local\Temp\,TMPDIR=C:\Users\Harun\AppData\Local\Temp\,SERVER_NAME=127.0.0.1,PHPDESKTOP_VERSION=57.0
- 15:19:50.110 INFO: Web server url: http://127.0.0.1:8000/
- 15:19:50.125 INFO: remote_debugging_port = 50596
- 15:19:50.125 DEBUG: Command line string for the browser process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --no-sandbox --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --remote-debugging-port=50596
- 15:19:50.188 DEBUG: App::OnContextInitialized()
- 15:19:50.188 DEBUG: Window max width/height = 1840/992
- 15:19:50.188 DEBUG: GetBrowserWindow(): not found, hwnd = 394674
- 15:19:50.188 DEBUG: WindowProc(): event WM_GETMINMAXINFO: could not fetch BrowserWindow
- 15:19:50.203 DEBUG: BrowserWindow::CreateBrowserControl()
- 15:19:50.203 DEBUG: StoreBrowserWindow(): hwnd = 394674
- 15:19:50.000 DEBUG: Command line string for the gpu-process process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --type=gpu-process --no-sandbox --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --disable-direct-composition --supports-dual-gpus=false --gpu-driver-bug-workarounds=7,10,18,19,20,23,41,61,74 --disable-gl-extensions="GL_KHR_blend_equation_advanced GL_KHR_blend_equation_advanced_coherent" --gpu-vendor-id=0x8086 --gpu-device-id=0x0166 --gpu-driver-vendor="Intel Corporation" --gpu-driver-version=10.18.10.4358 --gpu-driver-date=12-21-2015 --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --service-request-channel-token=78ED57A40F3FD6595DFBFB7C123BA482 --mojo-platform-channel-handle=1828 /prefetch:2
- 15:19:50.266 DEBUG: ClientHandler::OnAfterCreated()
- 15:19:50.282 DEBUG: SetCefBrowser() called in ClientHandler::OnAfterCreated()
- 15:19:50.297 DEBUG: OnLoadingStateChange: loading=1, url=
[0310/151950.577:ERROR:child_thread_impl.cc(762)] Request for unknown Channel-associated interface: ui::mojom::GpuMain
- 15:19:50.000 DEBUG: Command line string for the renderer process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --type=renderer --no-sandbox --primordial-pipe-token=E2256A85DC37351408AFF20823E5F86F --lang=en-US --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --enable-pinch --device-scale-factor=1 --num-raster-threads=2 --enable-main-frame-before-activation --content-image-texture-target=0,0,3553;0,1,3553;0,2,3553;0,3,3553;0,4,3553;0,5,3553;0,6,3553;0,7,3553;0,8,3553;0,9,3553;0,10,3553;0,11,3553;0,12,3553;0,13,3553;0,14,3553;0,15,3553;1,0,3553;1,1,3553;1,2,3553;1,3,3553;1,4,3553;1,5,3553;1,6,3553;1,7,3553;1,8,3553;1,9,3553;1,10,3553;1,11,3553;1,12,3553;1,13,3553;1,14,3553;1,15,3553;2,0,3553;2,1,3553;2,2,3553;2,3,3553;2,4,3553;2,5,3553;2,6,3553;2,7,3553;2,8,3553;2,9,3553;2,10,3553;2,11,3553;2,12,3553;2,13,3553;2,14,3553;2,15,3553;3,0,3553;3,1,3553;3,2,3553;3,3,3553;3,4,3553;3,5,3553;3,6,3553;3,7,3553;3,8,3553;3,9,3553;3,10,3553;3,11,3553;3,12,3553;3,13,3553;3,14,3553;3,15,3553 --service-request-channel-token=E2256A85DC37351408AFF20823E5F86F --renderer-client-id=3 --mojo-platform-channel-handle=2400 /prefetch:1
- 15:19:50.047 DEBUG: OnBrowserCreated()
[0310/151950.651:ERROR:cache_util_win.cc(20)] Unable to move the cache: 5
[0310/151950.651:ERROR:cache_util.cc(134)] Unable to move cache folder C:\Users\Harun\Desktop\php-desktop\webcache\GPUCache to C:\Users\Harun\Desktop\php-desktop\webcache\old_GPUCache_000
[0310/151950.651:ERROR:disk_cache.cc(132)] Unable to create cache
[0310/151950.651:ERROR:shader_disk_cache.cc(593)] Shader Cache Creation failed: -2
[0310/151950.665:ERROR:cache_util_win.cc(20)] Unable to move the cache: 5
[0310/151950.665:ERROR:cache_util.cc(134)] Unable to move cache folder C:\Users\Harun\Desktop\php-desktop\webcache\Cache to C:\Users\Harun\Desktop\php-desktop\webcache\old_Cache_000
[0310/151950.665:ERROR:disk_cache.cc(132)] Unable to create cache
- 15:20:05.469 DEBUG: WM_DESTROY
- 15:20:05.469 DEBUG: RemoveBrowserWindow(): hwnd = 394674
- 15:20:05.469 INFO: Stopping Mongoose web server
- 15:20:05.469 DEBUG: Mongoose webserver stopped immediately
- 15:20:05.469 DEBUG: OnBeforeClose() hwnd=591168
- 15:20:05.469 DEBUG: RemoveBrowserWindow(): hwnd = 591168
- 15:20:05.469 DEBUG: GetBrowserWindow(): not found, hwnd = 591168
- 15:20:05.469 WARNING: RemoveBrowserWindow() failed: GetBrowserWindow() failed
- 15:20:05.469 DEBUG: Calling CefQuitMessageLoop()
- 15:20:05.141 DEBUG: OnBrowserDestroyed()
- 15:20:05.532 INFO: Ended application
- 15:20:05.532 INFO: --------------------------------------------------------
- 15:20:11.079 INFO: --------------------------------------------------------
- 15:20:11.079 INFO: Started application
- 15:20:11.094 INFO: Logging to: C:\Users\Harun\Desktop\php-desktop\debug.log
- 15:20:11.094 INFO: Log level = DEBUG4
- 15:20:11.094 INFO: Starting Mongoose 3.9c web server
- 15:20:11.094 INFO: WWW directory: C:\Users\Harun\Desktop\php-desktop\www
- 15:20:11.094 INFO: Index files: index.php
- 15:20:11.094 INFO: CGI interpreter: C:\Users\Harun\Desktop\php-desktop\php\php-cgi.exe
- 15:20:11.094 INFO: CGI pattern: **.php$
- 15:20:11.094 INFO: Hide files patterns:
- 15:20:11.094 INFO: CGI environment variables set: TMP=C:\Users\Harun\AppData\Local\Temp\,TEMP=C:\Users\Harun\AppData\Local\Temp\,TMPDIR=C:\Users\Harun\AppData\Local\Temp\,SERVER_NAME=127.0.0.1,PHPDESKTOP_VERSION=57.0
- 15:20:11.110 INFO: Web server url: http://127.0.0.1:8000/
- 15:20:11.110 INFO: remote_debugging_port = 64831
- 15:20:11.110 DEBUG: Command line string for the browser process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --no-sandbox --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --remote-debugging-port=64831
- 15:20:11.188 DEBUG: App::OnContextInitialized()
- 15:20:11.188 DEBUG: Window max width/height = 1840/992
- 15:20:11.188 DEBUG: GetBrowserWindow(): not found, hwnd = 657014
- 15:20:11.204 DEBUG: WindowProc(): event WM_GETMINMAXINFO: could not fetch BrowserWindow
- 15:20:11.204 DEBUG: BrowserWindow::CreateBrowserControl()
- 15:20:11.219 DEBUG: StoreBrowserWindow(): hwnd = 657014
- 15:20:11.000 DEBUG: Command line string for the gpu-process process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --type=gpu-process --no-sandbox --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --disable-direct-composition --supports-dual-gpus=false --gpu-driver-bug-workarounds=7,10,18,19,20,23,41,61,74 --disable-gl-extensions="GL_KHR_blend_equation_advanced GL_KHR_blend_equation_advanced_coherent" --gpu-vendor-id=0x8086 --gpu-device-id=0x0166 --gpu-driver-vendor="Intel Corporation" --gpu-driver-version=10.18.10.4358 --gpu-driver-date=12-21-2015 --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --service-request-channel-token=5B94E716DD5E3B3CE2DD9AC6E9D00BA2 --mojo-platform-channel-handle=1820 /prefetch:2
- 15:20:11.282 DEBUG: ClientHandler::OnAfterCreated()
- 15:20:11.282 DEBUG: SetCefBrowser() called in ClientHandler::OnAfterCreated()
- 15:20:11.297 DEBUG: OnLoadingStateChange: loading=1, url=
[0310/152011.278:ERROR:child_thread_impl.cc(762)] Request for unknown Channel-associated interface: ui::mojom::GpuMain
- 15:20:11.015 DEBUG: Command line string for the renderer process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --type=renderer --no-sandbox --primordial-pipe-token=B163CAF210BA8AE6809FDEAC252A143D --lang=en-US --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --enable-pinch --device-scale-factor=1 --num-raster-threads=2 --enable-main-frame-before-activation --content-image-texture-target=0,0,3553;0,1,3553;0,2,3553;0,3,3553;0,4,3553;0,5,3553;0,6,3553;0,7,3553;0,8,3553;0,9,3553;0,10,3553;0,11,3553;0,12,3553;0,13,3553;0,14,3553;0,15,3553;1,0,3553;1,1,3553;1,2,3553;1,3,3553;1,4,3553;1,5,3553;1,6,3553;1,7,3553;1,8,3553;1,9,3553;1,10,3553;1,11,3553;1,12,3553;1,13,3553;1,14,3553;1,15,3553;2,0,3553;2,1,3553;2,2,3553;2,3,3553;2,4,3553;2,5,3553;2,6,3553;2,7,3553;2,8,3553;2,9,3553;2,10,3553;2,11,3553;2,12,3553;2,13,3553;2,14,3553;2,15,3553;3,0,3553;3,1,3553;3,2,3553;3,3,3553;3,4,3553;3,5,3553;3,6,3553;3,7,3553;3,8,3553;3,9,3553;3,10,3553;3,11,3553;3,12,3553;3,13,3553;3,14,3553;3,15,3553 --service-request-channel-token=B163CAF210BA8AE6809FDEAC252A143D --renderer-client-id=3 --mojo-platform-channel-handle=2392 /prefetch:1
- 15:20:11.062 DEBUG: OnBrowserCreated()
- 15:20:13.407 INFO: GET 404 /auth/login
- 15:20:13.422 INFO: GET 302 /
- 15:20:13.438 DEBUG: OnLoadingStateChange: loading=0, url=http://127.0.0.1:8000/auth/login
- 15:20:46.969 DEBUG: WM_DESTROY
- 15:20:46.969 DEBUG: RemoveBrowserWindow(): hwnd = 657014
- 15:20:46.969 INFO: Stopping Mongoose web server
- 15:20:46.969 DEBUG: Mongoose webserver stopped immediately
- 15:20:46.969 DEBUG: OnBeforeClose() hwnd=1246632
- 15:20:46.969 DEBUG: RemoveBrowserWindow(): hwnd = 1246632
- 15:20:46.969 DEBUG: GetBrowserWindow(): not found, hwnd = 1246632
- 15:20:46.985 WARNING: RemoveBrowserWindow() failed: GetBrowserWindow() failed
- 15:20:46.985 DEBUG: Calling CefQuitMessageLoop()
- 15:20:46.671 DEBUG: OnBrowserDestroyed()
- 15:20:46.032 INFO: Ended application
- 15:20:46.032 INFO: --------------------------------------------------------
- 15:20:50.079 INFO: --------------------------------------------------------
- 15:20:50.094 INFO: Started application
- 15:20:50.094 INFO: Logging to: C:\Users\Harun\Desktop\php-desktop\debug.log
- 15:20:50.094 INFO: Log level = DEBUG4
- 15:20:50.094 INFO: Starting Mongoose 3.9c web server
- 15:20:50.094 INFO: WWW directory: C:\Users\Harun\Desktop\php-desktop\www
- 15:20:50.094 INFO: Index files: index.php
- 15:20:50.094 INFO: CGI interpreter: C:\Users\Harun\Desktop\php-desktop\php\php-cgi.exe
- 15:20:50.094 INFO: CGI pattern: **.php$
- 15:20:50.094 INFO: Hide files patterns:
- 15:20:50.094 INFO: CGI environment variables set: TMP=C:\Users\Harun\AppData\Local\Temp\,TEMP=C:\Users\Harun\AppData\Local\Temp\,TMPDIR=C:\Users\Harun\AppData\Local\Temp\,SERVER_NAME=127.0.0.1,PHPDESKTOP_VERSION=57.0
- 15:20:50.110 INFO: Web server url: http://127.0.0.1:80/
- 15:20:50.110 INFO: remote_debugging_port = 63135
- 15:20:50.110 DEBUG: Command line string for the browser process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --no-sandbox --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --remote-debugging-port=63135
- 15:20:51.188 DEBUG: App::OnContextInitialized()
- 15:20:51.188 DEBUG: Window max width/height = 1840/992
- 15:20:51.204 DEBUG: GetBrowserWindow(): not found, hwnd = 1377948
- 15:20:51.204 DEBUG: WindowProc(): event WM_GETMINMAXINFO: could not fetch BrowserWindow
- 15:20:51.204 DEBUG: BrowserWindow::CreateBrowserControl()
- 15:20:51.204 DEBUG: StoreBrowserWindow(): hwnd = 1377948
- 15:20:51.000 DEBUG: Command line string for the gpu-process process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --type=gpu-process --no-sandbox --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --disable-direct-composition --supports-dual-gpus=false --gpu-driver-bug-workarounds=7,10,18,19,20,23,41,61,74 --disable-gl-extensions="GL_KHR_blend_equation_advanced GL_KHR_blend_equation_advanced_coherent" --gpu-vendor-id=0x8086 --gpu-device-id=0x0166 --gpu-driver-vendor="Intel Corporation" --gpu-driver-version=10.18.10.4358 --gpu-driver-date=12-21-2015 --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --service-request-channel-token=038EE8BA0CB7183F4636C3729B1D89F1 --mojo-platform-channel-handle=1796 /prefetch:2
- 15:20:51.266 DEBUG: ClientHandler::OnAfterCreated()
- 15:20:51.266 DEBUG: SetCefBrowser() called in ClientHandler::OnAfterCreated()
- 15:20:51.297 DEBUG: OnLoadingStateChange: loading=1, url=
[0310/152051.145:ERROR:child_thread_impl.cc(762)] Request for unknown Channel-associated interface: ui::mojom::GpuMain
- 15:20:51.015 DEBUG: Command line string for the renderer process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --type=renderer --no-sandbox --primordial-pipe-token=97D43A8BDFA247DE522B5C723AD6DE68 --lang=en-US --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --enable-pinch --device-scale-factor=1 --num-raster-threads=2 --enable-main-frame-before-activation --content-image-texture-target=0,0,3553;0,1,3553;0,2,3553;0,3,3553;0,4,3553;0,5,3553;0,6,3553;0,7,3553;0,8,3553;0,9,3553;0,10,3553;0,11,3553;0,12,3553;0,13,3553;0,14,3553;0,15,3553;1,0,3553;1,1,3553;1,2,3553;1,3,3553;1,4,3553;1,5,3553;1,6,3553;1,7,3553;1,8,3553;1,9,3553;1,10,3553;1,11,3553;1,12,3553;1,13,3553;1,14,3553;1,15,3553;2,0,3553;2,1,3553;2,2,3553;2,3,3553;2,4,3553;2,5,3553;2,6,3553;2,7,3553;2,8,3553;2,9,3553;2,10,3553;2,11,3553;2,12,3553;2,13,3553;2,14,3553;2,15,3553;3,0,3553;3,1,3553;3,2,3553;3,3,3553;3,4,3553;3,5,3553;3,6,3553;3,7,3553;3,8,3553;3,9,3553;3,10,3553;3,11,3553;3,12,3553;3,13,3553;3,14,3553;3,15,3553 --service-request-channel-token=97D43A8BDFA247DE522B5C723AD6DE68 --renderer-client-id=3 --mojo-platform-channel-handle=2408 /prefetch:1
- 15:20:51.046 DEBUG: OnBrowserCreated()
- 15:20:53.375 INFO: GET 404 /auth/login
- 15:20:53.391 INFO: GET 302 /
- 15:20:53.407 DEBUG: OnLoadingStateChange: loading=0, url=http://127.0.0.1/auth/login
- 15:22:24.610 DEBUG: OnLoadingStateChange: loading=1, url=http://127.0.0.1/auth/login
- 15:22:24.625 INFO: GET 404 /auth/login
- 15:22:24.625 DEBUG: OnLoadingStateChange: loading=0, url=http://127.0.0.1/auth/login
- 15:22:46.657 DEBUG: OnLoadingStateChange: loading=1, url=http://127.0.0.1/auth/login
- 15:22:46.657 INFO: GET 404 /auth/login
- 15:22:46.657 DEBUG: OnLoadingStateChange: loading=0, url=http://127.0.0.1/auth/login
- 15:22:48.204 DEBUG: WM_DESTROY
- 15:22:48.204 DEBUG: RemoveBrowserWindow(): hwnd = 1377948
- 15:22:48.204 INFO: Stopping Mongoose web server
- 15:22:48.204 DEBUG: Mongoose webserver stopped immediately
- 15:22:48.219 DEBUG: OnBeforeClose() hwnd=1181304
- 15:22:48.219 DEBUG: RemoveBrowserWindow(): hwnd = 1181304
- 15:22:48.219 DEBUG: GetBrowserWindow(): not found, hwnd = 1181304
- 15:22:48.219 WARNING: RemoveBrowserWindow() failed: GetBrowserWindow() failed
- 15:22:48.219 DEBUG: Calling CefQuitMessageLoop()
- 15:22:48.313 INFO: Ended application
- 15:22:48.313 INFO: --------------------------------------------------------
- 15:22:51.093 INFO: --------------------------------------------------------
- 15:22:51.093 INFO: Started application
- 15:22:51.093 INFO: Logging to: C:\Users\Harun\Desktop\php-desktop\debug.log
- 15:22:51.093 INFO: Log level = DEBUG4
- 15:22:51.093 INFO: Starting Mongoose 3.9c web server
- 15:22:51.093 INFO: WWW directory: C:\Users\Harun\Desktop\php-desktop\www
- 15:22:51.093 INFO: Index files: index.php
- 15:22:51.093 INFO: CGI interpreter: C:\Users\Harun\Desktop\php-desktop\php\php-cgi.exe
- 15:22:51.093 INFO: CGI pattern: **.php$
- 15:22:51.093 INFO: Hide files patterns:
- 15:22:51.093 INFO: CGI environment variables set: TMP=C:\Users\Harun\AppData\Local\Temp\,TEMP=C:\Users\Harun\AppData\Local\Temp\,TMPDIR=C:\Users\Harun\AppData\Local\Temp\,SERVER_NAME=127.0.0.1,PHPDESKTOP_VERSION=57.0
- 15:22:51.109 INFO: Web server url: http://127.0.0.1:80/
- 15:22:51.125 INFO: remote_debugging_port = 51316
- 15:22:51.125 DEBUG: Command line string for the browser process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --no-sandbox --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --remote-debugging-port=51316
- 15:22:51.187 DEBUG: App::OnContextInitialized()
- 15:22:51.187 DEBUG: Window max width/height = 1840/992
- 15:22:51.187 DEBUG: GetBrowserWindow(): not found, hwnd = 2033408
- 15:22:51.187 DEBUG: WindowProc(): event WM_GETMINMAXINFO: could not fetch BrowserWindow
- 15:22:51.187 DEBUG: BrowserWindow::CreateBrowserControl()
- 15:22:51.187 DEBUG: StoreBrowserWindow(): hwnd = 2033408
- 15:22:51.000 DEBUG: Command line string for the gpu-process process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --type=gpu-process --no-sandbox --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --disable-direct-composition --supports-dual-gpus=false --gpu-driver-bug-workarounds=7,10,18,19,20,23,41,61,74 --disable-gl-extensions="GL_KHR_blend_equation_advanced GL_KHR_blend_equation_advanced_coherent" --gpu-vendor-id=0x8086 --gpu-device-id=0x0166 --gpu-driver-vendor="Intel Corporation" --gpu-driver-version=10.18.10.4358 --gpu-driver-date=12-21-2015 --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --service-request-channel-token=ECE59768F0E82B75FB8EC911B615BF90 --mojo-platform-channel-handle=1808 /prefetch:2
- 15:22:51.265 DEBUG: ClientHandler::OnAfterCreated()
- 15:22:51.265 DEBUG: SetCefBrowser() called in ClientHandler::OnAfterCreated()
- 15:22:51.281 DEBUG: OnLoadingStateChange: loading=1, url=
[0310/152251.460:ERROR:child_thread_impl.cc(762)] Request for unknown Channel-associated interface: ui::mojom::GpuMain
- 15:22:51.000 DEBUG: Command line string for the renderer process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --type=renderer --no-sandbox --primordial-pipe-token=3F37CF6EE52608321C9BCE4A06D0DCFF --lang=en-US --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --enable-pinch --device-scale-factor=1 --num-raster-threads=2 --enable-main-frame-before-activation --content-image-texture-target=0,0,3553;0,1,3553;0,2,3553;0,3,3553;0,4,3553;0,5,3553;0,6,3553;0,7,3553;0,8,3553;0,9,3553;0,10,3553;0,11,3553;0,12,3553;0,13,3553;0,14,3553;0,15,3553;1,0,3553;1,1,3553;1,2,3553;1,3,3553;1,4,3553;1,5,3553;1,6,3553;1,7,3553;1,8,3553;1,9,3553;1,10,3553;1,11,3553;1,12,3553;1,13,3553;1,14,3553;1,15,3553;2,0,3553;2,1,3553;2,2,3553;2,3,3553;2,4,3553;2,5,3553;2,6,3553;2,7,3553;2,8,3553;2,9,3553;2,10,3553;2,11,3553;2,12,3553;2,13,3553;2,14,3553;2,15,3553;3,0,3553;3,1,3553;3,2,3553;3,3,3553;3,4,3553;3,5,3553;3,6,3553;3,7,3553;3,8,3553;3,9,3553;3,10,3553;3,11,3553;3,12,3553;3,13,3553;3,14,3553;3,15,3553 --service-request-channel-token=3F37CF6EE52608321C9BCE4A06D0DCFF --renderer-client-id=3 --mojo-platform-channel-handle=2384 /prefetch:1
- 15:22:51.047 DEBUG: OnBrowserCreated()
- 15:22:53.953 INFO: GET 404 /auth/login
- 15:22:53.968 INFO: GET 302 /
- 15:22:53.968 DEBUG: OnLoadingStateChange: loading=0, url=http://127.0.0.1/auth/login
- 15:23:29.265 DEBUG: WM_DESTROY
- 15:23:29.265 DEBUG: RemoveBrowserWindow(): hwnd = 2033408
- 15:23:29.265 INFO: Stopping Mongoose web server
- 15:23:29.265 DEBUG: Mongoose webserver stopped immediately
- 15:23:29.265 DEBUG: OnBeforeClose() hwnd=1377704
- 15:23:29.265 DEBUG: RemoveBrowserWindow(): hwnd = 1377704
- 15:23:29.265 DEBUG: GetBrowserWindow(): not found, hwnd = 1377704
- 15:23:29.265 WARNING: RemoveBrowserWindow() failed: GetBrowserWindow() failed
- 15:23:29.265 DEBUG: Calling CefQuitMessageLoop()
- 15:23:29.953 DEBUG: OnBrowserDestroyed()
- 15:23:29.328 INFO: Ended application
- 15:23:29.328 INFO: --------------------------------------------------------
- 15:23:33.094 INFO: --------------------------------------------------------
- 15:23:33.094 INFO: Started application
- 15:23:33.094 INFO: Logging to: C:\Users\Harun\Desktop\php-desktop\debug.log
- 15:23:33.094 INFO: Log level = DEBUG4
- 15:23:33.094 INFO: Starting Mongoose 3.9c web server
- 15:23:33.094 INFO: WWW directory: C:\Users\Harun\Desktop\php-desktop\www
- 15:23:33.110 INFO: Index files: index.php
- 15:23:33.110 INFO: CGI interpreter: C:\Users\Harun\Desktop\php-desktop\php\php-cgi.exe
- 15:23:33.110 INFO: CGI pattern: **.php$
- 15:23:33.110 INFO: Hide files patterns:
- 15:23:33.110 INFO: CGI environment variables set: TMP=C:\Users\Harun\AppData\Local\Temp\,TEMP=C:\Users\Harun\AppData\Local\Temp\,TMPDIR=C:\Users\Harun\AppData\Local\Temp\,SERVER_NAME=127.0.0.1,PHPDESKTOP_VERSION=57.0
- 15:23:33.110 INFO: Web server url: http://127.0.0.1:80/
- 15:23:33.125 INFO: remote_debugging_port = 54220
- 15:23:33.125 DEBUG: Command line string for the browser process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --no-sandbox --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --remote-debugging-port=54220
- 15:23:33.188 DEBUG: App::OnContextInitialized()
- 15:23:33.188 DEBUG: Window max width/height = 1840/992
- 15:23:33.203 DEBUG: GetBrowserWindow(): not found, hwnd = 1509020
- 15:23:33.203 DEBUG: WindowProc(): event WM_GETMINMAXINFO: could not fetch BrowserWindow
- 15:23:33.203 DEBUG: BrowserWindow::CreateBrowserControl()
- 15:23:33.219 DEBUG: StoreBrowserWindow(): hwnd = 1509020
- 15:23:33.000 DEBUG: Command line string for the gpu-process process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --type=gpu-process --no-sandbox --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --disable-direct-composition --supports-dual-gpus=false --gpu-driver-bug-workarounds=7,10,18,19,20,23,41,61,74 --disable-gl-extensions="GL_KHR_blend_equation_advanced GL_KHR_blend_equation_advanced_coherent" --gpu-vendor-id=0x8086 --gpu-device-id=0x0166 --gpu-driver-vendor="Intel Corporation" --gpu-driver-version=10.18.10.4358 --gpu-driver-date=12-21-2015 --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --service-request-channel-token=6B0E977F9EA6BC71448C338D8AF21CA2 --mojo-platform-channel-handle=1804 /prefetch:2
- 15:23:33.266 DEBUG: ClientHandler::OnAfterCreated()
- 15:23:33.266 DEBUG: SetCefBrowser() called in ClientHandler::OnAfterCreated()
- 15:23:33.297 DEBUG: OnLoadingStateChange: loading=1, url=
[0310/152333.288:ERROR:child_thread_impl.cc(762)] Request for unknown Channel-associated interface: ui::mojom::GpuMain
- 15:23:33.016 DEBUG: Command line string for the renderer process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --type=renderer --no-sandbox --primordial-pipe-token=F9CD9AA4B5A120853AE5EDF16EE1CD04 --lang=en-US --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --enable-pinch --device-scale-factor=1 --num-raster-threads=2 --enable-main-frame-before-activation --content-image-texture-target=0,0,3553;0,1,3553;0,2,3553;0,3,3553;0,4,3553;0,5,3553;0,6,3553;0,7,3553;0,8,3553;0,9,3553;0,10,3553;0,11,3553;0,12,3553;0,13,3553;0,14,3553;0,15,3553;1,0,3553;1,1,3553;1,2,3553;1,3,3553;1,4,3553;1,5,3553;1,6,3553;1,7,3553;1,8,3553;1,9,3553;1,10,3553;1,11,3553;1,12,3553;1,13,3553;1,14,3553;1,15,3553;2,0,3553;2,1,3553;2,2,3553;2,3,3553;2,4,3553;2,5,3553;2,6,3553;2,7,3553;2,8,3553;2,9,3553;2,10,3553;2,11,3553;2,12,3553;2,13,3553;2,14,3553;2,15,3553;3,0,3553;3,1,3553;3,2,3553;3,3,3553;3,4,3553;3,5,3553;3,6,3553;3,7,3553;3,8,3553;3,9,3553;3,10,3553;3,11,3553;3,12,3553;3,13,3553;3,14,3553;3,15,3553 --service-request-channel-token=F9CD9AA4B5A120853AE5EDF16EE1CD04 --renderer-client-id=3 --mojo-platform-channel-handle=2376 /prefetch:1
- 15:23:33.063 DEBUG: OnBrowserCreated()
- 15:23:34.969 INFO: GET 404 /admin/dashboard
- 15:23:34.969 INFO: GET 302 /
- 15:23:34.985 DEBUG: OnLoadingStateChange: loading=0, url=http://127.0.0.1/admin/dashboard
- 15:24:52.375 DEBUG: WM_DESTROY
- 15:24:52.375 DEBUG: RemoveBrowserWindow(): hwnd = 1509020
- 15:24:52.375 INFO: Stopping Mongoose web server
- 15:24:52.375 DEBUG: Mongoose webserver stopped immediately
- 15:24:52.375 DEBUG: OnBeforeClose() hwnd=1705722
- 15:24:52.375 DEBUG: RemoveBrowserWindow(): hwnd = 1705722
- 15:24:52.375 DEBUG: GetBrowserWindow(): not found, hwnd = 1705722
- 15:24:52.391 WARNING: RemoveBrowserWindow() failed: GetBrowserWindow() failed
- 15:24:52.391 DEBUG: Calling CefQuitMessageLoop()
- 15:24:52.063 DEBUG: OnBrowserDestroyed()
- 15:24:52.438 INFO: Ended application
- 15:24:52.438 INFO: --------------------------------------------------------
- 15:24:56.078 INFO: --------------------------------------------------------
- 15:24:56.094 INFO: Started application
- 15:24:56.094 INFO: Logging to: C:\Users\Harun\Desktop\php-desktop\debug.log
- 15:24:56.094 INFO: Log level = DEBUG4
- 15:24:56.094 INFO: Starting Mongoose 3.9c web server
- 15:24:56.094 INFO: WWW directory: C:\Users\Harun\Desktop\php-desktop\www
- 15:24:56.094 INFO: Index files: index.php
- 15:24:56.094 INFO: CGI interpreter: C:\Users\Harun\Desktop\php-desktop\php\php-cgi.exe
- 15:24:56.094 INFO: CGI pattern: **.php$
- 15:24:56.094 INFO: Hide files patterns:
- 15:24:56.094 INFO: CGI environment variables set: TMP=C:\Users\Harun\AppData\Local\Temp\,TEMP=C:\Users\Harun\AppData\Local\Temp\,TMPDIR=C:\Users\Harun\AppData\Local\Temp\,SERVER_NAME=localhost,PHPDESKTOP_VERSION=57.0
- 15:24:56.094 WARNING: set_ports_option: localhost:0: invalid port spec. Expecting list of: [IP_ADDRESS:]PORT[s|r]
- 15:24:56.156 DEBUG: GetBrowserWindow(): not found, hwnd = 2098614
- 15:24:56.219 DEBUG: GetBrowserWindow(): not found, hwnd = 2098614
- 15:24:56.328 DEBUG: GetBrowserWindow(): not found, hwnd = 2098614
- 15:24:56.437 DEBUG: GetBrowserWindow(): not found, hwnd = 2098614
- 15:24:57.547 DEBUG: GetBrowserWindow(): not found, hwnd = 2098614
- 15:24:57.656 DEBUG: GetBrowserWindow(): not found, hwnd = 2098614
- 15:24:57.766 DEBUG: GetBrowserWindow(): not found, hwnd = 2098614
- 15:24:57.875 DEBUG: GetBrowserWindow(): not found, hwnd = 2098614
- 15:24:57.984 DEBUG: GetBrowserWindow(): not found, hwnd = 2098614
- 15:24:57.094 DEBUG: GetBrowserWindow(): not found, hwnd = 2098614
- 15:24:57.203 DEBUG: GetBrowserWindow(): not found, hwnd = 2098614
- 15:24:57.312 DEBUG: GetBrowserWindow(): not found, hwnd = 2098614
- 15:24:57.422 DEBUG: GetBrowserWindow(): not found, hwnd = 2098614
- 15:24:58.531 DEBUG: GetBrowserWindow(): not found, hwnd = 2098614
- 15:24:58.641 DEBUG: GetBrowserWindow(): not found, hwnd = 2098614
- 15:24:58.750 DEBUG: GetBrowserWindow(): not found, hwnd = 2098614
- 15:24:58.859 DEBUG: GetBrowserWindow(): not found, hwnd = 2098614
- 15:24:58.969 DEBUG: GetBrowserWindow(): not found, hwnd = 2098614
- 15:24:58.078 DEBUG: GetBrowserWindow(): not found, hwnd = 2098614
- 15:24:58.187 DEBUG: GetBrowserWindow(): not found, hwnd = 2098614
- 15:24:58.297 DEBUG: GetBrowserWindow(): not found, hwnd = 2098614
- 15:24:58.406 DEBUG: GetBrowserWindow(): not found, hwnd = 2098614
- 15:24:59.516 DEBUG: GetBrowserWindow(): not found, hwnd = 2098614
- 15:24:59.625 DEBUG: GetBrowserWindow(): not found, hwnd = 2098614
- 15:24:59.734 DEBUG: GetBrowserWindow(): not found, hwnd = 2098614
- 15:24:59.844 DEBUG: GetBrowserWindow(): not found, hwnd = 2098614
- 15:24:59.953 DEBUG: GetBrowserWindow(): not found, hwnd = 2098614
- 15:24:59.062 DEBUG: GetBrowserWindow(): not found, hwnd = 2098614
- 15:24:59.172 DEBUG: GetBrowserWindow(): not found, hwnd = 2098614
- 15:24:59.281 DEBUG: GetBrowserWindow(): not found, hwnd = 2098614
- 15:24:59.391 DEBUG: GetBrowserWindow(): not found, hwnd = 2098614
- 15:24:59.500 DEBUG: GetBrowserWindow(): not found, hwnd = 2098614
- 15:25:00.609 DEBUG: GetBrowserWindow(): not found, hwnd = 2098614
- 15:25:00.719 DEBUG: GetBrowserWindow(): not found, hwnd = 2098614
- 15:25:00.828 DEBUG: GetBrowserWindow(): not found, hwnd = 2098614
- 15:25:00.937 DEBUG: GetBrowserWindow(): not found, hwnd = 2098614
- 15:25:00.047 DEBUG: GetBrowserWindow(): not found, hwnd = 2098614
- 15:25:00.156 DEBUG: GetBrowserWindow(): not found, hwnd = 2098614
- 15:25:00.266 DEBUG: GetBrowserWindow(): not found, hwnd = 2098614
- 15:26:28.078 INFO: --------------------------------------------------------
- 15:26:28.078 INFO: Started application
- 15:26:28.094 INFO: Logging to: C:\Users\Harun\Desktop\php-desktop\debug.log
- 15:26:28.094 INFO: Log level = DEBUG4
- 15:26:28.094 INFO: Starting Mongoose 3.9c web server
- 15:26:28.094 INFO: WWW directory: C:\Users\Harun\Desktop\php-desktop\www
- 15:26:28.094 INFO: Index files: index.php
- 15:26:28.094 INFO: CGI interpreter: C:\Users\Harun\Desktop\php-desktop\php\php-cgi.exe
- 15:26:28.094 INFO: CGI pattern: **.php$
- 15:26:28.094 INFO: Hide files patterns:
- 15:26:28.094 INFO: CGI environment variables set: TMP=C:\Users\Harun\AppData\Local\Temp\,TEMP=C:\Users\Harun\AppData\Local\Temp\,TMPDIR=C:\Users\Harun\AppData\Local\Temp\,SERVER_NAME=127.0.0.1,PHPDESKTOP_VERSION=57.0
- 15:26:28.109 INFO: Web server url: http://127.0.0.1:8000/
- 15:26:28.109 INFO: remote_debugging_port = 53160
- 15:26:28.109 DEBUG: Command line string for the browser process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --no-sandbox --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --remote-debugging-port=53160
- 15:26:28.172 DEBUG: App::OnContextInitialized()
- 15:26:28.172 DEBUG: Window max width/height = 1840/992
- 15:26:28.172 DEBUG: GetBrowserWindow(): not found, hwnd = 1508984
- 15:26:29.188 DEBUG: WindowProc(): event WM_GETMINMAXINFO: could not fetch BrowserWindow
- 15:26:29.188 DEBUG: BrowserWindow::CreateBrowserControl()
- 15:26:29.188 DEBUG: StoreBrowserWindow(): hwnd = 1508984
- 15:26:29.016 DEBUG: Command line string for the gpu-process process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --type=gpu-process --no-sandbox --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --disable-direct-composition --supports-dual-gpus=false --gpu-driver-bug-workarounds=7,10,18,19,20,23,41,61,74 --disable-gl-extensions="GL_KHR_blend_equation_advanced GL_KHR_blend_equation_advanced_coherent" --gpu-vendor-id=0x8086 --gpu-device-id=0x0166 --gpu-driver-vendor="Intel Corporation" --gpu-driver-version=10.18.10.4358 --gpu-driver-date=12-21-2015 --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --service-request-channel-token=BB7D7F92123318AAD121203B316E0459 --mojo-platform-channel-handle=1828 /prefetch:2
- 15:26:29.266 DEBUG: ClientHandler::OnAfterCreated()
- 15:26:29.266 DEBUG: SetCefBrowser() called in ClientHandler::OnAfterCreated()
- 15:26:29.297 DEBUG: OnLoadingStateChange: loading=1, url=
[0310/152629.147:ERROR:child_thread_impl.cc(762)] Request for unknown Channel-associated interface: ui::mojom::GpuMain
- 15:26:29.000 DEBUG: Command line string for the renderer process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --type=renderer --no-sandbox --primordial-pipe-token=ECE6B0324296F5E55C1FDA13DDA1469F --lang=en-US --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --enable-pinch --device-scale-factor=1 --num-raster-threads=2 --enable-main-frame-before-activation --content-image-texture-target=0,0,3553;0,1,3553;0,2,3553;0,3,3553;0,4,3553;0,5,3553;0,6,3553;0,7,3553;0,8,3553;0,9,3553;0,10,3553;0,11,3553;0,12,3553;0,13,3553;0,14,3553;0,15,3553;1,0,3553;1,1,3553;1,2,3553;1,3,3553;1,4,3553;1,5,3553;1,6,3553;1,7,3553;1,8,3553;1,9,3553;1,10,3553;1,11,3553;1,12,3553;1,13,3553;1,14,3553;1,15,3553;2,0,3553;2,1,3553;2,2,3553;2,3,3553;2,4,3553;2,5,3553;2,6,3553;2,7,3553;2,8,3553;2,9,3553;2,10,3553;2,11,3553;2,12,3553;2,13,3553;2,14,3553;2,15,3553;3,0,3553;3,1,3553;3,2,3553;3,3,3553;3,4,3553;3,5,3553;3,6,3553;3,7,3553;3,8,3553;3,9,3553;3,10,3553;3,11,3553;3,12,3553;3,13,3553;3,14,3553;3,15,3553 --service-request-channel-token=ECE6B0324296F5E55C1FDA13DDA1469F --renderer-client-id=3 --mojo-platform-channel-handle=2380 /prefetch:1
- 15:26:29.063 DEBUG: OnBrowserCreated()
- 15:26:30.969 INFO: GET 404 /admin/dashboard
- 15:26:30.984 INFO: GET 302 /
- 15:26:30.984 DEBUG: OnLoadingStateChange: loading=0, url=http://127.0.0.1:8000/admin/dashboard
- 15:26:50.578 DEBUG: F5 pressed, reloading page
- 15:26:50.594 DEBUG: OnLoadingStateChange: loading=1, url=http://127.0.0.1:8000/admin/dashboard
- 15:26:50.594 INFO: GET 404 /admin/dashboard
- 15:26:50.609 DEBUG: OnLoadingStateChange: loading=0, url=http://127.0.0.1:8000/admin/dashboard
- 15:26:51.219 DEBUG: F5 pressed, reloading page
- 15:26:51.219 DEBUG: OnLoadingStateChange: loading=1, url=http://127.0.0.1:8000/admin/dashboard
- 15:26:51.219 INFO: GET 404 /admin/dashboard
- 15:26:51.250 DEBUG: OnLoadingStateChange: loading=0, url=http://127.0.0.1:8000/admin/dashboard
- 15:26:52.000 DEBUG: OnLoadingStateChange: loading=1, url=http://127.0.0.1:8000/admin/dashboard
- 15:26:52.000 INFO: GET 404 /admin/dashboard
- 15:26:52.000 DEBUG: OnLoadingStateChange: loading=0, url=http://127.0.0.1:8000/admin/dashboard
- 15:26:58.484 DEBUG: WM_DESTROY
- 15:26:58.484 DEBUG: RemoveBrowserWindow(): hwnd = 1508984
- 15:26:58.500 INFO: Stopping Mongoose web server
- 15:26:58.500 DEBUG: Mongoose webserver stopped immediately
- 15:26:58.500 DEBUG: OnBeforeClose() hwnd=1771258
- 15:26:58.500 DEBUG: RemoveBrowserWindow(): hwnd = 1771258
- 15:26:58.500 DEBUG: GetBrowserWindow(): not found, hwnd = 1771258
- 15:26:58.516 WARNING: RemoveBrowserWindow() failed: GetBrowserWindow() failed
- 15:26:58.516 DEBUG: Calling CefQuitMessageLoop()
- 15:26:58.578 INFO: Ended application
- 15:26:58.578 INFO: --------------------------------------------------------
- 15:27:01.078 INFO: --------------------------------------------------------
- 15:27:01.078 INFO: Started application
- 15:27:01.078 INFO: Logging to: C:\Users\Harun\Desktop\php-desktop\debug.log
- 15:27:01.078 INFO: Log level = DEBUG4
- 15:27:01.078 INFO: Starting Mongoose 3.9c web server
- 15:27:01.094 INFO: WWW directory: C:\Users\Harun\Desktop\php-desktop\www
- 15:27:01.094 INFO: Index files: index.php
- 15:27:01.094 INFO: CGI interpreter: C:\Users\Harun\Desktop\php-desktop\php\php-cgi.exe
- 15:27:01.094 INFO: CGI pattern: **.php$
- 15:27:01.094 INFO: Hide files patterns:
- 15:27:01.094 INFO: CGI environment variables set: TMP=C:\Users\Harun\AppData\Local\Temp\,TEMP=C:\Users\Harun\AppData\Local\Temp\,TMPDIR=C:\Users\Harun\AppData\Local\Temp\,SERVER_NAME=127.0.0.1,PHPDESKTOP_VERSION=57.0
- 15:27:01.109 INFO: Web server url: http://127.0.0.1:8000/
- 15:27:01.109 INFO: remote_debugging_port = 60004
- 15:27:01.109 DEBUG: Command line string for the browser process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --no-sandbox --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --remote-debugging-port=60004
- 15:27:01.172 DEBUG: App::OnContextInitialized()
- 15:27:01.172 DEBUG: Window max width/height = 1840/992
- 15:27:01.188 DEBUG: GetBrowserWindow(): not found, hwnd = 1836794
- 15:27:01.188 DEBUG: WindowProc(): event WM_GETMINMAXINFO: could not fetch BrowserWindow
- 15:27:01.188 DEBUG: BrowserWindow::CreateBrowserControl()
- 15:27:01.188 DEBUG: StoreBrowserWindow(): hwnd = 1836794
- 15:27:01.000 DEBUG: Command line string for the gpu-process process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --type=gpu-process --no-sandbox --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --disable-direct-composition --supports-dual-gpus=false --gpu-driver-bug-workarounds=7,10,18,19,20,23,41,61,74 --disable-gl-extensions="GL_KHR_blend_equation_advanced GL_KHR_blend_equation_advanced_coherent" --gpu-vendor-id=0x8086 --gpu-device-id=0x0166 --gpu-driver-vendor="Intel Corporation" --gpu-driver-version=10.18.10.4358 --gpu-driver-date=12-21-2015 --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --service-request-channel-token=8EF6CA64BF6DCBCA678B1E80A71BCE52 --mojo-platform-channel-handle=1812 /prefetch:2
- 15:27:01.250 DEBUG: ClientHandler::OnAfterCreated()
- 15:27:01.250 DEBUG: SetCefBrowser() called in ClientHandler::OnAfterCreated()
- 15:27:01.281 DEBUG: OnLoadingStateChange: loading=1, url=
[0310/152701.764:ERROR:child_thread_impl.cc(762)] Request for unknown Channel-associated interface: ui::mojom::GpuMain
- 15:27:01.000 DEBUG: Command line string for the renderer process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --type=renderer --no-sandbox --primordial-pipe-token=CD5B507971201A2A4858A451369E6B6E --lang=en-US --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --enable-pinch --device-scale-factor=1 --num-raster-threads=2 --enable-main-frame-before-activation --content-image-texture-target=0,0,3553;0,1,3553;0,2,3553;0,3,3553;0,4,3553;0,5,3553;0,6,3553;0,7,3553;0,8,3553;0,9,3553;0,10,3553;0,11,3553;0,12,3553;0,13,3553;0,14,3553;0,15,3553;1,0,3553;1,1,3553;1,2,3553;1,3,3553;1,4,3553;1,5,3553;1,6,3553;1,7,3553;1,8,3553;1,9,3553;1,10,3553;1,11,3553;1,12,3553;1,13,3553;1,14,3553;1,15,3553;2,0,3553;2,1,3553;2,2,3553;2,3,3553;2,4,3553;2,5,3553;2,6,3553;2,7,3553;2,8,3553;2,9,3553;2,10,3553;2,11,3553;2,12,3553;2,13,3553;2,14,3553;2,15,3553;3,0,3553;3,1,3553;3,2,3553;3,3,3553;3,4,3553;3,5,3553;3,6,3553;3,7,3553;3,8,3553;3,9,3553;3,10,3553;3,11,3553;3,12,3553;3,13,3553;3,14,3553;3,15,3553 --service-request-channel-token=CD5B507971201A2A4858A451369E6B6E --renderer-client-id=3 --mojo-platform-channel-handle=2384 /prefetch:1
- 15:27:01.063 DEBUG: OnBrowserCreated()
- 15:27:03.359 INFO: GET 500 /
- 15:27:03.406 DEBUG: OnLoadingStateChange: loading=0, url=http://127.0.0.1:8000/
- 15:27:06.250 DEBUG: WM_DESTROY
- 15:27:06.250 DEBUG: RemoveBrowserWindow(): hwnd = 1836794
- 15:27:06.250 INFO: Stopping Mongoose web server
- 15:27:06.250 DEBUG: Mongoose webserver stopped immediately
- 15:27:06.250 DEBUG: OnBeforeClose() hwnd=1705628
- 15:27:06.250 DEBUG: RemoveBrowserWindow(): hwnd = 1705628
- 15:27:06.250 DEBUG: GetBrowserWindow(): not found, hwnd = 1705628
- 15:27:06.250 WARNING: RemoveBrowserWindow() failed: GetBrowserWindow() failed
- 15:27:06.250 DEBUG: Calling CefQuitMessageLoop()
- 15:27:06.297 INFO: Ended application
- 15:27:06.297 INFO: --------------------------------------------------------
- 15:27:16.078 INFO: --------------------------------------------------------
- 15:27:16.078 INFO: Started application
- 15:27:16.078 INFO: Logging to: C:\Users\Harun\Desktop\php-desktop\debug.log
- 15:27:16.078 INFO: Log level = DEBUG4
- 15:27:16.078 INFO: Starting Mongoose 3.9c web server
- 15:27:16.094 INFO: WWW directory: C:\Users\Harun\Desktop\php-desktop\www
- 15:27:16.094 INFO: Index files: index.php
- 15:27:16.094 INFO: CGI interpreter: C:\Users\Harun\Desktop\php-desktop\php\php-cgi.exe
- 15:27:16.094 INFO: CGI pattern: **.php$
- 15:27:16.094 INFO: Hide files patterns:
- 15:27:16.094 INFO: CGI environment variables set: TMP=C:\Users\Harun\AppData\Local\Temp\,TEMP=C:\Users\Harun\AppData\Local\Temp\,TMPDIR=C:\Users\Harun\AppData\Local\Temp\,SERVER_NAME=127.0.0.1,PHPDESKTOP_VERSION=57.0
- 15:27:16.110 INFO: Web server url: http://127.0.0.1:8000/
- 15:27:16.110 INFO: remote_debugging_port = 55901
- 15:27:16.110 DEBUG: Command line string for the browser process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --no-sandbox --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --remote-debugging-port=55901
- 15:27:16.172 DEBUG: App::OnContextInitialized()
- 15:27:16.172 DEBUG: Window max width/height = 1840/992
- 15:27:16.188 DEBUG: GetBrowserWindow(): not found, hwnd = 1640056
- 15:27:16.188 DEBUG: WindowProc(): event WM_GETMINMAXINFO: could not fetch BrowserWindow
- 15:27:16.188 DEBUG: BrowserWindow::CreateBrowserControl()
- 15:27:16.188 DEBUG: StoreBrowserWindow(): hwnd = 1640056
- 15:27:16.000 DEBUG: Command line string for the gpu-process process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --type=gpu-process --no-sandbox --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --disable-direct-composition --supports-dual-gpus=false --gpu-driver-bug-workarounds=7,10,18,19,20,23,41,61,74 --disable-gl-extensions="GL_KHR_blend_equation_advanced GL_KHR_blend_equation_advanced_coherent" --gpu-vendor-id=0x8086 --gpu-device-id=0x0166 --gpu-driver-vendor="Intel Corporation" --gpu-driver-version=10.18.10.4358 --gpu-driver-date=12-21-2015 --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --service-request-channel-token=BB8348075D513FF31EA89D0BA77AEFDB --mojo-platform-channel-handle=1812 /prefetch:2
- 15:27:16.266 DEBUG: ClientHandler::OnAfterCreated()
- 15:27:16.266 DEBUG: SetCefBrowser() called in ClientHandler::OnAfterCreated()
- 15:27:16.281 DEBUG: OnLoadingStateChange: loading=1, url=
[0310/152716.843:ERROR:child_thread_impl.cc(762)] Request for unknown Channel-associated interface: ui::mojom::GpuMain
- 15:27:16.000 DEBUG: Command line string for the renderer process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --type=renderer --no-sandbox --primordial-pipe-token=88AD7880305CF4609DF092504F31B189 --lang=en-US --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --enable-pinch --device-scale-factor=1 --num-raster-threads=2 --enable-main-frame-before-activation --content-image-texture-target=0,0,3553;0,1,3553;0,2,3553;0,3,3553;0,4,3553;0,5,3553;0,6,3553;0,7,3553;0,8,3553;0,9,3553;0,10,3553;0,11,3553;0,12,3553;0,13,3553;0,14,3553;0,15,3553;1,0,3553;1,1,3553;1,2,3553;1,3,3553;1,4,3553;1,5,3553;1,6,3553;1,7,3553;1,8,3553;1,9,3553;1,10,3553;1,11,3553;1,12,3553;1,13,3553;1,14,3553;1,15,3553;2,0,3553;2,1,3553;2,2,3553;2,3,3553;2,4,3553;2,5,3553;2,6,3553;2,7,3553;2,8,3553;2,9,3553;2,10,3553;2,11,3553;2,12,3553;2,13,3553;2,14,3553;2,15,3553;3,0,3553;3,1,3553;3,2,3553;3,3,3553;3,4,3553;3,5,3553;3,6,3553;3,7,3553;3,8,3553;3,9,3553;3,10,3553;3,11,3553;3,12,3553;3,13,3553;3,14,3553;3,15,3553 --service-request-channel-token=88AD7880305CF4609DF092504F31B189 --renderer-client-id=3 --mojo-platform-channel-handle=2384 /prefetch:1
- 15:27:16.047 DEBUG: OnBrowserCreated()
- 15:27:18.360 INFO: GET 200 /
- 15:27:18.375 DEBUG: OnLoadingStateChange: loading=0, url=http://127.0.0.1:8000/
- 15:36:45.297 DEBUG: WM_DESTROY
- 15:36:45.297 DEBUG: RemoveBrowserWindow(): hwnd = 1640056
- 15:36:45.297 INFO: Stopping Mongoose web server
- 15:36:45.297 DEBUG: Mongoose webserver stopped immediately
- 15:36:45.313 DEBUG: OnBeforeClose() hwnd=1771164
- 15:36:45.313 DEBUG: RemoveBrowserWindow(): hwnd = 1771164
- 15:36:45.313 DEBUG: GetBrowserWindow(): not found, hwnd = 1771164
- 15:36:45.313 WARNING: RemoveBrowserWindow() failed: GetBrowserWindow() failed
- 15:36:45.313 DEBUG: Calling CefQuitMessageLoop()
- 15:36:45.360 INFO: Ended application
- 15:36:45.360 INFO: --------------------------------------------------------
- 15:36:52.094 INFO: --------------------------------------------------------
- 15:36:52.094 INFO: Started application
- 15:36:52.109 INFO: Logging to: C:\Users\Harun\Desktop\php-desktop\debug.log
- 15:36:52.109 INFO: Log level = DEBUG4
- 15:36:52.109 INFO: Starting Mongoose 3.9c web server
- 15:36:52.109 INFO: WWW directory: C:\Users\Harun\Desktop\php-desktop\www
- 15:36:52.109 INFO: Index files: index.php
- 15:36:52.109 INFO: CGI interpreter: C:\Users\Harun\Desktop\php-desktop\php\php-cgi.exe
- 15:36:52.109 INFO: CGI pattern: **.php$
- 15:36:52.109 INFO: Hide files patterns:
- 15:36:52.109 INFO: CGI environment variables set: TMP=C:\Users\Harun\AppData\Local\Temp\,TEMP=C:\Users\Harun\AppData\Local\Temp\,TMPDIR=C:\Users\Harun\AppData\Local\Temp\,SERVER_NAME=127.0.0.1,PHPDESKTOP_VERSION=57.0
- 15:36:52.109 INFO: Web server url: http://127.0.0.1:8000/
- 15:36:52.125 INFO: remote_debugging_port = 60016
- 15:36:52.125 DEBUG: Command line string for the browser process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --no-sandbox --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --remote-debugging-port=60016
- 15:36:52.187 DEBUG: App::OnContextInitialized()
- 15:36:52.187 DEBUG: Window max width/height = 1840/992
- 15:36:52.203 DEBUG: GetBrowserWindow(): not found, hwnd = 1705592
- 15:36:52.203 DEBUG: WindowProc(): event WM_GETMINMAXINFO: could not fetch BrowserWindow
- 15:36:52.203 DEBUG: BrowserWindow::CreateBrowserControl()
- 15:36:52.203 DEBUG: StoreBrowserWindow(): hwnd = 1705592
- 15:36:53.000 DEBUG: Command line string for the gpu-process process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --type=gpu-process --no-sandbox --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --disable-direct-composition --supports-dual-gpus=false --gpu-driver-bug-workarounds=7,10,18,19,20,23,41,61,74 --disable-gl-extensions="GL_KHR_blend_equation_advanced GL_KHR_blend_equation_advanced_coherent" --gpu-vendor-id=0x8086 --gpu-device-id=0x0166 --gpu-driver-vendor="Intel Corporation" --gpu-driver-version=10.18.10.4358 --gpu-driver-date=12-21-2015 --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --service-request-channel-token=4EC3D87CB62DCE13CF93AFC8CC5C61E0 --mojo-platform-channel-handle=1804 /prefetch:2
- 15:36:53.281 DEBUG: ClientHandler::OnAfterCreated()
- 15:36:53.281 DEBUG: SetCefBrowser() called in ClientHandler::OnAfterCreated()
- 15:36:53.297 DEBUG: OnLoadingStateChange: loading=1, url=
[0310/153653.106:ERROR:child_thread_impl.cc(762)] Request for unknown Channel-associated interface: ui::mojom::GpuMain
- 15:36:53.000 DEBUG: Command line string for the renderer process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --type=renderer --no-sandbox --primordial-pipe-token=F02FD8502DF35DAEE66F47B4ED362EDF --lang=en-US --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --enable-pinch --device-scale-factor=1 --num-raster-threads=2 --enable-main-frame-before-activation --content-image-texture-target=0,0,3553;0,1,3553;0,2,3553;0,3,3553;0,4,3553;0,5,3553;0,6,3553;0,7,3553;0,8,3553;0,9,3553;0,10,3553;0,11,3553;0,12,3553;0,13,3553;0,14,3553;0,15,3553;1,0,3553;1,1,3553;1,2,3553;1,3,3553;1,4,3553;1,5,3553;1,6,3553;1,7,3553;1,8,3553;1,9,3553;1,10,3553;1,11,3553;1,12,3553;1,13,3553;1,14,3553;1,15,3553;2,0,3553;2,1,3553;2,2,3553;2,3,3553;2,4,3553;2,5,3553;2,6,3553;2,7,3553;2,8,3553;2,9,3553;2,10,3553;2,11,3553;2,12,3553;2,13,3553;2,14,3553;2,15,3553;3,0,3553;3,1,3553;3,2,3553;3,3,3553;3,4,3553;3,5,3553;3,6,3553;3,7,3553;3,8,3553;3,9,3553;3,10,3553;3,11,3553;3,12,3553;3,13,3553;3,14,3553;3,15,3553 --service-request-channel-token=F02FD8502DF35DAEE66F47B4ED362EDF --renderer-client-id=3 --mojo-platform-channel-handle=2388 /prefetch:1
- 15:36:53.062 DEBUG: OnBrowserCreated()
- 15:36:54.047 INFO: GET 302 /
- 15:36:54.094 INFO: GET 200 /admin/dashboard
- 15:36:54.140 INFO: GET 200 /admin/style.css
- 15:36:54.203 DEBUG: OnLoadingStateChange: loading=0, url=http://127.0.0.1:8000/admin/dashboard
- 15:37:08.422 DEBUG: OnLoadingStateChange: loading=1, url=http://127.0.0.1:8000/admin/dashboard
- 15:37:08.953 INFO: GET 302 /index.php
- 15:37:09.625 INFO: GET 302 /index.php/admin/dashboard
- 15:37:10.422 INFO: GET 200 /index.php/auth/login
- 15:37:10.422 DEBUG: OnLoadingStateChange: loading=0, url=http://127.0.0.1:8000/index.php/auth/login
- 15:37:54.031 DEBUG: WM_DESTROY
- 15:37:54.031 DEBUG: RemoveBrowserWindow(): hwnd = 1705592
- 15:37:54.031 INFO: Stopping Mongoose web server
- 15:37:54.031 DEBUG: Mongoose webserver stopped immediately
- 15:37:54.031 DEBUG: OnBeforeClose() hwnd=2164336
- 15:37:54.031 DEBUG: RemoveBrowserWindow(): hwnd = 2164336
- 15:37:54.031 DEBUG: GetBrowserWindow(): not found, hwnd = 2164336
- 15:37:54.047 WARNING: RemoveBrowserWindow() failed: GetBrowserWindow() failed
- 15:37:54.047 DEBUG: Calling CefQuitMessageLoop()
- 15:37:54.703 DEBUG: OnBrowserDestroyed()
- 15:37:54.094 INFO: Ended application
- 15:37:54.094 INFO: --------------------------------------------------------
- 15:37:58.094 INFO: --------------------------------------------------------
- 15:37:58.109 INFO: Started application
- 15:37:58.109 INFO: Logging to: C:\Users\Harun\Desktop\php-desktop\debug.log
- 15:37:58.109 INFO: Log level = DEBUG4
- 15:37:58.109 INFO: Starting Mongoose 3.9c web server
- 15:37:58.109 INFO: WWW directory: C:\Users\Harun\Desktop\php-desktop\www
- 15:37:58.109 INFO: Index files: index.php/index.php
- 15:37:58.109 INFO: CGI interpreter: C:\Users\Harun\Desktop\php-desktop\php\php-cgi.exe
- 15:37:58.109 INFO: CGI pattern: **.php$
- 15:37:58.109 INFO: Hide files patterns:
- 15:37:58.109 INFO: CGI environment variables set: TMP=C:\Users\Harun\AppData\Local\Temp\,TEMP=C:\Users\Harun\AppData\Local\Temp\,TMPDIR=C:\Users\Harun\AppData\Local\Temp\,SERVER_NAME=127.0.0.1,PHPDESKTOP_VERSION=57.0
- 15:37:58.125 INFO: Web server url: http://127.0.0.1:8000/
- 15:37:58.125 INFO: remote_debugging_port = 58910
- 15:37:58.125 DEBUG: Command line string for the browser process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --no-sandbox --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --remote-debugging-port=58910
- 15:37:58.187 DEBUG: App::OnContextInitialized()
- 15:37:58.187 DEBUG: Window max width/height = 1840/992
- 15:37:58.187 DEBUG: GetBrowserWindow(): not found, hwnd = 2426294
- 15:37:58.187 DEBUG: WindowProc(): event WM_GETMINMAXINFO: could not fetch BrowserWindow
- 15:37:58.203 DEBUG: BrowserWindow::CreateBrowserControl()
- 15:37:58.203 DEBUG: StoreBrowserWindow(): hwnd = 2426294
- 15:37:58.000 DEBUG: Command line string for the gpu-process process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --type=gpu-process --no-sandbox --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --disable-direct-composition --supports-dual-gpus=false --gpu-driver-bug-workarounds=7,10,18,19,20,23,41,61,74 --disable-gl-extensions="GL_KHR_blend_equation_advanced GL_KHR_blend_equation_advanced_coherent" --gpu-vendor-id=0x8086 --gpu-device-id=0x0166 --gpu-driver-vendor="Intel Corporation" --gpu-driver-version=10.18.10.4358 --gpu-driver-date=12-21-2015 --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --service-request-channel-token=3D0CDB1C6C43228AEA61FE69D8C64976 --mojo-platform-channel-handle=1804 /prefetch:2
- 15:37:58.265 DEBUG: ClientHandler::OnAfterCreated()
- 15:37:58.265 DEBUG: SetCefBrowser() called in ClientHandler::OnAfterCreated()
- 15:37:58.297 DEBUG: OnLoadingStateChange: loading=1, url=
[0310/153758.226:ERROR:child_thread_impl.cc(762)] Request for unknown Channel-associated interface: ui::mojom::GpuMain
- 15:37:58.000 DEBUG: Command line string for the renderer process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --type=renderer --no-sandbox --primordial-pipe-token=94BC20FDC17F906269F31B79294D205C --lang=en-US --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --enable-pinch --device-scale-factor=1 --num-raster-threads=2 --enable-main-frame-before-activation --content-image-texture-target=0,0,3553;0,1,3553;0,2,3553;0,3,3553;0,4,3553;0,5,3553;0,6,3553;0,7,3553;0,8,3553;0,9,3553;0,10,3553;0,11,3553;0,12,3553;0,13,3553;0,14,3553;0,15,3553;1,0,3553;1,1,3553;1,2,3553;1,3,3553;1,4,3553;1,5,3553;1,6,3553;1,7,3553;1,8,3553;1,9,3553;1,10,3553;1,11,3553;1,12,3553;1,13,3553;1,14,3553;1,15,3553;2,0,3553;2,1,3553;2,2,3553;2,3,3553;2,4,3553;2,5,3553;2,6,3553;2,7,3553;2,8,3553;2,9,3553;2,10,3553;2,11,3553;2,12,3553;2,13,3553;2,14,3553;2,15,3553;3,0,3553;3,1,3553;3,2,3553;3,3,3553;3,4,3553;3,5,3553;3,6,3553;3,7,3553;3,8,3553;3,9,3553;3,10,3553;3,11,3553;3,12,3553;3,13,3553;3,14,3553;3,15,3553 --service-request-channel-token=94BC20FDC17F906269F31B79294D205C --renderer-client-id=3 --mojo-platform-channel-handle=2388 /prefetch:1
- 15:37:58.046 DEBUG: OnBrowserCreated()
- 15:37:59.484 INFO: GET 200 /
- 15:37:59.547 DEBUG: OnLoadingStateChange: loading=0, url=http://127.0.0.1:8000/
- 15:38:04.703 DEBUG: OnLoadingStateChange: loading=1, url=http://127.0.0.1:8000/
- 15:38:05.234 INFO: GET 302 /index.php
- 15:38:05.765 INFO: GET 302 /index.php/admin/dashboard
- 15:38:06.297 INFO: GET 200 /index.php/auth/login
- 15:38:06.312 DEBUG: OnLoadingStateChange: loading=0, url=http://127.0.0.1:8000/index.php/auth/login
- 15:38:18.094 DEBUG: WM_DESTROY
- 15:38:18.094 DEBUG: RemoveBrowserWindow(): hwnd = 2426294
- 15:38:19.094 INFO: Stopping Mongoose web server
- 15:38:19.094 DEBUG: Mongoose webserver stopped immediately
- 15:38:19.109 DEBUG: OnBeforeClose() hwnd=1181200
- 15:38:19.109 DEBUG: RemoveBrowserWindow(): hwnd = 1181200
- 15:38:19.109 DEBUG: GetBrowserWindow(): not found, hwnd = 1181200
- 15:38:19.109 WARNING: RemoveBrowserWindow() failed: GetBrowserWindow() failed
- 15:38:19.109 DEBUG: Calling CefQuitMessageLoop()
- 15:38:19.781 DEBUG: OnBrowserDestroyed()
- 15:38:19.156 INFO: Ended application
- 15:38:19.156 INFO: --------------------------------------------------------
- 15:38:21.093 INFO: --------------------------------------------------------
- 15:38:21.093 INFO: Started application
- 15:38:21.093 INFO: Logging to: C:\Users\Harun\Desktop\php-desktop\debug.log
- 15:38:21.093 INFO: Log level = DEBUG4
- 15:38:21.093 INFO: Starting Mongoose 3.9c web server
- 15:38:21.093 INFO: WWW directory: C:\Users\Harun\Desktop\php-desktop\www
- 15:38:21.093 INFO: Index files: index.php
- 15:38:21.093 INFO: CGI interpreter: C:\Users\Harun\Desktop\php-desktop\php\php-cgi.exe
- 15:38:21.093 INFO: CGI pattern: **.php$
- 15:38:21.093 INFO: Hide files patterns:
- 15:38:21.093 INFO: CGI environment variables set: TMP=C:\Users\Harun\AppData\Local\Temp\,TEMP=C:\Users\Harun\AppData\Local\Temp\,TMPDIR=C:\Users\Harun\AppData\Local\Temp\,SERVER_NAME=127.0.0.1,PHPDESKTOP_VERSION=57.0
- 15:38:21.109 INFO: Web server url: http://127.0.0.1:8000/
- 15:38:21.109 INFO: remote_debugging_port = 51594
- 15:38:21.109 DEBUG: Command line string for the browser process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --no-sandbox --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --remote-debugging-port=51594
- 15:38:21.187 DEBUG: App::OnContextInitialized()
- 15:38:21.187 DEBUG: Window max width/height = 1840/992
- 15:38:21.203 DEBUG: GetBrowserWindow(): not found, hwnd = 2557208
- 15:38:21.203 DEBUG: WindowProc(): event WM_GETMINMAXINFO: could not fetch BrowserWindow
- 15:38:21.203 DEBUG: BrowserWindow::CreateBrowserControl()
- 15:38:21.203 DEBUG: StoreBrowserWindow(): hwnd = 2557208
- 15:38:21.015 DEBUG: Command line string for the gpu-process process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --type=gpu-process --no-sandbox --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --disable-direct-composition --supports-dual-gpus=false --gpu-driver-bug-workarounds=7,10,18,19,20,23,41,61,74 --disable-gl-extensions="GL_KHR_blend_equation_advanced GL_KHR_blend_equation_advanced_coherent" --gpu-vendor-id=0x8086 --gpu-device-id=0x0166 --gpu-driver-vendor="Intel Corporation" --gpu-driver-version=10.18.10.4358 --gpu-driver-date=12-21-2015 --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --service-request-channel-token=3239C3478A5A584F8C47219B0D30965A --mojo-platform-channel-handle=1828 /prefetch:2
- 15:38:21.281 DEBUG: ClientHandler::OnAfterCreated()
- 15:38:21.281 DEBUG: SetCefBrowser() called in ClientHandler::OnAfterCreated()
- 15:38:21.296 DEBUG: OnLoadingStateChange: loading=1, url=
[0310/153821.556:ERROR:child_thread_impl.cc(762)] Request for unknown Channel-associated interface: ui::mojom::GpuMain
- 15:38:21.016 DEBUG: Command line string for the renderer process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --type=renderer --no-sandbox --primordial-pipe-token=170C87DE551085859FA3CE3D5185A5E0 --lang=en-US --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --enable-pinch --device-scale-factor=1 --num-raster-threads=2 --enable-main-frame-before-activation --content-image-texture-target=0,0,3553;0,1,3553;0,2,3553;0,3,3553;0,4,3553;0,5,3553;0,6,3553;0,7,3553;0,8,3553;0,9,3553;0,10,3553;0,11,3553;0,12,3553;0,13,3553;0,14,3553;0,15,3553;1,0,3553;1,1,3553;1,2,3553;1,3,3553;1,4,3553;1,5,3553;1,6,3553;1,7,3553;1,8,3553;1,9,3553;1,10,3553;1,11,3553;1,12,3553;1,13,3553;1,14,3553;1,15,3553;2,0,3553;2,1,3553;2,2,3553;2,3,3553;2,4,3553;2,5,3553;2,6,3553;2,7,3553;2,8,3553;2,9,3553;2,10,3553;2,11,3553;2,12,3553;2,13,3553;2,14,3553;2,15,3553;3,0,3553;3,1,3553;3,2,3553;3,3,3553;3,4,3553;3,5,3553;3,6,3553;3,7,3553;3,8,3553;3,9,3553;3,10,3553;3,11,3553;3,12,3553;3,13,3553;3,14,3553;3,15,3553 --service-request-channel-token=170C87DE551085859FA3CE3D5185A5E0 --renderer-client-id=3 --mojo-platform-channel-handle=2396 /prefetch:1
- 15:38:21.063 DEBUG: OnBrowserCreated()
- 15:38:23.984 INFO: GET 302 /
- 15:38:23.031 INFO: GET 200 /admin/dashboard
- 15:38:23.093 INFO: GET 200 /admin/style.css
- 15:38:23.171 DEBUG: OnLoadingStateChange: loading=0, url=http://127.0.0.1:8000/admin/dashboard
- 15:38:29.640 DEBUG: ClientHandler::OnAfterCreated()
- 15:38:29.640 DEBUG: GetBrowserWindow(): not found, hwnd = 460280
- 15:38:29.640 DEBUG: BrowserWindow::BrowserWindow() created for Popup
- 15:38:29.640 DEBUG: StoreBrowserWindow(): hwnd = 460280
- 15:38:29.656 DEBUG: Centering popup window relative to its parent
- 15:38:29.656 DEBUG: OnLoadingStateChange: loading=1, url=
- 15:38:29.000 DEBUG: Command line string for the renderer process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --type=renderer --no-sandbox --primordial-pipe-token=02870A1F12811617123EEF5E08AF1AE4 --lang=en-US --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --enable-pinch --device-scale-factor=1 --num-raster-threads=2 --enable-main-frame-before-activation --content-image-texture-target=0,0,3553;0,1,3553;0,2,3553;0,3,3553;0,4,3553;0,5,3553;0,6,3553;0,7,3553;0,8,3553;0,9,3553;0,10,3553;0,11,3553;0,12,3553;0,13,3553;0,14,3553;0,15,3553;1,0,3553;1,1,3553;1,2,3553;1,3,3553;1,4,3553;1,5,3553;1,6,3553;1,7,3553;1,8,3553;1,9,3553;1,10,3553;1,11,3553;1,12,3553;1,13,3553;1,14,3553;1,15,3553;2,0,3553;2,1,3553;2,2,3553;2,3,3553;2,4,3553;2,5,3553;2,6,3553;2,7,3553;2,8,3553;2,9,3553;2,10,3553;2,11,3553;2,12,3553;2,13,3553;2,14,3553;2,15,3553;3,0,3553;3,1,3553;3,2,3553;3,3,3553;3,4,3553;3,5,3553;3,6,3553;3,7,3553;3,8,3553;3,9,3553;3,10,3553;3,11,3553;3,12,3553;3,13,3553;3,14,3553;3,15,3553 --service-request-channel-token=02870A1F12811617123EEF5E08AF1AE4 --renderer-client-id=4 --mojo-platform-channel-handle=3032 /prefetch:1
- 15:38:29.032 DEBUG: OnBrowserCreated()
- 15:38:30.047 DEBUG: OnContextCreated()
- 15:38:30.953 DEBUG: OnLoadingStateChange: loading=0, url=chrome-devtools://devtools/inspector.html
- 15:38:30.766 DEBUG: OnContextCreated()
- 15:38:30.218 INFO: GET 200 /admin/style.css
- 15:38:54.781 DEBUG: OnBeforeClose() hwnd=460280
- 15:38:54.781 DEBUG: RemoveBrowserWindow(): hwnd = 460280
- 15:38:55.875 DEBUG: WM_DESTROY
- 15:38:55.875 DEBUG: RemoveBrowserWindow(): hwnd = 2557208
- 15:38:55.875 INFO: Stopping Mongoose web server
- 15:38:55.875 DEBUG: Mongoose webserver stopped immediately
- 15:38:55.875 DEBUG: OnBeforeClose() hwnd=1246736
- 15:38:55.875 DEBUG: RemoveBrowserWindow(): hwnd = 1246736
- 15:38:55.890 DEBUG: GetBrowserWindow(): not found, hwnd = 1246736
- 15:38:55.890 WARNING: RemoveBrowserWindow() failed: GetBrowserWindow() failed
- 15:38:55.890 DEBUG: Calling CefQuitMessageLoop()
- 15:38:55.953 INFO: Ended application
- 15:38:55.953 INFO: --------------------------------------------------------
- 15:39:29.078 INFO: --------------------------------------------------------
- 15:39:29.094 INFO: Started application
- 15:39:29.094 INFO: Logging to: C:\Users\Harun\Desktop\php-desktop\debug.log
- 15:39:29.094 INFO: Log level = DEBUG4
- 15:39:29.094 INFO: Starting Mongoose 3.9c web server
- 15:39:29.094 INFO: WWW directory: C:\Users\Harun\Desktop\php-desktop\www
- 15:39:29.094 INFO: Index files: index.php
- 15:39:29.094 INFO: CGI interpreter: C:\Users\Harun\Desktop\php-desktop\php\php-cgi.exe
- 15:39:29.094 INFO: CGI pattern: **.php$
- 15:39:29.094 INFO: Hide files patterns:
- 15:39:29.094 INFO: CGI environment variables set: TMP=C:\Users\Harun\AppData\Local\Temp\,TEMP=C:\Users\Harun\AppData\Local\Temp\,TMPDIR=C:\Users\Harun\AppData\Local\Temp\,SERVER_NAME=127.0.0.1,PHPDESKTOP_VERSION=57.0
- 15:39:29.109 INFO: Web server url: http://127.0.0.1:8000/
- 15:39:29.109 INFO: remote_debugging_port = 49760
- 15:39:29.109 DEBUG: Command line string for the browser process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --no-sandbox --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --remote-debugging-port=49760
- 15:39:29.188 DEBUG: App::OnContextInitialized()
- 15:39:29.188 DEBUG: Window max width/height = 1840/992
- 15:39:29.188 DEBUG: GetBrowserWindow(): not found, hwnd = 919556
- 15:39:29.203 DEBUG: WindowProc(): event WM_GETMINMAXINFO: could not fetch BrowserWindow
- 15:39:29.203 DEBUG: BrowserWindow::CreateBrowserControl()
- 15:39:29.203 DEBUG: StoreBrowserWindow(): hwnd = 919556
- 15:39:29.000 DEBUG: Command line string for the gpu-process process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --type=gpu-process --no-sandbox --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --disable-direct-composition --supports-dual-gpus=false --gpu-driver-bug-workarounds=7,10,18,19,20,23,41,61,74 --disable-gl-extensions="GL_KHR_blend_equation_advanced GL_KHR_blend_equation_advanced_coherent" --gpu-vendor-id=0x8086 --gpu-device-id=0x0166 --gpu-driver-vendor="Intel Corporation" --gpu-driver-version=10.18.10.4358 --gpu-driver-date=12-21-2015 --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --service-request-channel-token=11772DDD2219138F48A15CF97E94EC26 --mojo-platform-channel-handle=1820 /prefetch:2
- 15:39:29.266 DEBUG: ClientHandler::OnAfterCreated()
- 15:39:29.266 DEBUG: SetCefBrowser() called in ClientHandler::OnAfterCreated()
- 15:39:29.297 DEBUG: OnLoadingStateChange: loading=1, url=
[0310/153930.012:ERROR:child_thread_impl.cc(762)] Request for unknown Channel-associated interface: ui::mojom::GpuMain
- 15:39:30.000 DEBUG: Command line string for the renderer process: "C:\Users\Harun\Desktop\php-desktop\phpdesktop-chrome.exe" --type=renderer --no-sandbox --primordial-pipe-token=3068F8ADDB191860EBF795098700B655 --lang=en-US --lang=en-US --log-file="C:\Users\Harun\Desktop\php-desktop\debug.log" --enable-pinch --device-scale-factor=1 --num-raster-threads=2 --enable-main-frame-before-activation --content-image-texture-target=0,0,3553;0,1,3553;0,2,3553;0,3,3553;0,4,3553;0,5,3553;0,6,3553;0,7,3553;0,8,3553;0,9,3553;0,10,3553;0,11,3553;0,12,3553;0,13,3553;0,14,3553;0,15,3553;1,0,3553;1,1,3553;1,2,3553;1,3,3553;1,4,3553;1,5,3553;1,6,3553;1,7,3553;1,8,3553;1,9,3553;1,10,3553;1,11,3553;1,12,3553;1,13,3553;1,14,3553;1,15,3553;2,0,3553;2,1,3553;2,2,3553;2,3,3553;2,4,3553;2,5,3553;2,6,3553;2,7,3553;2,8,3553;2,9,3553;2,10,3553;2,11,3553;2,12,3553;2,13,3553;2,14,3553;2,15,3553;3,0,3553;3,1,3553;3,2,3553;3,3,3553;3,4,3553;3,5,3553;3,6,3553;3,7,3553;3,8,3553;3,9,3553;3,10,3553;3,11,3553;3,12,3553;3,13,3553;3,14,3553;3,15,3553 --service-request-channel-token=3068F8ADDB191860EBF795098700B655 --renderer-client-id=3 --mojo-platform-channel-handle=2384 /prefetch:1
- 15:39:30.063 DEBUG: OnBrowserCreated()
- 15:39:31.984 INFO: GET 302 /
- 15:39:32.500 INFO: GET 200 /index.php/auth/login
- 15:39:32.516 DEBUG: OnLoadingStateChange: loading=0, url=http://127.0.0.1:8000/index.php/auth/login
- 15:40:19.406 DEBUG: OnBeforeClose() hwnd=2557366
- 15:40:19.406 DEBUG: RemoveBrowserWindow(): hwnd = 2557366
- 15:40:19.406 DEBUG: GetBrowserWindow(): not found, hwnd = 2557366
- 15:40:19.406 WARNING: RemoveBrowserWindow() failed: GetBrowserWindow() failed
- 18:29:16.172 INFO: --------------------------------------------------------
- 18:29:16.172 INFO: Started application
- 18:29:16.172 INFO: Logging to: C:\Users\Harun\Desktop\php-desktop\debug.log
- 18:29:16.172 INFO: Log level = DEBUG4
- 18:29:16.172 INFO: Starting Mongoose 3.9c web server
- 18:29:16.188 INFO: WWW directory: C:\Users\Harun\Desktop\php-desktop\www
- 18:29:16.188 INFO: Index files: index.php
- 18:29:16.188 INFO: CGI interpreter: C:\Users\Harun\Desktop\php-desktop\php\php-cgi.exe
- 18:29:16.188 INFO: CGI pattern: **.php$
- 18:29:16.188 INFO: Hide files patterns:
- 18:29:16.188 INFO: CGI environment variables set: TMP=C:\Users\Harun\AppData\Local\Temp\,TEMP=C:\Users\Harun\AppData\Local\Temp\,TMPDIR=C:\Users\Harun\AppData\Local\Temp\,SERVER_NAME=127.0.0.1,PHPDESKTOP_VERSION=57.0
- 18:29:16.203 INFO: Web server url: http://127.0.0.1:8000/
- 18:29:16.219 INFO: remote_debugging_port = 61034