-
Notifications
You must be signed in to change notification settings - Fork 0
/
nohup.out
4463 lines (4399 loc) ยท 521 KB
/
nohup.out
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
Watching for file changes with StatReloader
[07/Aug/2019 09:46:00] "GET / HTTP/1.1" 200 12297
[07/Aug/2019 09:46:00] "GET /static/img/ShareYourDay_line.png HTTP/1.1" 304 0
Not Found: /images/6B9EF3B7-4108-4F2A-8114-53ED6FE481F8.jpeg
[07/Aug/2019 09:46:00] "GET /images/6B9EF3B7-4108-4F2A-8114-53ED6FE481F8.jpeg HTTP/1.1" 404 2523
Not Found: /images/6B9EF3B7-4108-4F2A-8114-53ED6FE481F8.jpeg
[07/Aug/2019 09:46:00] "GET /images/6B9EF3B7-4108-4F2A-8114-53ED6FE481F8.jpeg HTTP/1.1" 404 2523
[07/Aug/2019 09:46:20] "GET / HTTP/1.1" 200 12297
Not Found: /images/6B9EF3B7-4108-4F2A-8114-53ED6FE481F8.jpeg
[07/Aug/2019 09:46:20] "GET /images/6B9EF3B7-4108-4F2A-8114-53ED6FE481F8.jpeg HTTP/1.1" 404 2523
Not Found: /images/6B9EF3B7-4108-4F2A-8114-53ED6FE481F8.jpeg
[07/Aug/2019 09:46:20] "GET /images/6B9EF3B7-4108-4F2A-8114-53ED6FE481F8.jpeg HTTP/1.1" 404 2523
[07/Aug/2019 09:46:20] "GET /static/img/SYD_fabi.ico HTTP/1.1" 200 108767
[07/Aug/2019 09:46:21] "GET / HTTP/1.1" 200 12297
Not Found: /images/6B9EF3B7-4108-4F2A-8114-53ED6FE481F8.jpeg
[07/Aug/2019 09:46:21] "GET /images/6B9EF3B7-4108-4F2A-8114-53ED6FE481F8.jpeg HTTP/1.1" 404 2523
Not Found: /images/6B9EF3B7-4108-4F2A-8114-53ED6FE481F8.jpeg
[07/Aug/2019 09:46:21] "GET /images/6B9EF3B7-4108-4F2A-8114-53ED6FE481F8.jpeg HTTP/1.1" 404 2523
[07/Aug/2019 09:46:21] "GET / HTTP/1.1" 200 12297
Not Found: /images/6B9EF3B7-4108-4F2A-8114-53ED6FE481F8.jpeg
[07/Aug/2019 09:46:21] "GET /images/6B9EF3B7-4108-4F2A-8114-53ED6FE481F8.jpeg HTTP/1.1" 404 2523
Not Found: /images/6B9EF3B7-4108-4F2A-8114-53ED6FE481F8.jpeg
[07/Aug/2019 09:46:22] "GET /images/6B9EF3B7-4108-4F2A-8114-53ED6FE481F8.jpeg HTTP/1.1" 404 2523
[07/Aug/2019 09:46:22] "GET /static/img/SYD_fabi.ico HTTP/1.1" 200 108767
[07/Aug/2019 09:46:23] "GET / HTTP/1.1" 200 12297
Not Found: /images/6B9EF3B7-4108-4F2A-8114-53ED6FE481F8.jpeg
[07/Aug/2019 09:46:23] "GET /images/6B9EF3B7-4108-4F2A-8114-53ED6FE481F8.jpeg HTTP/1.1" 404 2523
[07/Aug/2019 09:46:24] "GET /static/img/SYD_fabi.ico HTTP/1.1" 200 108767
Watching for file changes with StatReloader
[07/Aug/2019 09:48:42] "GET / HTTP/1.1" 200 12297
Not Found: /images/6B9EF3B7-4108-4F2A-8114-53ED6FE481F8.jpeg
[07/Aug/2019 09:48:42] "GET /images/6B9EF3B7-4108-4F2A-8114-53ED6FE481F8.jpeg HTTP/1.1" 404 2523
Not Found: /images/6B9EF3B7-4108-4F2A-8114-53ED6FE481F8.jpeg
[07/Aug/2019 09:48:42] "GET /images/6B9EF3B7-4108-4F2A-8114-53ED6FE481F8.jpeg HTTP/1.1" 404 2523
[07/Aug/2019 09:48:43] "GET /static/img/SYD_fabi.ico HTTP/1.1" 200 108767
[07/Aug/2019 09:49:24] "GET /index/detail/1/ HTTP/1.1" 200 11242
[07/Aug/2019 09:49:26] "POST /index/like/1/ HTTP/1.1" 302 0
[07/Aug/2019 09:49:26] "GET /accounts/login/?next=/index/like/1/ HTTP/1.1" 200 10939
[07/Aug/2019 09:49:26] "GET /static/css/login.css HTTP/1.1" 200 2330
[07/Aug/2019 10:14:14] "GET / HTTP/1.1" 200 12297
[07/Aug/2019 10:59:20] "GET / HTTP/1.1" 200 12297
[07/Aug/2019 11:04:10] "GET /index/detail/1/ HTTP/1.1" 200 11242
[07/Aug/2019 11:04:10] "GET /static/img/ShareYourDay_line.png HTTP/1.1" 304 0
[07/Aug/2019 11:04:10] "GET /static/img/SYD_fabi.ico HTTP/1.1" 200 108767
[07/Aug/2019 11:11:12] "GET / HTTP/1.1" 200 12297
[07/Aug/2019 12:07:45] "GET /index/detail/1/ HTTP/1.1" 200 11242
[07/Aug/2019 12:07:45] "GET /static/img/ShareYourDay_line.png HTTP/1.1" 304 0
[07/Aug/2019 12:07:45] "GET /static/img/SYD_fabi.ico HTTP/1.1" 200 108767
/home/lab/Documents/likelion/Share-Your-Day/web/views.py changed, reloading.
Performing system checks...
System check identified no issues (0 silenced).
August 07, 2019 - 09:48:25
Django version 2.2.4, using settings 'fund.settings'
Starting development server at http://0.0.0.0:8080/
Quit the server with CONTROL-C.
Watching for file changes with StatReloader
Internal Server Error: /index/detail/1/
Traceback (most recent call last):
File "/home/lab/.local/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
return self.cursor.execute(sql, params)
File "/home/lab/.local/lib/python3.6/site-packages/django/db/backends/sqlite3/base.py", line 383, in execute
return Database.Cursor.execute(self, query, params)
sqlite3.OperationalError: no such column: web_register.pub_date
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/lab/.local/lib/python3.6/site-packages/django/core/handlers/exception.py", line 34, in inner
response = get_response(request)
File "/home/lab/.local/lib/python3.6/site-packages/django/core/handlers/base.py", line 115, in _get_response
response = self.process_exception_by_middleware(e, request)
File "/home/lab/.local/lib/python3.6/site-packages/django/core/handlers/base.py", line 113, in _get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "/home/lab/Documents/likelion/Share-Your-Day/web/views.py", line 53, in detail
fund = get_object_or_404(Register, pk=fund_id)
File "/home/lab/.local/lib/python3.6/site-packages/django/shortcuts.py", line 93, in get_object_or_404
return queryset.get(*args, **kwargs)
File "/home/lab/.local/lib/python3.6/site-packages/django/db/models/query.py", line 402, in get
num = len(clone)
File "/home/lab/.local/lib/python3.6/site-packages/django/db/models/query.py", line 256, in __len__
self._fetch_all()
File "/home/lab/.local/lib/python3.6/site-packages/django/db/models/query.py", line 1242, in _fetch_all
self._result_cache = list(self._iterable_class(self))
File "/home/lab/.local/lib/python3.6/site-packages/django/db/models/query.py", line 55, in __iter__
results = compiler.execute_sql(chunked_fetch=self.chunked_fetch, chunk_size=self.chunk_size)
File "/home/lab/.local/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1100, in execute_sql
cursor.execute(sql, params)
File "/home/lab/.local/lib/python3.6/site-packages/django/db/backends/utils.py", line 99, in execute
return super().execute(sql, params)
File "/home/lab/.local/lib/python3.6/site-packages/django/db/backends/utils.py", line 67, in execute
return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
File "/home/lab/.local/lib/python3.6/site-packages/django/db/backends/utils.py", line 76, in _execute_with_wrappers
return executor(sql, params, many, context)
File "/home/lab/.local/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
return self.cursor.execute(sql, params)
File "/home/lab/.local/lib/python3.6/site-packages/django/db/utils.py", line 89, in __exit__
raise dj_exc_value.with_traceback(traceback) from exc_value
File "/home/lab/.local/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
return self.cursor.execute(sql, params)
File "/home/lab/.local/lib/python3.6/site-packages/django/db/backends/sqlite3/base.py", line 383, in execute
return Database.Cursor.execute(self, query, params)
django.db.utils.OperationalError: no such column: web_register.pub_date
[07/Aug/2019 21:33:12] "GET /index/detail/1/ HTTP/1.1" 500 138516
Not Found: /favicon.ico
[07/Aug/2019 21:33:13] "GET /favicon.ico HTTP/1.1" 404 2539
[07/Aug/2019 21:33:37] "GET /index/detail/1/ HTTP/1.1" 200 13350
[07/Aug/2019 21:33:37] "GET /static/img/ShareYourDay_line.png HTTP/1.1" 304 0
[07/Aug/2019 21:33:41] "GET / HTTP/1.1" 200 12412
[07/Aug/2019 21:33:41] "GET /media/images/6B9EF3B7-4108-4F2A-8114-53ED6FE481F8.jpeg HTTP/1.1" 200 2252800
Traceback (most recent call last):
File "/usr/lib/python3.6/wsgiref/handlers.py", line 138, in run
self.finish_response()
File "/usr/lib/python3.6/wsgiref/handlers.py", line 180, in finish_response
self.write(data)
File "/usr/lib/python3.6/wsgiref/handlers.py", line 279, in write
self._write(data)
File "/usr/lib/python3.6/wsgiref/handlers.py", line 453, in _write
result = self.stdout.write(data)
File "/usr/lib/python3.6/socketserver.py", line 803, in write
self._sock.sendall(b)
ConnectionResetError: [Errno 104] Connection reset by peer
[07/Aug/2019 21:33:41] "GET /media/images/6B9EF3B7-4108-4F2A-8114-53ED6FE481F8.jpeg HTTP/1.1" 500 59
----------------------------------------
Exception happened during processing of request from ('220.78.129.111', 60588)
Traceback (most recent call last):
File "/usr/lib/python3.6/wsgiref/handlers.py", line 138, in run
self.finish_response()
File "/usr/lib/python3.6/wsgiref/handlers.py", line 180, in finish_response
self.write(data)
File "/usr/lib/python3.6/wsgiref/handlers.py", line 279, in write
self._write(data)
File "/usr/lib/python3.6/wsgiref/handlers.py", line 453, in _write
result = self.stdout.write(data)
File "/usr/lib/python3.6/socketserver.py", line 803, in write
self._sock.sendall(b)
ConnectionResetError: [Errno 104] Connection reset by peer
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/lib/python3.6/wsgiref/handlers.py", line 141, in run
self.handle_error()
File "/home/lab/.local/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 116, in handle_error
super().handle_error()
File "/usr/lib/python3.6/wsgiref/handlers.py", line 368, in handle_error
self.finish_response()
File "/usr/lib/python3.6/wsgiref/handlers.py", line 180, in finish_response
self.write(data)
File "/usr/lib/python3.6/wsgiref/handlers.py", line 274, in write
self.send_headers()
File "/usr/lib/python3.6/wsgiref/handlers.py", line 331, in send_headers
if not self.origin_server or self.client_is_modern():
File "/usr/lib/python3.6/wsgiref/handlers.py", line 344, in client_is_modern
return self.environ['SERVER_PROTOCOL'].upper() != 'HTTP/0.9'
TypeError: 'NoneType' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/lib/python3.6/socketserver.py", line 654, in process_request_thread
self.finish_request(request, client_address)
File "/usr/lib/python3.6/socketserver.py", line 364, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/lib/python3.6/socketserver.py", line 724, in __init__
self.handle()
File "/home/lab/.local/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 171, in handle
self.handle_one_request()
File "/home/lab/.local/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 194, in handle_one_request
handler.run(self.server.get_app())
File "/usr/lib/python3.6/wsgiref/handlers.py", line 144, in run
self.close()
File "/home/lab/.local/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 111, in close
super().close()
File "/usr/lib/python3.6/wsgiref/simple_server.py", line 35, in close
self.status.split(' ',1)[0], self.bytes_sent
AttributeError: 'NoneType' object has no attribute 'split'
----------------------------------------
[07/Aug/2019 21:33:43] "GET /media/images/6B9EF3B7-4108-4F2A-8114-53ED6FE481F8.jpeg HTTP/1.1" 200 2972112
[07/Aug/2019 21:33:43] "GET /static/img/SYD_fabi.ico HTTP/1.1" 304 0
[07/Aug/2019 21:33:48] "GET /accounts/login/ HTTP/1.1" 200 10911
[07/Aug/2019 21:33:54] "GET / HTTP/1.1" 200 12412
[07/Aug/2019 21:33:57] "GET /admin HTTP/1.1" 301 0
[07/Aug/2019 21:33:57] "GET /admin/ HTTP/1.1" 302 0
[07/Aug/2019 21:33:57] "GET /admin/login/?next=/admin/ HTTP/1.1" 200 1839
[07/Aug/2019 21:33:58] "GET /static/admin/css/login.css HTTP/1.1" 200 1233
[07/Aug/2019 21:33:58] "GET /static/admin/css/responsive.css HTTP/1.1" 200 17944
[07/Aug/2019 21:33:58] "GET /static/admin/css/base.css HTTP/1.1" 200 16378
[07/Aug/2019 21:33:58] "GET /static/admin/css/fonts.css HTTP/1.1" 200 423
[07/Aug/2019 21:33:58] "GET /static/admin/fonts/Roboto-Regular-webfont.woff HTTP/1.1" 200 85876
[07/Aug/2019 21:33:58] "GET /static/admin/fonts/Roboto-Light-webfont.woff HTTP/1.1" 200 85692
[07/Aug/2019 21:34:01] "POST /admin/login/?next=/admin/ HTTP/1.1" 200 2012
[07/Aug/2019 21:34:01] "GET /static/admin/fonts/Roboto-Bold-webfont.woff HTTP/1.1" 200 86184
[07/Aug/2019 21:34:19] "POST /admin/login/?next=/admin/ HTTP/1.1" 302 0
[07/Aug/2019 21:34:19] "GET /admin/ HTTP/1.1" 200 7588
[07/Aug/2019 21:34:19] "GET /static/admin/css/dashboard.css HTTP/1.1" 200 412
[07/Aug/2019 21:34:19] "GET /static/admin/img/icon-addlink.svg HTTP/1.1" 200 331
[07/Aug/2019 21:34:19] "GET /static/admin/img/icon-changelink.svg HTTP/1.1" 200 380
[07/Aug/2019 21:34:23] "GET /admin/accounts/profile/ HTTP/1.1" 200 4449
[07/Aug/2019 21:34:23] "GET /static/admin/css/changelists.css HTTP/1.1" 200 6170
[07/Aug/2019 21:34:23] "GET /admin/jsi18n/ HTTP/1.1" 200 8330
[07/Aug/2019 21:34:23] "GET /static/admin/js/jquery.init.js HTTP/1.1" 200 363
[07/Aug/2019 21:34:23] "GET /static/admin/js/admin/RelatedObjectLookups.js HTTP/1.1" 200 6918
[07/Aug/2019 21:34:23] "GET /static/admin/js/core.js HTTP/1.1" 200 7099
[07/Aug/2019 21:34:24] "GET /static/admin/js/prepopulate.js HTTP/1.1" 200 1530
[07/Aug/2019 21:34:24] "GET /static/admin/js/urlify.js HTTP/1.1" 200 8941
[07/Aug/2019 21:34:24] "GET /static/admin/js/actions.js HTTP/1.1" 200 6766
[07/Aug/2019 21:34:24] "GET /static/admin/js/vendor/jquery/jquery.js HTTP/1.1" 200 271817
[07/Aug/2019 21:34:24] "GET /static/admin/js/vendor/xregexp/xregexp.js HTTP/1.1" 200 128820
[07/Aug/2019 21:34:24] "GET /static/admin/img/tooltag-add.svg HTTP/1.1" 200 331
[07/Aug/2019 21:34:25] "GET /admin/ HTTP/1.1" 200 7588
[07/Aug/2019 21:34:31] "GET / HTTP/1.1" 200 12380
[07/Aug/2019 21:34:43] "GET / HTTP/1.1" 200 12412
[07/Aug/2019 21:34:43] "GET / HTTP/1.1" 200 12412
[07/Aug/2019 21:34:45] "GET /index/detail/1/ HTTP/1.1" 200 13318
[07/Aug/2019 21:34:47] "GET / HTTP/1.1" 200 12412
Not Found: /index/test-like
[07/Aug/2019 21:34:47] "POST /index/test-like HTTP/1.1" 404 1741
[07/Aug/2019 21:34:47] "GET /static/img/ShareYourDay_line.png HTTP/1.1" 200 14702
[07/Aug/2019 21:34:48] "GET /media/images/6B9EF3B7-4108-4F2A-8114-53ED6FE481F8.jpeg HTTP/1.1" 200 2972112
[07/Aug/2019 21:34:48] "GET /static/img/SYD_fabi.ico HTTP/1.1" 200 108767
Not Found: /index/test-like
[07/Aug/2019 21:34:49] "POST /index/test-like HTTP/1.1" 404 1741
Not Found: /index/test-like
[07/Aug/2019 21:34:50] "POST /index/test-like HTTP/1.1" 404 1741
Not Found: /index/test-like
[07/Aug/2019 21:34:50] "POST /index/test-like HTTP/1.1" 404 1741
Not Found: /index/test-like
[07/Aug/2019 21:34:50] "POST /index/test-like HTTP/1.1" 404 1741
Not Found: /index/test-like
[07/Aug/2019 21:34:50] "POST /index/test-like HTTP/1.1" 404 1741
[07/Aug/2019 21:34:52] "GET /accounts/login/ HTTP/1.1" 200 10911
[07/Aug/2019 21:34:52] "GET /static/css/login.css HTTP/1.1" 200 2330
[07/Aug/2019 21:34:53] "GET / HTTP/1.1" 200 12412
[07/Aug/2019 21:34:54] "GET /accounts/signup/ HTTP/1.1" 200 10817
[07/Aug/2019 21:34:54] "GET /static/css/signup.css HTTP/1.1" 200 2245
[07/Aug/2019 21:34:54] "GET /static/js/signup.js HTTP/1.1" 200 350
[07/Aug/2019 21:36:16] "POST /accounts/signup/ HTTP/1.1" 302 0
[07/Aug/2019 21:36:16] "GET / HTTP/1.1" 200 12380
[07/Aug/2019 21:36:19] "GET /accounts/logout/ HTTP/1.1" 302 0
[07/Aug/2019 21:36:19] "GET / HTTP/1.1" 200 12412
[07/Aug/2019 21:36:20] "GET /accounts/login/ HTTP/1.1" 200 10911
[07/Aug/2019 21:36:30] "POST /accounts/login/ HTTP/1.1" 302 0
[07/Aug/2019 21:36:30] "GET / HTTP/1.1" 200 12380
[07/Aug/2019 21:36:35] "GET /index/detail/1/ HTTP/1.1" 200 13318
[07/Aug/2019 21:36:41] "GET /index/register/ HTTP/1.1" 200 10256
[07/Aug/2019 21:36:41] "GET /static/css/register.css HTTP/1.1" 200 2794
[07/Aug/2019 21:37:21] "POST /index/register/create/ HTTP/1.1" 302 0
[07/Aug/2019 21:37:21] "GET /index/detail/2/ HTTP/1.1" 200 12723
[07/Aug/2019 21:37:21] "GET /media/images/2019/08/07/test.png HTTP/1.1" 200 938161
[07/Aug/2019 21:37:24] "POST /index/test-like HTTP/1.1" 200 47
[07/Aug/2019 21:37:28] "GET / HTTP/1.1" 200 14948
[07/Aug/2019 21:37:28] "GET /media/images/2019/08/07/test.png HTTP/1.1" 304 0
[07/Aug/2019 21:37:31] "GET /index/detail/2/ HTTP/1.1" 200 13293
[07/Aug/2019 21:37:31] "GET /media/images/2019/08/07/test.png HTTP/1.1" 304 0
[07/Aug/2019 21:37:32] "GET / HTTP/1.1" 200 14948
[07/Aug/2019 21:37:32] "GET /media/images/2019/08/07/test.png HTTP/1.1" 200 938161
[07/Aug/2019 21:37:35] "GET /index/detail/2/ HTTP/1.1" 200 13293
[07/Aug/2019 21:37:35] "GET /media/images/2019/08/07/test.png HTTP/1.1" 304 0
[07/Aug/2019 21:37:37] "GET /index/detail/2/ HTTP/1.1" 200 13293
[07/Aug/2019 21:37:37] "GET /media/images/2019/08/07/test.png HTTP/1.1" 304 0
Not Found: /index/test-like
[07/Aug/2019 21:37:39] "POST /index/test-like HTTP/1.1" 404 1741
Not Found: /index/test-like
[07/Aug/2019 21:37:40] "POST /index/test-like HTTP/1.1" 404 1741
Not Found: /index/test-like
[07/Aug/2019 21:37:40] "POST /index/test-like HTTP/1.1" 404 1741
Not Found: /index/test-like
[07/Aug/2019 21:37:42] "POST /index/test-like HTTP/1.1" 404 1741
Not Found: /index/test-like
[07/Aug/2019 21:37:42] "POST /index/test-like HTTP/1.1" 404 1741
Not Found: /index/test-like
[07/Aug/2019 21:37:42] "POST /index/test-like HTTP/1.1" 404 1741
[07/Aug/2019 21:37:47] "GET /index/detail/2/ HTTP/1.1" 200 13293
[07/Aug/2019 21:37:47] "GET /media/images/2019/08/07/test.png HTTP/1.1" 304 0
Not Found: /index/test-like
[07/Aug/2019 21:37:49] "POST /index/test-like HTTP/1.1" 404 1741
Not Found: /index/test-like
[07/Aug/2019 21:37:49] "POST /index/test-like HTTP/1.1" 404 1741
[07/Aug/2019 21:37:50] "GET /index/detail/2/ HTTP/1.1" 200 13293
[07/Aug/2019 21:37:50] "GET /media/images/2019/08/07/test.png HTTP/1.1" 304 0
[07/Aug/2019 21:37:50] "GET /static/img/SYD_fabi.ico HTTP/1.1" 200 108767
[07/Aug/2019 21:37:51] "GET /accounts/logout/ HTTP/1.1" 302 0
[07/Aug/2019 21:37:51] "GET / HTTP/1.1" 200 14980
[07/Aug/2019 21:37:51] "GET /media/images/2019/08/07/test.png HTTP/1.1" 304 0
[07/Aug/2019 21:37:52] "GET /accounts/login/ HTTP/1.1" 200 10911
[07/Aug/2019 21:37:58] "POST /accounts/login/ HTTP/1.1" 200 10951
[07/Aug/2019 21:38:13] "GET /static/css/login.css HTTP/1.1" 304 0
[07/Aug/2019 21:38:13] "GET /accounts/login/ HTTP/1.1" 200 10911
[07/Aug/2019 21:38:13] "GET /static/img/ShareYourDay_line.png HTTP/1.1" 200 14702
[07/Aug/2019 21:38:14] "GET /static/img/SYD_fabi.ico HTTP/1.1" 200 108767
[07/Aug/2019 21:38:29] "POST /accounts/login/ HTTP/1.1" 200 10951
[07/Aug/2019 21:38:42] "GET / HTTP/1.1" 200 14948
[07/Aug/2019 21:38:42] "GET /static/img/ShareYourDay_line.png HTTP/1.1" 304 0
[07/Aug/2019 21:38:43] "GET /media/images/2019/08/07/test.png HTTP/1.1" 200 938161
[07/Aug/2019 21:38:43] "GET /media/images/6B9EF3B7-4108-4F2A-8114-53ED6FE481F8.jpeg HTTP/1.1" 200 2972112
[07/Aug/2019 21:38:48] "GET /index/detail/2/ HTTP/1.1" 200 13293
[07/Aug/2019 21:38:50] "POST /index/test-like HTTP/1.1" 200 47
[07/Aug/2019 21:38:56] "GET /accounts/logout/ HTTP/1.1" 302 0
[07/Aug/2019 21:38:56] "GET / HTTP/1.1" 200 14980
[07/Aug/2019 21:38:56] "GET /media/images/2019/08/07/test.png HTTP/1.1" 304 0
----------------------------------------
Exception happened during processing of request from ('220.78.129.111', 62217)
----------------------------------------
Exception happened during processing of request from ('220.78.129.111', 62215)
Traceback (most recent call last):
File "/usr/lib/python3.6/socketserver.py", line 654, in process_request_thread
self.finish_request(request, client_address)
File "/usr/lib/python3.6/socketserver.py", line 364, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/lib/python3.6/socketserver.py", line 724, in __init__
self.handle()
File "/home/lab/.local/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 171, in handle
self.handle_one_request()
File "/home/lab/.local/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 179, in handle_one_request
self.raw_requestline = self.rfile.readline(65537)
File "/usr/lib/python3.6/socket.py", line 586, in readinto
return self._sock.recv_into(b)
ConnectionResetError: [Errno 104] Connection reset by peer
----------------------------------------
----------------------------------------
Exception happened during processing of request from ('220.78.129.111', 62216)
Traceback (most recent call last):
File "/usr/lib/python3.6/socketserver.py", line 654, in process_request_thread
self.finish_request(request, client_address)
File "/usr/lib/python3.6/socketserver.py", line 364, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/lib/python3.6/socketserver.py", line 724, in __init__
self.handle()
File "/home/lab/.local/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 171, in handle
self.handle_one_request()
File "/home/lab/.local/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 179, in handle_one_request
self.raw_requestline = self.rfile.readline(65537)
File "/usr/lib/python3.6/socket.py", line 586, in readinto
return self._sock.recv_into(b)
ConnectionResetError: [Errno 104] Connection reset by peer
----------------------------------------
Traceback (most recent call last):
File "/usr/lib/python3.6/socketserver.py", line 654, in process_request_thread
self.finish_request(request, client_address)
File "/usr/lib/python3.6/socketserver.py", line 364, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/lib/python3.6/socketserver.py", line 724, in __init__
self.handle()
File "/home/lab/.local/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 171, in handle
self.handle_one_request()
File "/home/lab/.local/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 179, in handle_one_request
self.raw_requestline = self.rfile.readline(65537)
File "/usr/lib/python3.6/socket.py", line 586, in readinto
return self._sock.recv_into(b)
ConnectionResetError: [Errno 104] Connection reset by peer
----------------------------------------
[07/Aug/2019 21:39:02] "POST /accounts/login/ HTTP/1.1" 200 10951
[07/Aug/2019 21:39:54] "GET /index/detail/2/ HTTP/1.1" 200 13895
[07/Aug/2019 21:39:54] "GET /media/images/2019/08/07/test.png HTTP/1.1" 304 0
[07/Aug/2019 21:39:56] "GET /accounts/login/ HTTP/1.1" 200 10911
[07/Aug/2019 21:39:56] "GET /static/css/login.css HTTP/1.1" 200 2330
[07/Aug/2019 21:40:16] "POST /accounts/login/ HTTP/1.1" 302 0
[07/Aug/2019 21:40:17] "GET / HTTP/1.1" 200 14948
[07/Aug/2019 21:40:17] "GET /media/images/2019/08/07/test.png HTTP/1.1" 304 0
[07/Aug/2019 21:40:22] "POST /accounts/login/ HTTP/1.1" 200 10951
----------------------------------------
Exception happened during processing of request from ('220.78.129.111', 62224)
Traceback (most recent call last):
File "/usr/lib/python3.6/socketserver.py", line 654, in process_request_thread
self.finish_request(request, client_address)
File "/usr/lib/python3.6/socketserver.py", line 364, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/lib/python3.6/socketserver.py", line 724, in __init__
self.handle()
File "/home/lab/.local/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 171, in handle
self.handle_one_request()
File "/home/lab/.local/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 179, in handle_one_request
self.raw_requestline = self.rfile.readline(65537)
File "/usr/lib/python3.6/socket.py", line 586, in readinto
return self._sock.recv_into(b)
ConnectionResetError: [Errno 104] Connection reset by peer
----------------------------------------
[07/Aug/2019 21:40:25] "GET / HTTP/1.1" 200 14980
Not Found: /apple-touch-icon-precomposed.png
[07/Aug/2019 21:40:25] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 2602
Not Found: /apple-touch-icon.png
[07/Aug/2019 21:40:25] "GET /apple-touch-icon.png HTTP/1.1" 404 2566
[07/Aug/2019 21:40:25] "GET /static/img/SYD_fabi.ico HTTP/1.1" 200 108767
[07/Aug/2019 21:40:26] "GET / HTTP/1.1" 200 14980
[07/Aug/2019 21:40:26] "GET / HTTP/1.1" 200 14980
Not Found: /apple-touch-icon-precomposed.png
[07/Aug/2019 21:40:26] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 2602
Not Found: /apple-touch-icon-precomposed.png
Not Found: /apple-touch-icon.png
[07/Aug/2019 21:40:26] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 2602
[07/Aug/2019 21:40:26] "GET /apple-touch-icon.png HTTP/1.1" 404 2566
Not Found: /apple-touch-icon.png
[07/Aug/2019 21:40:26] "GET /apple-touch-icon.png HTTP/1.1" 404 2566
[07/Aug/2019 21:40:26] "GET /static/img/SYD_fabi.ico HTTP/1.1" 200 108767
[07/Aug/2019 21:40:26] "GET /static/img/SYD_fabi.ico HTTP/1.1" 200 108767
[07/Aug/2019 21:40:26] "GET / HTTP/1.1" 200 14980
Not Found: /apple-touch-icon-precomposed.png
[07/Aug/2019 21:40:26] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 2602
Not Found: /apple-touch-icon.png
[07/Aug/2019 21:40:26] "GET /apple-touch-icon.png HTTP/1.1" 404 2566
[07/Aug/2019 21:40:26] "GET /static/img/SYD_fabi.ico HTTP/1.1" 200 108767
[07/Aug/2019 21:40:30] "GET / HTTP/1.1" 200 14980
[07/Aug/2019 21:40:31] "GET /media/images/2019/08/07/test.png HTTP/1.1" 200 938161
[07/Aug/2019 21:40:31] "GET /media/images/6B9EF3B7-4108-4F2A-8114-53ED6FE481F8.jpeg HTTP/1.1" 200 1941504
Traceback (most recent call last):
File "/usr/lib/python3.6/wsgiref/handlers.py", line 138, in run
self.finish_response()
File "/usr/lib/python3.6/wsgiref/handlers.py", line 180, in finish_response
self.write(data)
File "/usr/lib/python3.6/wsgiref/handlers.py", line 279, in write
self._write(data)
File "/usr/lib/python3.6/wsgiref/handlers.py", line 453, in _write
result = self.stdout.write(data)
File "/usr/lib/python3.6/socketserver.py", line 803, in write
self._sock.sendall(b)
ConnectionResetError: [Errno 104] Connection reset by peer
[07/Aug/2019 21:40:31] "GET /media/images/6B9EF3B7-4108-4F2A-8114-53ED6FE481F8.jpeg HTTP/1.1" 500 59
----------------------------------------
Exception happened during processing of request from ('220.78.129.111', 60741)
Traceback (most recent call last):
File "/usr/lib/python3.6/wsgiref/handlers.py", line 138, in run
self.finish_response()
File "/usr/lib/python3.6/wsgiref/handlers.py", line 180, in finish_response
self.write(data)
File "/usr/lib/python3.6/wsgiref/handlers.py", line 279, in write
self._write(data)
File "/usr/lib/python3.6/wsgiref/handlers.py", line 453, in _write
result = self.stdout.write(data)
File "/usr/lib/python3.6/socketserver.py", line 803, in write
self._sock.sendall(b)
ConnectionResetError: [Errno 104] Connection reset by peer
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/lib/python3.6/wsgiref/handlers.py", line 141, in run
self.handle_error()
File "/home/lab/.local/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 116, in handle_error
super().handle_error()
File "/usr/lib/python3.6/wsgiref/handlers.py", line 368, in handle_error
self.finish_response()
File "/usr/lib/python3.6/wsgiref/handlers.py", line 180, in finish_response
self.write(data)
File "/usr/lib/python3.6/wsgiref/handlers.py", line 274, in write
self.send_headers()
File "/usr/lib/python3.6/wsgiref/handlers.py", line 331, in send_headers
if not self.origin_server or self.client_is_modern():
File "/usr/lib/python3.6/wsgiref/handlers.py", line 344, in client_is_modern
return self.environ['SERVER_PROTOCOL'].upper() != 'HTTP/0.9'
TypeError: 'NoneType' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/lib/python3.6/socketserver.py", line 654, in process_request_thread
self.finish_request(request, client_address)
File "/usr/lib/python3.6/socketserver.py", line 364, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/lib/python3.6/socketserver.py", line 724, in __init__
self.handle()
File "/home/lab/.local/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 169, in handle
self.handle_one_request()
File "/home/lab/.local/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 194, in handle_one_request
handler.run(self.server.get_app())
File "/usr/lib/python3.6/wsgiref/handlers.py", line 144, in run
self.close()
File "/home/lab/.local/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 111, in close
super().close()
File "/usr/lib/python3.6/wsgiref/simple_server.py", line 35, in close
self.status.split(' ',1)[0], self.bytes_sent
AttributeError: 'NoneType' object has no attribute 'split'
----------------------------------------
[07/Aug/2019 21:40:31] "GET /accounts/login/ HTTP/1.1" 200 10911
Not Found: /apple-touch-icon-precomposed.png
[07/Aug/2019 21:40:31] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 2602
Not Found: /apple-touch-icon.png
[07/Aug/2019 21:40:31] "GET /apple-touch-icon.png HTTP/1.1" 404 2566
[07/Aug/2019 21:40:56] "GET / HTTP/1.1" 200 14980
[07/Aug/2019 21:40:56] "GET /media/images/2019/08/07/test.png HTTP/1.1" 304 0
[07/Aug/2019 21:40:58] "GET /media/images/6B9EF3B7-4108-4F2A-8114-53ED6FE481F8.jpeg HTTP/1.1" 200 1089536
[07/Aug/2019 21:40:58] "GET /accounts/signup/ HTTP/1.1" 200 10817
[07/Aug/2019 21:40:58] "GET /static/css/signup.css HTTP/1.1" 200 2245
[07/Aug/2019 21:40:58] "GET /static/js/signup.js HTTP/1.1" 200 350
[07/Aug/2019 21:41:35] "POST /accounts/signup/ HTTP/1.1" 302 0
[07/Aug/2019 21:41:35] "GET / HTTP/1.1" 200 14948
[07/Aug/2019 21:41:35] "GET /media/images/2019/08/07/test.png HTTP/1.1" 304 0
[07/Aug/2019 21:41:36] "GET /media/images/6B9EF3B7-4108-4F2A-8114-53ED6FE481F8.jpeg HTTP/1.1" 200 2972112
[07/Aug/2019 21:41:37] "GET /index/detail/2/ HTTP/1.1" 200 13863
[07/Aug/2019 21:41:39] "POST /index/test-like HTTP/1.1" 200 47
[07/Aug/2019 21:41:43] "POST /index/test-like HTTP/1.1" 200 50
[07/Aug/2019 21:41:44] "POST /index/test-like HTTP/1.1" 200 47
[07/Aug/2019 21:41:46] "GET /index/detail/2/ HTTP/1.1" 200 14434
[07/Aug/2019 21:41:48] "GET /index/detail/2/ HTTP/1.1" 200 14434
[07/Aug/2019 21:42:08] "GET /index/detail/2/ HTTP/1.1" 200 14434
[07/Aug/2019 21:42:08] "GET /media/images/2019/08/07/test.png HTTP/1.1" 304 0
[07/Aug/2019 21:42:08] "GET /static/img/SYD_fabi.ico HTTP/1.1" 200 108767
[07/Aug/2019 21:42:19] "GET / HTTP/1.1" 200 14950
[07/Aug/2019 21:42:24] "GET /index/detail/1/ HTTP/1.1" 200 13318
[07/Aug/2019 21:42:29] "GET /index/detail/2/ HTTP/1.1" 200 14434
[07/Aug/2019 21:42:56] "GET / HTTP/1.1" 200 14950
[07/Aug/2019 21:42:56] "GET /media/images/2019/08/07/test.png HTTP/1.1" 304 0
[07/Aug/2019 21:43:07] "GET /index/detail/2/ HTTP/1.1" 200 14434
[07/Aug/2019 21:43:14] "GET /index/detail/2/ HTTP/1.1" 200 14434
[07/Aug/2019 21:43:21] "GET /index/detail/2/ HTTP/1.1" 200 14434
----------------------------------------
Exception happened during processing of request from ('220.78.129.111', 62228)
Traceback (most recent call last):
File "/usr/lib/python3.6/socketserver.py", line 654, in process_request_thread
self.finish_request(request, client_address)
File "/usr/lib/python3.6/socketserver.py", line 364, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/lib/python3.6/socketserver.py", line 724, in __init__
self.handle()
File "/home/lab/.local/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 171, in handle
self.handle_one_request()
File "/home/lab/.local/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 179, in handle_one_request
self.raw_requestline = self.rfile.readline(65537)
File "/usr/lib/python3.6/socket.py", line 586, in readinto
return self._sock.recv_into(b)
ConnectionResetError: [Errno 104] Connection reset by peer
----------------------------------------
[07/Aug/2019 21:45:59] "GET / HTTP/1.1" 200 14982
[07/Aug/2019 22:58:29] "GET /index/detail/2/ HTTP/1.1" 200 14434
[07/Aug/2019 22:58:29] "GET /static/img/ShareYourDay_line.png HTTP/1.1" 304 0
[07/Aug/2019 22:58:29] "GET /media/images/2019/08/07/test.png HTTP/1.1" 304 0
[07/Aug/2019 23:04:03] "GET / HTTP/1.1" 200 14950
[07/Aug/2019 23:04:03] "GET /static/img/ShareYourDay_line.png HTTP/1.1" 304 0
[07/Aug/2019 23:04:04] "GET /media/images/2019/08/07/test.png HTTP/1.1" 200 938161
[07/Aug/2019 23:04:04] "GET /media/images/6B9EF3B7-4108-4F2A-8114-53ED6FE481F8.jpeg HTTP/1.1" 200 2972112
[07/Aug/2019 23:04:07] "GET /index/detail/2/ HTTP/1.1" 200 14434
/home/lab/Documents/likelion/Share-Your-Day/web/views.py changed, reloading.
Performing system checks...
System check identified no issues (0 silenced).
August 07, 2019 - 21:33:00
Django version 2.2.4, using settings 'fund.settings'
Starting development server at http://0.0.0.0:8080/
Quit the server with CONTROL-C.
Watching for file changes with StatReloader
Internal Server Error: /
Traceback (most recent call last):
File "/home/lab/.local/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
return self.cursor.execute(sql, params)
File "/home/lab/.local/lib/python3.6/site-packages/django/db/backends/sqlite3/base.py", line 383, in execute
return Database.Cursor.execute(self, query, params)
sqlite3.OperationalError: no such column: web_register.organizer_id
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/lab/.local/lib/python3.6/site-packages/django/core/handlers/exception.py", line 34, in inner
response = get_response(request)
File "/home/lab/.local/lib/python3.6/site-packages/django/core/handlers/base.py", line 115, in _get_response
response = self.process_exception_by_middleware(e, request)
File "/home/lab/.local/lib/python3.6/site-packages/django/core/handlers/base.py", line 113, in _get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "/home/lab/Documents/likelion/Share-Your-Day/web/views.py", line 23, in index
for fund in register_objects:
File "/home/lab/.local/lib/python3.6/site-packages/django/db/models/query.py", line 274, in __iter__
self._fetch_all()
File "/home/lab/.local/lib/python3.6/site-packages/django/db/models/query.py", line 1242, in _fetch_all
self._result_cache = list(self._iterable_class(self))
File "/home/lab/.local/lib/python3.6/site-packages/django/db/models/query.py", line 55, in __iter__
results = compiler.execute_sql(chunked_fetch=self.chunked_fetch, chunk_size=self.chunk_size)
File "/home/lab/.local/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1100, in execute_sql
cursor.execute(sql, params)
File "/home/lab/.local/lib/python3.6/site-packages/django/db/backends/utils.py", line 99, in execute
return super().execute(sql, params)
File "/home/lab/.local/lib/python3.6/site-packages/django/db/backends/utils.py", line 67, in execute
return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
File "/home/lab/.local/lib/python3.6/site-packages/django/db/backends/utils.py", line 76, in _execute_with_wrappers
return executor(sql, params, many, context)
File "/home/lab/.local/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
return self.cursor.execute(sql, params)
File "/home/lab/.local/lib/python3.6/site-packages/django/db/utils.py", line 89, in __exit__
raise dj_exc_value.with_traceback(traceback) from exc_value
File "/home/lab/.local/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
return self.cursor.execute(sql, params)
File "/home/lab/.local/lib/python3.6/site-packages/django/db/backends/sqlite3/base.py", line 383, in execute
return Database.Cursor.execute(self, query, params)
django.db.utils.OperationalError: no such column: web_register.organizer_id
[07/Aug/2019 23:14:57] "GET / HTTP/1.1" 500 130480
Internal Server Error: /
Traceback (most recent call last):
File "/home/lab/.local/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
return self.cursor.execute(sql, params)
File "/home/lab/.local/lib/python3.6/site-packages/django/db/backends/sqlite3/base.py", line 383, in execute
return Database.Cursor.execute(self, query, params)
sqlite3.OperationalError: no such column: web_register.organizer_id
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/lab/.local/lib/python3.6/site-packages/django/core/handlers/exception.py", line 34, in inner
response = get_response(request)
File "/home/lab/.local/lib/python3.6/site-packages/django/core/handlers/base.py", line 115, in _get_response
response = self.process_exception_by_middleware(e, request)
File "/home/lab/.local/lib/python3.6/site-packages/django/core/handlers/base.py", line 113, in _get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "/home/lab/Documents/likelion/Share-Your-Day/web/views.py", line 23, in index
for fund in register_objects:
File "/home/lab/.local/lib/python3.6/site-packages/django/db/models/query.py", line 274, in __iter__
self._fetch_all()
File "/home/lab/.local/lib/python3.6/site-packages/django/db/models/query.py", line 1242, in _fetch_all
self._result_cache = list(self._iterable_class(self))
File "/home/lab/.local/lib/python3.6/site-packages/django/db/models/query.py", line 55, in __iter__
results = compiler.execute_sql(chunked_fetch=self.chunked_fetch, chunk_size=self.chunk_size)
File "/home/lab/.local/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1100, in execute_sql
cursor.execute(sql, params)
File "/home/lab/.local/lib/python3.6/site-packages/django/db/backends/utils.py", line 99, in execute
return super().execute(sql, params)
File "/home/lab/.local/lib/python3.6/site-packages/django/db/backends/utils.py", line 67, in execute
return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
File "/home/lab/.local/lib/python3.6/site-packages/django/db/backends/utils.py", line 76, in _execute_with_wrappers
return executor(sql, params, many, context)
File "/home/lab/.local/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
return self.cursor.execute(sql, params)
File "/home/lab/.local/lib/python3.6/site-packages/django/db/utils.py", line 89, in __exit__
raise dj_exc_value.with_traceback(traceback) from exc_value
File "/home/lab/.local/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
return self.cursor.execute(sql, params)
File "/home/lab/.local/lib/python3.6/site-packages/django/db/backends/sqlite3/base.py", line 383, in execute
return Database.Cursor.execute(self, query, params)
django.db.utils.OperationalError: no such column: web_register.organizer_id
[07/Aug/2019 23:14:58] "GET / HTTP/1.1" 500 130352
[07/Aug/2019 23:15:21] "GET / HTTP/1.1" 200 14982
[07/Aug/2019 23:15:21] "GET /static/img/ShareYourDay_line.png HTTP/1.1" 304 0
[07/Aug/2019 23:15:21] "GET /media/images/2019/08/07/test.png HTTP/1.1" 304 0
[07/Aug/2019 23:15:21] "GET /media/images/6B9EF3B7-4108-4F2A-8114-53ED6FE481F8.jpeg HTTP/1.1" 304 0
[07/Aug/2019 23:15:24] "GET /index/detail/1/ HTTP/1.1" 200 14687
[07/Aug/2019 23:17:55] "GET /index/detail/1/ HTTP/1.1" 200 14689
[07/Aug/2019 23:17:55] "GET /static/img/SYD_fabi.ico HTTP/1.1" 200 108767
[07/Aug/2019 23:17:56] "GET /index/detail/1/ HTTP/1.1" 200 14689
[07/Aug/2019 23:17:56] "GET /static/img/SYD_fabi.ico HTTP/1.1" 200 108767
[07/Aug/2019 23:17:58] "GET /media/images/6B9EF3B7-4108-4F2A-8114-53ED6FE481F8.jpeg HTTP/1.1" 200 2972112
[07/Aug/2019 23:17:58] "GET /media/images/6B9EF3B7-4108-4F2A-8114-53ED6FE481F8.jpeg HTTP/1.1" 200 2972112
[07/Aug/2019 23:18:16] "GET / HTTP/1.1" 200 14982
[07/Aug/2019 23:18:17] "GET / HTTP/1.1" 200 14982
[07/Aug/2019 23:19:33] "GET / HTTP/1.1" 200 14982
[07/Aug/2019 23:19:33] "GET /static/img/ShareYourDay_line.png HTTP/1.1" 200 14702
[07/Aug/2019 23:19:33] "GET /media/images/2019/08/07/test.png HTTP/1.1" 200 938161
[07/Aug/2019 23:19:33] "GET /media/images/6B9EF3B7-4108-4F2A-8114-53ED6FE481F8.jpeg HTTP/1.1" 200 2972112
[07/Aug/2019 23:19:35] "GET /static/img/SYD_fabi.ico HTTP/1.1" 200 108767
[07/Aug/2019 23:19:35] "GET / HTTP/1.1" 200 14982
[07/Aug/2019 23:19:35] "GET /static/img/ShareYourDay_line.png HTTP/1.1" 200 14702
[07/Aug/2019 23:19:35] "GET /media/images/2019/08/07/test.png HTTP/1.1" 200 938161
[07/Aug/2019 23:19:36] "GET /media/images/6B9EF3B7-4108-4F2A-8114-53ED6FE481F8.jpeg HTTP/1.1" 200 2972112
[07/Aug/2019 23:19:38] "GET / HTTP/1.1" 200 14950
[07/Aug/2019 23:19:39] "GET /media/images/2019/08/07/test.png HTTP/1.1" 304 0
[07/Aug/2019 23:19:41] "GET /index/detail/2/ HTTP/1.1" 200 15687
[07/Aug/2019 23:19:42] "GET /index/detail/2/ HTTP/1.1" 200 15687
[07/Aug/2019 23:19:42] "GET /static/img/SYD_fabi.ico HTTP/1.1" 200 108767
[07/Aug/2019 23:19:43] "GET / HTTP/1.1" 200 14982
[07/Aug/2019 23:19:44] "GET / HTTP/1.1" 200 14950
[07/Aug/2019 23:19:44] "GET /static/img/ShareYourDay_line.png HTTP/1.1" 304 0
[07/Aug/2019 23:19:44] "GET /media/images/2019/08/07/test.png HTTP/1.1" 304 0
[07/Aug/2019 23:19:44] "GET /media/images/6B9EF3B7-4108-4F2A-8114-53ED6FE481F8.jpeg HTTP/1.1" 304 0
[07/Aug/2019 23:19:45] "GET /media/images/2019/08/07/test.png HTTP/1.1" 200 938161
[07/Aug/2019 23:19:47] "GET /index/detail/2/ HTTP/1.1" 200 15655
[07/Aug/2019 23:19:50] "GET /index/detail/2/ HTTP/1.1" 200 15687
[07/Aug/2019 23:19:54] "POST /index/test-like HTTP/1.1" 302 0
[07/Aug/2019 23:19:54] "GET /accounts/login/?next=/index/test-like HTTP/1.1" 200 10937
[07/Aug/2019 23:19:55] "POST /index/test-like HTTP/1.1" 302 0
[07/Aug/2019 23:19:55] "GET /accounts/login/?next=/index/test-like HTTP/1.1" 200 10937
[07/Aug/2019 23:19:56] "POST /index/test-like HTTP/1.1" 302 0
[07/Aug/2019 23:19:56] "GET /accounts/login/?next=/index/test-like HTTP/1.1" 200 10937
[07/Aug/2019 23:20:03] "GET /index/detail/2/ HTTP/1.1" 200 15655
----------------------------------------
Exception happened during processing of request from ('220.78.129.111', 62370)
----------------------------------------
Exception happened during processing of request from ('220.78.129.111', 62373)
----------------------------------------
Exception happened during processing of request from ('220.78.129.111', 62372)
Traceback (most recent call last):
File "/usr/lib/python3.6/socketserver.py", line 654, in process_request_thread
self.finish_request(request, client_address)
File "/usr/lib/python3.6/socketserver.py", line 364, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/lib/python3.6/socketserver.py", line 724, in __init__
self.handle()
File "/home/lab/.local/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 171, in handle
self.handle_one_request()
File "/home/lab/.local/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 179, in handle_one_request
self.raw_requestline = self.rfile.readline(65537)
File "/usr/lib/python3.6/socket.py", line 586, in readinto
return self._sock.recv_into(b)
ConnectionResetError: [Errno 104] Connection reset by peer
----------------------------------------
Traceback (most recent call last):
File "/usr/lib/python3.6/socketserver.py", line 654, in process_request_thread
self.finish_request(request, client_address)
File "/usr/lib/python3.6/socketserver.py", line 364, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/lib/python3.6/socketserver.py", line 724, in __init__
self.handle()
File "/home/lab/.local/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 171, in handle
self.handle_one_request()
File "/home/lab/.local/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 179, in handle_one_request
self.raw_requestline = self.rfile.readline(65537)
File "/usr/lib/python3.6/socket.py", line 586, in readinto
return self._sock.recv_into(b)
ConnectionResetError: [Errno 104] Connection reset by peer
----------------------------------------
Traceback (most recent call last):
File "/usr/lib/python3.6/socketserver.py", line 654, in process_request_thread
self.finish_request(request, client_address)
File "/usr/lib/python3.6/socketserver.py", line 364, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/lib/python3.6/socketserver.py", line 724, in __init__
self.handle()
File "/home/lab/.local/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 171, in handle
self.handle_one_request()
File "/home/lab/.local/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 179, in handle_one_request
self.raw_requestline = self.rfile.readline(65537)
File "/usr/lib/python3.6/socket.py", line 586, in readinto
return self._sock.recv_into(b)
ConnectionResetError: [Errno 104] Connection reset by peer
----------------------------------------
[07/Aug/2019 23:20:20] "GET /index/detail/2/ HTTP/1.1" 200 15687
[07/Aug/2019 23:20:20] "GET /static/img/ShareYourDay_line.png HTTP/1.1" 200 14702
[07/Aug/2019 23:20:20] "GET /media/images/2019/08/07/test.png HTTP/1.1" 200 938161
----------------------------------------
Exception happened during processing of request from ('220.78.129.111', 62388)
----------------------------------------
Exception happened during processing of request from ('220.78.129.111', 62387)
Traceback (most recent call last):
File "/usr/lib/python3.6/socketserver.py", line 654, in process_request_thread
self.finish_request(request, client_address)
File "/usr/lib/python3.6/socketserver.py", line 364, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/lib/python3.6/socketserver.py", line 724, in __init__
self.handle()
File "/home/lab/.local/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 171, in handle
self.handle_one_request()
File "/home/lab/.local/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 179, in handle_one_request
self.raw_requestline = self.rfile.readline(65537)
File "/usr/lib/python3.6/socket.py", line 586, in readinto
return self._sock.recv_into(b)
ConnectionResetError: [Errno 104] Connection reset by peer
----------------------------------------
Traceback (most recent call last):
File "/usr/lib/python3.6/socketserver.py", line 654, in process_request_thread
self.finish_request(request, client_address)
File "/usr/lib/python3.6/socketserver.py", line 364, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/lib/python3.6/socketserver.py", line 724, in __init__
self.handle()
File "/home/lab/.local/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 171, in handle
self.handle_one_request()
File "/home/lab/.local/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 179, in handle_one_request
self.raw_requestline = self.rfile.readline(65537)
File "/usr/lib/python3.6/socket.py", line 586, in readinto
return self._sock.recv_into(b)
ConnectionResetError: [Errno 104] Connection reset by peer
----------------------------------------
[07/Aug/2019 23:20:32] "GET /index/detail/2/ HTTP/1.1" 200 15687
[07/Aug/2019 23:20:34] "GET / HTTP/1.1" 200 14982
[07/Aug/2019 23:20:36] "GET /index/about/ HTTP/1.1" 200 15702
[07/Aug/2019 23:20:36] "GET /static/css/about.css HTTP/1.1" 200 351
[07/Aug/2019 23:20:36] "GET /static/img/flowchart.jpg HTTP/1.1" 200 112567
[07/Aug/2019 23:20:36] "GET /static/img/hankyul1.jpg HTTP/1.1" 200 46679
[07/Aug/2019 23:20:36] "GET /static/img/benghak.jpg HTTP/1.1" 200 88095
[07/Aug/2019 23:20:36] "GET /static/img/jason.jpg HTTP/1.1" 200 170204
[07/Aug/2019 23:20:36] "GET /static/img/jihyun.jpg HTTP/1.1" 200 655815
[07/Aug/2019 23:20:36] "POST /index/test-like HTTP/1.1" 302 0
[07/Aug/2019 23:20:37] "GET /accounts/login/?next=/index/test-like HTTP/1.1" 200 10937
[07/Aug/2019 23:20:37] "POST /index/test-like HTTP/1.1" 302 0
[07/Aug/2019 23:20:37] "GET /accounts/login/?next=/index/test-like HTTP/1.1" 200 10937
[07/Aug/2019 23:20:38] "POST /index/test-like HTTP/1.1" 302 0
[07/Aug/2019 23:20:38] "GET /accounts/login/?next=/index/test-like HTTP/1.1" 200 10937
[07/Aug/2019 23:20:39] "POST /index/test-like HTTP/1.1" 302 0
[07/Aug/2019 23:20:39] "GET /accounts/login/?next=/index/test-like HTTP/1.1" 200 10937
[07/Aug/2019 23:20:40] "POST /index/test-like HTTP/1.1" 302 0
[07/Aug/2019 23:20:40] "GET /accounts/login/?next=/index/test-like HTTP/1.1" 200 10937
[07/Aug/2019 23:20:42] "POST /index/test-like HTTP/1.1" 302 0
[07/Aug/2019 23:20:42] "GET /accounts/login/?next=/index/test-like HTTP/1.1" 200 10937
[07/Aug/2019 23:20:43] "GET / HTTP/1.1" 200 14982
[07/Aug/2019 23:20:44] "GET /index/detail/2/ HTTP/1.1" 200 15687
[07/Aug/2019 23:20:44] "POST /index/test-like HTTP/1.1" 302 0
[07/Aug/2019 23:20:44] "GET /accounts/login/?next=/index/test-like HTTP/1.1" 200 10937
[07/Aug/2019 23:20:45] "POST /index/test-like HTTP/1.1" 302 0
[07/Aug/2019 23:20:45] "GET /accounts/login/?next=/index/test-like HTTP/1.1" 200 10937
[07/Aug/2019 23:20:45] "POST /index/test-like HTTP/1.1" 302 0
[07/Aug/2019 23:20:45] "GET /accounts/login/?next=/index/test-like HTTP/1.1" 200 10937
[07/Aug/2019 23:20:47] "POST /index/test-like HTTP/1.1" 302 0
[07/Aug/2019 23:20:47] "GET /accounts/login/?next=/index/test-like HTTP/1.1" 200 10937
[07/Aug/2019 23:20:47] "GET /accounts/logout/ HTTP/1.1" 302 0
[07/Aug/2019 23:20:47] "GET / HTTP/1.1" 200 14982
[07/Aug/2019 23:20:47] "GET / HTTP/1.1" 200 14982
----------------------------------------
Exception happened during processing of request from ('220.78.129.111', 62398)
Traceback (most recent call last):
File "/usr/lib/python3.6/socketserver.py", line 654, in process_request_thread
self.finish_request(request, client_address)
File "/usr/lib/python3.6/socketserver.py", line 364, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/lib/python3.6/socketserver.py", line 724, in __init__
self.handle()
File "/home/lab/.local/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 171, in handle
self.handle_one_request()
File "/home/lab/.local/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 179, in handle_one_request
self.raw_requestline = self.rfile.readline(65537)
File "/usr/lib/python3.6/socket.py", line 586, in readinto
return self._sock.recv_into(b)
ConnectionResetError: [Errno 104] Connection reset by peer
----------------------------------------
[07/Aug/2019 23:20:48] "GET /index/FAQ/ HTTP/1.1" 200 12586
[07/Aug/2019 23:20:48] "GET /static/css/faq.css HTTP/1.1" 200 273
[07/Aug/2019 23:20:49] "GET /index/detail/2/ HTTP/1.1" 200 15687
[07/Aug/2019 23:20:50] "POST /index/test-like HTTP/1.1" 302 0
[07/Aug/2019 23:20:50] "GET /accounts/login/?next=/index/test-like HTTP/1.1" 200 10937
[07/Aug/2019 23:20:51] "GET / HTTP/1.1" 200 14982
[07/Aug/2019 23:20:52] "POST /index/test-like HTTP/1.1" 302 0
[07/Aug/2019 23:20:52] "GET /accounts/login/?next=/index/test-like HTTP/1.1" 200 10937
[07/Aug/2019 23:20:52] "POST /index/test-like HTTP/1.1" 302 0
[07/Aug/2019 23:20:52] "GET /accounts/login/?next=/index/test-like HTTP/1.1" 200 10937
[07/Aug/2019 23:20:52] "POST /index/test-like HTTP/1.1" 302 0
[07/Aug/2019 23:20:52] "GET /accounts/login/?next=/index/test-like HTTP/1.1" 200 10937
[07/Aug/2019 23:20:52] "GET /index/detail/1/ HTTP/1.1" 200 14689
[07/Aug/2019 23:20:52] "POST /index/test-like HTTP/1.1" 302 0
[07/Aug/2019 23:20:52] "GET /accounts/login/?next=/index/test-like HTTP/1.1" 200 10937
[07/Aug/2019 23:20:53] "GET / HTTP/1.1" 200 14982
[07/Aug/2019 23:20:54] "POST /index/test-like HTTP/1.1" 302 0
[07/Aug/2019 23:20:54] "GET /accounts/login/?next=/index/test-like HTTP/1.1" 200 10937
[07/Aug/2019 23:20:54] "POST /index/test-like HTTP/1.1" 302 0
[07/Aug/2019 23:20:54] "GET /accounts/login/?next=/index/test-like HTTP/1.1" 200 10937
[07/Aug/2019 23:20:54] "POST /index/test-like HTTP/1.1" 302 0
[07/Aug/2019 23:20:54] "GET /accounts/login/?next=/index/test-like HTTP/1.1" 200 10937
[07/Aug/2019 23:20:54] "POST /index/test-like HTTP/1.1" 302 0
[07/Aug/2019 23:20:54] "GET /accounts/login/?next=/index/test-like HTTP/1.1" 200 10937
[07/Aug/2019 23:20:54] "POST /index/test-like HTTP/1.1" 302 0
[07/Aug/2019 23:20:54] "GET /accounts/login/?next=/index/test-like HTTP/1.1" 200 10937
[07/Aug/2019 23:20:55] "POST /index/test-like HTTP/1.1" 302 0
[07/Aug/2019 23:20:55] "GET /accounts/login/?next=/index/test-like HTTP/1.1" 200 10937
[07/Aug/2019 23:20:55] "GET / HTTP/1.1" 200 14982
[07/Aug/2019 23:20:56] "GET / HTTP/1.1" 200 14982
[07/Aug/2019 23:20:58] "GET /index/detail/2/ HTTP/1.1" 200 15687
[07/Aug/2019 23:21:00] "GET / HTTP/1.1" 200 14982
[07/Aug/2019 23:21:07] "GET /index/FAQ/ HTTP/1.1" 200 12586
[07/Aug/2019 23:21:09] "GET /index/FAQ/ HTTP/1.1" 200 12586
[07/Aug/2019 23:21:10] "GET /static/css/faq.css HTTP/1.1" 200 273
[07/Aug/2019 23:21:13] "GET /accounts/login/ HTTP/1.1" 200 10911
[07/Aug/2019 23:21:15] "GET /index/FAQ/ HTTP/1.1" 200 12586
[07/Aug/2019 23:21:15] "GET /static/css/faq.css HTTP/1.1" 200 273
[07/Aug/2019 23:21:18] "GET /accounts/login/ HTTP/1.1" 200 10911
Not Found: /accounts/login/
[07/Aug/2019 23:21:23] "POST /accounts/login/ HTTP/1.1" 404 1747
Not Found: /favicon.ico
[07/Aug/2019 23:21:23] "GET /favicon.ico HTTP/1.1" 404 2539
Not Found: /accounts/login/
[07/Aug/2019 23:21:28] "POST /accounts/login/ HTTP/1.1" 404 1747
[07/Aug/2019 23:24:10] "GET / HTTP/1.1" 200 14982
[07/Aug/2019 23:24:21] "GET / HTTP/1.1" 200 14950
[07/Aug/2019 23:24:22] "GET / HTTP/1.1" 200 14982
[07/Aug/2019 23:24:28] "GET / HTTP/1.1" 200 14982
----------------------------------------
Exception happened during processing of request from ('220.78.129.111', 62418)
Traceback (most recent call last):
File "/usr/lib/python3.6/socketserver.py", line 654, in process_request_thread
self.finish_request(request, client_address)
File "/usr/lib/python3.6/socketserver.py", line 364, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/lib/python3.6/socketserver.py", line 724, in __init__
self.handle()
File "/home/lab/.local/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 171, in handle
self.handle_one_request()
File "/home/lab/.local/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 179, in handle_one_request
self.raw_requestline = self.rfile.readline(65537)
File "/usr/lib/python3.6/socket.py", line 586, in readinto
return self._sock.recv_into(b)
ConnectionResetError: [Errno 104] Connection reset by peer
----------------------------------------
[07/Aug/2019 23:25:48] "GET /index/register/ HTTP/1.1" 200 10256
[07/Aug/2019 23:25:48] "GET /static/css/register.css HTTP/1.1" 304 0
[07/Aug/2019 23:25:51] "GET /index/register/ HTTP/1.1" 200 10911
[07/Aug/2019 23:25:51] "GET /static/css/login.css HTTP/1.1" 200 2330
[07/Aug/2019 23:25:54] "GET / HTTP/1.1" 200 14982
[07/Aug/2019 23:25:55] "GET / HTTP/1.1" 200 14950
[07/Aug/2019 23:26:01] "GET / HTTP/1.1" 200 14982
----------------------------------------
Exception happened during processing of request from ('220.78.129.111', 62424)
Traceback (most recent call last):
File "/usr/lib/python3.6/socketserver.py", line 654, in process_request_thread
self.finish_request(request, client_address)
File "/usr/lib/python3.6/socketserver.py", line 364, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/lib/python3.6/socketserver.py", line 724, in __init__
self.handle()
File "/home/lab/.local/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 171, in handle
self.handle_one_request()
File "/home/lab/.local/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 179, in handle_one_request
self.raw_requestline = self.rfile.readline(65537)
File "/usr/lib/python3.6/socket.py", line 586, in readinto
return self._sock.recv_into(b)
ConnectionResetError: [Errno 104] Connection reset by peer
----------------------------------------
[07/Aug/2019 23:26:28] "GET / HTTP/1.1" 200 14982
[07/Aug/2019 23:26:29] "GET / HTTP/1.1" 200 14982
[07/Aug/2019 23:26:29] "GET / HTTP/1.1" 200 14982
[07/Aug/2019 23:26:30] "GET / HTTP/1.1" 200 14982
[07/Aug/2019 23:27:17] "GET /index/detail/1/ HTTP/1.1" 200 14657
[07/Aug/2019 23:27:22] "POST /index/test-like HTTP/1.1" 200 50
[07/Aug/2019 23:27:23] "POST /index/test-like HTTP/1.1" 200 47
[07/Aug/2019 23:40:34] "GET / HTTP/1.1" 200 14982
[07/Aug/2019 23:46:33] "GET / HTTP/1.1" 200 14982
[07/Aug/2019 23:46:33] "GET /media/images/2019/08/07/test.png HTTP/1.1" 304 0
[07/Aug/2019 23:46:35] "GET /static/img/SYD_fabi.ico HTTP/1.1" 200 108767
[07/Aug/2019 23:46:37] "GET / HTTP/1.1" 200 14982
[07/Aug/2019 23:46:55] "GET / HTTP/1.1" 200 14982
[07/Aug/2019 23:53:50] "GET / HTTP/1.1" 200 15322
[07/Aug/2019 23:53:51] "GET /static/img/ShareYourDay_line.png HTTP/1.1" 404 1703
[07/Aug/2019 23:53:51] "GET /media/images/2019/08/07/test.png HTTP/1.1" 200 938161
[07/Aug/2019 23:53:51] "GET /media/images/6B9EF3B7-4108-4F2A-8114-53ED6FE481F8.jpeg HTTP/1.1" 200 2972112
[07/Aug/2019 23:53:55] "GET / HTTP/1.1" 200 15322
[07/Aug/2019 23:53:55] "GET /static/img/ShareYourDay_line.png HTTP/1.1" 404 1703
[07/Aug/2019 23:53:56] "GET /static/img/SYD_fabi.ico HTTP/1.1" 404 1676
[07/Aug/2019 23:53:59] "GET / HTTP/1.1" 200 15322
[07/Aug/2019 23:53:59] "GET /static/img/ShareYourDay_line.png HTTP/1.1" 404 1703
[07/Aug/2019 23:53:59] "GET /media/images/2019/08/07/test.png HTTP/1.1" 304 0
[07/Aug/2019 23:53:59] "GET /media/images/6B9EF3B7-4108-4F2A-8114-53ED6FE481F8.jpeg HTTP/1.1" 304 0
[07/Aug/2019 23:53:59] "GET /static/img/SYD_fabi.ico HTTP/1.1" 404 1676
[07/Aug/2019 23:54:01] "GET / HTTP/1.1" 200 15322
[07/Aug/2019 23:54:01] "GET /static/img/ShareYourDay_line.png HTTP/1.1" 404 1703
[07/Aug/2019 23:54:02] "GET / HTTP/1.1" 200 15322
[07/Aug/2019 23:54:02] "GET /static/img/ShareYourDay_line.png HTTP/1.1" 404 1703
[07/Aug/2019 23:54:04] "GET / HTTP/1.1" 200 15322
[07/Aug/2019 23:54:04] "GET /static/img/ShareYourDay_line.png HTTP/1.1" 404 1703
[07/Aug/2019 23:54:04] "GET / HTTP/1.1" 200 15322
[07/Aug/2019 23:54:05] "GET /static/img/ShareYourDay_line.png HTTP/1.1" 404 1703
[07/Aug/2019 23:54:05] "GET / HTTP/1.1" 200 15322
[07/Aug/2019 23:54:05] "GET /static/img/ShareYourDay_line.png HTTP/1.1" 404 1703
[07/Aug/2019 23:54:06] "GET / HTTP/1.1" 200 15322
[07/Aug/2019 23:54:06] "GET /static/img/ShareYourDay_line.png HTTP/1.1" 404 1703
[07/Aug/2019 23:54:08] "GET / HTTP/1.1" 200 15322
[07/Aug/2019 23:54:09] "GET /static/img/ShareYourDay_line.png HTTP/1.1" 404 1703
[07/Aug/2019 23:54:12] "GET / HTTP/1.1" 200 15322
[07/Aug/2019 23:54:12] "GET /static/img/ShareYourDay_line.png HTTP/1.1" 404 1703
[07/Aug/2019 23:54:13] "GET / HTTP/1.1" 200 15322
[07/Aug/2019 23:54:13] "GET /static/img/ShareYourDay_line.png HTTP/1.1" 404 1703
[07/Aug/2019 23:54:26] "GET /index/detail/1/ HTTP/1.1" 200 15110
[07/Aug/2019 23:54:26] "GET /static/img/ShareYourDay_line.png HTTP/1.1" 404 1703
[07/Aug/2019 23:54:31] "GET /index/detail/2/ HTTP/1.1" 200 16108
[07/Aug/2019 23:54:31] "GET /static/img/ShareYourDay_line.png HTTP/1.1" 404 1703
[07/Aug/2019 23:54:34] "POST /index/test-like HTTP/1.1" 302 0
[07/Aug/2019 23:54:34] "GET /accounts/login/?next=/index/test-like HTTP/1.1" 200 11033
[07/Aug/2019 23:54:35] "POST /index/test-like HTTP/1.1" 302 0
[07/Aug/2019 23:54:35] "GET /accounts/login/?next=/index/test-like HTTP/1.1" 200 11033
[07/Aug/2019 23:54:42] "GET / HTTP/1.1" 200 15322
[07/Aug/2019 23:54:43] "GET /static/img/ShareYourDay_line.png HTTP/1.1" 404 1703
[07/Aug/2019 23:54:45] "GET /index/detail/1/ HTTP/1.1" 200 15078
[07/Aug/2019 23:54:45] "GET /media/images/6B9EF3B7-4108-4F2A-8114-53ED6FE481F8.jpeg HTTP/1.1" 304 0
[07/Aug/2019 23:54:45] "GET /admin HTTP/1.1" 301 0
[07/Aug/2019 23:54:45] "GET /admin/ HTTP/1.1" 302 0
[07/Aug/2019 23:54:45] "GET /admin/login/?next=/admin/ HTTP/1.1" 200 1839
[07/Aug/2019 23:54:46] "GET /static/admin/css/base.css HTTP/1.1" 200 16378
[07/Aug/2019 23:54:46] "GET /static/admin/css/login.css HTTP/1.1" 200 1233
[07/Aug/2019 23:54:46] "GET /static/admin/css/responsive.css HTTP/1.1" 200 17944
[07/Aug/2019 23:54:46] "GET /static/admin/css/fonts.css HTTP/1.1" 200 423
[07/Aug/2019 23:54:46] "GET /static/admin/fonts/Roboto-Regular-webfont.woff HTTP/1.1" 200 85876
[07/Aug/2019 23:54:46] "GET /static/admin/fonts/Roboto-Light-webfont.woff HTTP/1.1" 200 85692
[07/Aug/2019 23:54:48] "GET /index/detail/1/ HTTP/1.1" 200 15078
[07/Aug/2019 23:54:48] "GET / HTTP/1.1" 200 15290
[07/Aug/2019 23:54:48] "GET /media/images/2019/08/07/test.png HTTP/1.1" 304 0
[07/Aug/2019 23:54:50] "GET / HTTP/1.1" 200 15290
[07/Aug/2019 23:54:52] "GET /index/detail/2/ HTTP/1.1" 200 16076
[07/Aug/2019 23:54:54] "GET /index/detail/1/ HTTP/1.1" 200 15110
[07/Aug/2019 23:54:54] "GET /static/img/ShareYourDay_line.png HTTP/1.1" 404 1703
[07/Aug/2019 23:54:55] "GET / HTTP/1.1" 200 15322
[07/Aug/2019 23:54:55] "GET /static/img/ShareYourDay_line.png HTTP/1.1" 404 1703
[07/Aug/2019 23:54:56] "GET /index/detail/1/ HTTP/1.1" 200 15110
[07/Aug/2019 23:54:56] "GET /static/img/ShareYourDay_line.png HTTP/1.1" 404 1703
[07/Aug/2019 23:55:01] "GET / HTTP/1.1" 200 15322
[07/Aug/2019 23:55:01] "GET /static/img/ShareYourDay_line.png HTTP/1.1" 404 1703
[07/Aug/2019 23:55:06] "GET / HTTP/1.1" 200 15290
[07/Aug/2019 23:55:12] "GET /index/detail/1/ HTTP/1.1" 200 15110
[07/Aug/2019 23:55:12] "GET /static/img/ShareYourDay_line.png HTTP/1.1" 404 1703
[07/Aug/2019 23:55:13] "GET /index/detail/1/ HTTP/1.1" 200 15110
[07/Aug/2019 23:55:13] "GET /static/img/ShareYourDay_line.png HTTP/1.1" 404 1703
[07/Aug/2019 23:55:18] "GET /index/detail/1/ HTTP/1.1" 200 15078
[07/Aug/2019 23:55:18] "GET /static/img/ShareYourDay_line.png HTTP/1.1" 404 1703
[07/Aug/2019 23:55:18] "GET /media/images/6B9EF3B7-4108-4F2A-8114-53ED6FE481F8.jpeg HTTP/1.1" 304 0
[07/Aug/2019 23:55:18] "GET /static/img/ShareYourDay_line.png HTTP/1.1" 404 1703
[07/Aug/2019 23:55:20] "GET /media/images/2019/08/07/test.png HTTP/1.1" 304 0
[07/Aug/2019 23:55:20] "GET / HTTP/1.1" 200 15290
[07/Aug/2019 23:55:20] "GET /static/img/ShareYourDay_line.png HTTP/1.1" 404 1703
[07/Aug/2019 23:55:21] "GET /static/img/ShareYourDay_line.png HTTP/1.1" 404 1703
[07/Aug/2019 23:55:21] "GET / HTTP/1.1" 200 15290
[07/Aug/2019 23:55:23] "GET /index/detail/1/ HTTP/1.1" 200 15078
[07/Aug/2019 23:55:23] "GET /static/img/ShareYourDay_line.png HTTP/1.1" 404 1703
[07/Aug/2019 23:55:24] "GET / HTTP/1.1" 200 15290
[07/Aug/2019 23:55:24] "GET /static/img/ShareYourDay_line.png HTTP/1.1" 404 1703
[07/Aug/2019 23:55:26] "GET / HTTP/1.1" 200 15290
[07/Aug/2019 23:55:26] "GET /static/img/ShareYourDay_line.png HTTP/1.1" 404 1703
[07/Aug/2019 23:55:32] "GET /index/detail/2/ HTTP/1.1" 200 16108
[07/Aug/2019 23:55:32] "GET /static/img/ShareYourDay_line.png HTTP/1.1" 404 1703
[07/Aug/2019 23:55:33] "GET /index/detail/1/ HTTP/1.1" 200 15110
[07/Aug/2019 23:55:33] "GET /static/img/ShareYourDay_line.png HTTP/1.1" 404 1703
[07/Aug/2019 23:55:33] "GET /media/images/2019/08/07/test.png HTTP/1.1" 200 938161
[07/Aug/2019 23:55:33] "GET /static/img/ShareYourDay_line.png HTTP/1.1" 404 1703