-
Notifications
You must be signed in to change notification settings - Fork 19
/
WebGrab++.log.txt
4514 lines (4514 loc) · 226 KB
/
WebGrab++.log.txt
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
[ ]
[ ] WebGrab+Plus/w MDB & REX Postprocess -- version V1.56.23
[ ]
[ ] Jan van Straaten
[ ] Francis De Paemeleere
[ ]
[ ] thanks to Paul Weterings and all the contributing users
[ ] --------------------------------------------------------------------------------
[ ]
[ ] Job started at 13/05/2016 09:08:17
[ Debug ]
[ Debug ] Running on: Unix 4.1.7.7
[ Debug ] Environment: 4.0.30319.17020
[ Debug ] Mono version: 3.2.8 (Debian 3.2.8+dfsg-10)
[ Debug ]
[ Debug ] Loading timezone data
[ Debug ] Embedded timezones source: WGconsole.WG.Common.timezonesdata.txt
[ Debug ] Reading config file: /var/www/epg/WebGrab++.config.xml
[ Info ] found: /var/www/epg/tvguide.co.uk.ini -- Revision 14
[ Debug ] xmltv input file - /var/www/epg/guide.xml - found
[ Debug ] 15775 superfluous shows removed
[Error ] Could find existing channel (xmltv_id=&TV) in the config file
[Error ] Could find existing channel (xmltv_id=?TV) in the config file
[Error ] Could find existing channel (xmltv_id=3e) in the config file
[Error ] Could find existing channel (xmltv_id=4Music) in the config file
[Error ] Could find existing channel (xmltv_id=4seven) in the config file
[Error ] Could find existing channel (xmltv_id=4seven HD) in the config file
[Error ] Could find existing channel (xmltv_id=5* (Freeview)) in the config file
[Error ] Could find existing channel (xmltv_id=5* +1) in the config file
[Error ] Could find existing channel (xmltv_id=5STAR) in the config file
[Error ] Could find existing channel (xmltv_id=5USA) in the config file
[Error ] Could find existing channel (xmltv_id=5USA +1) in the config file
[Error ] Could find existing channel (xmltv_id=ABN TV) in the config file
[Error ] Could find existing channel (xmltv_id=AIT International) in the config file
[Error ] Could find existing channel (xmltv_id=Al Jazeera English) in the config file
[Error ] Could find existing channel (xmltv_id=Al Jazeera English HD) in the config file
[Error ] Could find existing channel (xmltv_id=Alibi) in the config file
[Error ] Could find existing channel (xmltv_id=Alibi HD) in the config file
[Error ] Could find existing channel (xmltv_id=Alibi+1) in the config file
[Error ] Could find existing channel (xmltv_id=AMC) in the config file
[Error ] Could find existing channel (xmltv_id=Animal Planet) in the config file
[Error ] Could find existing channel (xmltv_id=Animal Planet +1) in the config file
[Error ] Could find existing channel (xmltv_id=Animal Planet HD) in the config file
[Error ] Could find existing channel (xmltv_id=ARY News) in the config file
[Error ] Could find existing channel (xmltv_id=at the races) in the config file
[Error ] Could find existing channel (xmltv_id=B4U Movies) in the config file
[Error ] Could find existing channel (xmltv_id=Baby TV) in the config file
[Error ] Could find existing channel (xmltv_id=BBC 1 HD Wales) in the config file
[Error ] Could find existing channel (xmltv_id=BBC Alba) in the config file
[Error ] Could find existing channel (xmltv_id=BBC Entertainment) in the config file
[Error ] Could find existing channel (xmltv_id=BBC News) in the config file
[Error ] Could find existing channel (xmltv_id=BBC News HD) in the config file
[Error ] Could find existing channel (xmltv_id=BBC Oxford DAB) in the config file
[Error ] Could find existing channel (xmltv_id=BBC Parliament) in the config file
[Error ] Could find existing channel (xmltv_id=BBC Red Button 1) in the config file
[Error ] Could find existing channel (xmltv_id=BBC Red Button 2) in the config file
[Error ] Could find existing channel (xmltv_id=BBC Red Button 3) in the config file
[Error ] Could find existing channel (xmltv_id=BBC Red Button 4) in the config file
[Error ] Could find existing channel (xmltv_id=BBC Red Button 5) in the config file
[Error ] Could find existing channel (xmltv_id=BBC Red Button HD) in the config file
[Error ] Could find existing channel (xmltv_id=BBC Sport Interactive BBC1) in the config file
[Error ] Could find existing channel (xmltv_id=BBC Sport Interactive BBC2) in the config file
[Error ] Could find existing channel (xmltv_id=BBC Sport Interactive BBC3) in the config file
[Error ] Could find existing channel (xmltv_id=BBC World News) in the config file
[Error ] Could find existing channel (xmltv_id=BBC1) in the config file
[Error ] Could find existing channel (xmltv_id=BBC1 Cambridgeshire) in the config file
[Error ] Could find existing channel (xmltv_id=BBC1 Channel Islands) in the config file
[Error ] Could find existing channel (xmltv_id=BBC1 Digital) in the config file
[Error ] Could find existing channel (xmltv_id=BBC1 East) in the config file
[Error ] Could find existing channel (xmltv_id=BBC1 East Midlands) in the config file
[Error ] Could find existing channel (xmltv_id=BBC1 HD) in the config file
[Error ] Could find existing channel (xmltv_id=BBC1 HD N Ireland) in the config file
[Error ] Could find existing channel (xmltv_id=BBC1 HD Scotland) in the config file
[Error ] Could find existing channel (xmltv_id=BBC1 London) in the config file
[Error ] Could find existing channel (xmltv_id=BBC1 Midlands) in the config file
[Error ] Could find existing channel (xmltv_id=BBC1 N East) in the config file
[Error ] Could find existing channel (xmltv_id=BBC1 N Ireland) in the config file
[Error ] Could find existing channel (xmltv_id=BBC1 N West) in the config file
[Error ] Could find existing channel (xmltv_id=BBC1 North) in the config file
[Error ] Could find existing channel (xmltv_id=BBC1 Oxfordshire) in the config file
[Error ] Could find existing channel (xmltv_id=BBC1 S East) in the config file
[Error ] Could find existing channel (xmltv_id=BBC1 S West) in the config file
[Error ] Could find existing channel (xmltv_id=BBC1 Scotland) in the config file
[Error ] Could find existing channel (xmltv_id=BBC1 Scotland Digital) in the config file
[Error ] Could find existing channel (xmltv_id=BBC1 South) in the config file
[Error ] Could find existing channel (xmltv_id=BBC1 Wales) in the config file
[Error ] Could find existing channel (xmltv_id=BBC1 Wales Digital) in the config file
[Error ] Could find existing channel (xmltv_id=BBC1 West) in the config file
[Error ] Could find existing channel (xmltv_id=BBC1 Yorkshire and Lincolnshire) in the config file
[Error ] Could find existing channel (xmltv_id=BBC2) in the config file
[Error ] Could find existing channel (xmltv_id=BBC2 East) in the config file
[Error ] Could find existing channel (xmltv_id=BBC2 East Midlands) in the config file
[Error ] Could find existing channel (xmltv_id=BBC2 HD) in the config file
[Error ] Could find existing channel (xmltv_id=BBC2 London) in the config file
[Error ] Could find existing channel (xmltv_id=BBC2 Midlands) in the config file
[Error ] Could find existing channel (xmltv_id=BBC2 N East) in the config file
[Error ] Could find existing channel (xmltv_id=BBC2 N Ireland) in the config file
[Error ] Could find existing channel (xmltv_id=BBC2 N West) in the config file
[Error ] Could find existing channel (xmltv_id=BBC2 North) in the config file
[Error ] Could find existing channel (xmltv_id=BBC2 S East) in the config file
[Error ] Could find existing channel (xmltv_id=BBC2 S West) in the config file
[Error ] Could find existing channel (xmltv_id=BBC2 Scotland) in the config file
[Error ] Could find existing channel (xmltv_id=BBC2 South) in the config file
[Error ] Could find existing channel (xmltv_id=BBC2 Wales) in the config file
[Error ] Could find existing channel (xmltv_id=BBC2 West) in the config file
[Error ] Could find existing channel (xmltv_id=BBC2 West Midlands) in the config file
[Error ] Could find existing channel (xmltv_id=BBC4 HD) in the config file
[Error ] Could find existing channel (xmltv_id=BEN) in the config file
[Error ] Could find existing channel (xmltv_id=Best Direct) in the config file
[Error ] Could find existing channel (xmltv_id=BET) in the config file
[Error ] Could find existing channel (xmltv_id=BET +1) in the config file
[Error ] Could find existing channel (xmltv_id=bid tv) in the config file
[Error ] Could find existing channel (xmltv_id=Bliss) in the config file
[Error ] Could find existing channel (xmltv_id=Bloomberg TV) in the config file
[Error ] Could find existing channel (xmltv_id=BON TV) in the config file
[Error ] Could find existing channel (xmltv_id=Boomerang) in the config file
[Error ] Could find existing channel (xmltv_id=Boomerang +1) in the config file
[Error ] Could find existing channel (xmltv_id=Boomerang HD) in the config file
[Error ] Could find existing channel (xmltv_id=BT Sport 1) in the config file
[Error ] Could find existing channel (xmltv_id=BT Sport 1 HD) in the config file
[Error ] Could find existing channel (xmltv_id=BT Sport 2) in the config file
[Error ] Could find existing channel (xmltv_id=BT Sport 2 HD) in the config file
[Error ] Could find existing channel (xmltv_id=BT Sport Europe) in the config file
[Error ] Could find existing channel (xmltv_id=BT Sport Europe HD) in the config file
[Error ] Could find existing channel (xmltv_id=BT Sport Extra 1) in the config file
[Error ] Could find existing channel (xmltv_id=BT Sport Extra 2) in the config file
[Error ] Could find existing channel (xmltv_id=BT Sport Extra 3) in the config file
[Error ] Could find existing channel (xmltv_id=BT Sport Extra 4) in the config file
[Error ] Could find existing channel (xmltv_id=BT Sport Extra 5) in the config file
[Error ] Could find existing channel (xmltv_id=BT Sport Extra 6) in the config file
[Error ] Could find existing channel (xmltv_id=BT Sport//ESPN) in the config file
[Error ] Could find existing channel (xmltv_id=BT Sport//ESPN HD) in the config file
[Error ] Could find existing channel (xmltv_id=Capital TV) in the config file
[Error ] Could find existing channel (xmltv_id=Cartoon Network) in the config file
[Error ] Could find existing channel (xmltv_id=Cartoon Network +1) in the config file
[Error ] Could find existing channel (xmltv_id=Cartoon Network HD) in the config file
[Error ] Could find existing channel (xmltv_id=Cartoonito) in the config file
[Error ] Could find existing channel (xmltv_id=CBBC) in the config file
[Error ] Could find existing channel (xmltv_id=CBBC HD) in the config file
[Error ] Could find existing channel (xmltv_id=CBeebies) in the config file
[Error ] Could find existing channel (xmltv_id=CBeebies HD) in the config file
[Error ] Could find existing channel (xmltv_id=CBS Action) in the config file
[Error ] Could find existing channel (xmltv_id=CBS Drama) in the config file
[Error ] Could find existing channel (xmltv_id=CBS Reality) in the config file
[Error ] Could find existing channel (xmltv_id=CBS Reality +1) in the config file
[Error ] Could find existing channel (xmltv_id=Challenge) in the config file
[Error ] Could find existing channel (xmltv_id=Challenge +1) in the config file
[Error ] Could find existing channel (xmltv_id=Channel 4) in the config file
[Error ] Could find existing channel (xmltv_id=Channel 4 + 1) in the config file
[Error ] Could find existing channel (xmltv_id=Channel 4 HD) in the config file
[Error ] Could find existing channel (xmltv_id=Channel 4 HD +1) in the config file
[Error ] Could find existing channel (xmltv_id=Channel 5) in the config file
[Error ] Could find existing channel (xmltv_id=Channel 5 +1) in the config file
[Error ] Could find existing channel (xmltv_id=Channel 5 HD) in the config file
[Error ] Could find existing channel (xmltv_id=Channel 5+24) in the config file
[Error ] Could find existing channel (xmltv_id=Channel 5+24 (Freeview)) in the config file
[Error ] Could find existing channel (xmltv_id=Channel 7) in the config file
[Error ] Could find existing channel (xmltv_id=Channel AKA) in the config file
[Error ] Could find existing channel (xmltv_id=Channel S) in the config file
[Error ] Could find existing channel (xmltv_id=Chart Show Dance) in the config file
[Error ] Could find existing channel (xmltv_id=Chart Show TV) in the config file
[Error ] Could find existing channel (xmltv_id=Chelsea TV) in the config file
[Error ] Could find existing channel (xmltv_id=Chelsea TV HD) in the config file
[Error ] Could find existing channel (xmltv_id=Christmas 24 +1) in the config file
[Error ] Could find existing channel (xmltv_id=CI) in the config file
[Error ] Could find existing channel (xmltv_id=CI +1) in the config file
[Error ] Could find existing channel (xmltv_id=CI HD) in the config file
[Error ] Could find existing channel (xmltv_id=CITV) in the config file
[Error ] Could find existing channel (xmltv_id=Clubland TV) in the config file
[Error ] Could find existing channel (xmltv_id=CNBC UK) in the config file
[Error ] Could find existing channel (xmltv_id=CNN) in the config file
[Error ] Could find existing channel (xmltv_id=Colors) in the config file
[Error ] Could find existing channel (xmltv_id=Comedy Central) in the config file
[Error ] Could find existing channel (xmltv_id=Comedy Central +1) in the config file
[Error ] Could find existing channel (xmltv_id=Comedy Central Extra) in the config file
[Error ] Could find existing channel (xmltv_id=Comedy Central Extra +1) in the config file
[Error ] Could find existing channel (xmltv_id=Comedy Central HD) in the config file
[Error ] Could find existing channel (xmltv_id=Community Channel) in the config file
[Error ] Could find existing channel (xmltv_id=Community Channel HD) in the config file
[Error ] Could find existing channel (xmltv_id=Create and Craft) in the config file
[Error ] Could find existing channel (xmltv_id=Dave) in the config file
[Error ] Could find existing channel (xmltv_id=Dave HD) in the config file
[Error ] Could find existing channel (xmltv_id=Dave ja vu) in the config file
[Error ] Could find existing channel (xmltv_id=Deutsche Welle) in the config file
[Error ] Could find existing channel (xmltv_id=Discovery) in the config file
[Error ] Could find existing channel (xmltv_id=Discovery +1) in the config file
[Error ] Could find existing channel (xmltv_id=Discovery HD) in the config file
[Error ] Could find existing channel (xmltv_id=Discovery History) in the config file
[Error ] Could find existing channel (xmltv_id=Discovery History +1) in the config file
[Error ] Could find existing channel (xmltv_id=Discovery Home & Health) in the config file
[Error ] Could find existing channel (xmltv_id=Discovery Home & Health +1) in the config file
[Error ] Could find existing channel (xmltv_id=Discovery Science) in the config file
[Error ] Could find existing channel (xmltv_id=Discovery Science +1) in the config file
[Error ] Could find existing channel (xmltv_id=Discovery Shed) in the config file
[Error ] Could find existing channel (xmltv_id=Discovery Turbo) in the config file
[Error ] Could find existing channel (xmltv_id=Disney Channel) in the config file
[Error ] Could find existing channel (xmltv_id=Disney Channel +1) in the config file
[Error ] Could find existing channel (xmltv_id=Disney Channel HD) in the config file
[Error ] Could find existing channel (xmltv_id=Disney Cinemagic) in the config file
[Error ] Could find existing channel (xmltv_id=Disney Cinemagic +1) in the config file
[Error ] Could find existing channel (xmltv_id=Disney Cinemagic HD) in the config file
[Error ] Could find existing channel (xmltv_id=Disney Junior) in the config file
[Error ] Could find existing channel (xmltv_id=Disney Junior +1) in the config file
[Error ] Could find existing channel (xmltv_id=Disney Junior HD) in the config file
[Error ] Could find existing channel (xmltv_id=Disney XD) in the config file
[Error ] Could find existing channel (xmltv_id=Disney XD +1) in the config file
[Error ] Could find existing channel (xmltv_id=Disney XD HD) in the config file
[Error ] Could find existing channel (xmltv_id=DMAX) in the config file
[Error ] Could find existing channel (xmltv_id=DMAX+1) in the config file
[Error ] Could find existing channel (xmltv_id=Drama) in the config file
[Error ] Could find existing channel (xmltv_id=E!) in the config file
[Error ] Could find existing channel (xmltv_id=E! +1) in the config file
[Error ] Could find existing channel (xmltv_id=E! Entertainment Europe) in the config file
[Error ] Could find existing channel (xmltv_id=E! Entertainment HD) in the config file
[Error ] Could find existing channel (xmltv_id=E4) in the config file
[Error ] Could find existing channel (xmltv_id=E4 +1) in the config file
[Error ] Could find existing channel (xmltv_id=E4 HD) in the config file
[Error ] Could find existing channel (xmltv_id=Eden) in the config file
[Error ] Could find existing channel (xmltv_id=Eden +1) in the config file
[Error ] Could find existing channel (xmltv_id=Eden HD) in the config file
[Error ] Could find existing channel (xmltv_id=Estuary TV) in the config file
[Error ] Could find existing channel (xmltv_id=EuroNews) in the config file
[Error ] Could find existing channel (xmltv_id=Eurosport 1) in the config file
[Error ] Could find existing channel (xmltv_id=Eurosport 1 HD) in the config file
[Error ] Could find existing channel (xmltv_id=Eurosport 2) in the config file
[Error ] Could find existing channel (xmltv_id=Eurosport 2 HD) in the config file
[Error ] Could find existing channel (xmltv_id=Extreme Sports) in the config file
[Error ] Could find existing channel (xmltv_id=FAB TV) in the config file
[Error ] Could find existing channel (xmltv_id=Film4) in the config file
[Error ] Could find existing channel (xmltv_id=Film4 +1) in the config file
[Error ] Could find existing channel (xmltv_id=Film4 HD) in the config file
[Error ] Could find existing channel (xmltv_id=FilmOn.TV) in the config file
[Error ] Could find existing channel (xmltv_id=Flava) in the config file
[Error ] Could find existing channel (xmltv_id=Food Network) in the config file
[Error ] Could find existing channel (xmltv_id=Food Network +1) in the config file
[Error ] Could find existing channel (xmltv_id=Forces TV) in the config file
[Error ] Could find existing channel (xmltv_id=FOX) in the config file
[Error ] Could find existing channel (xmltv_id=FOX HD) in the config file
[Error ] Could find existing channel (xmltv_id=FOX+1) in the config file
[Error ] Could find existing channel (xmltv_id=FRANCE 24 English) in the config file
[Error ] Could find existing channel (xmltv_id=GBC) in the config file
[ Debug ] removed 3 overlapping shows in GBC starting after 13/05/2016 18:30:00
[Error ] Could find existing channel (xmltv_id=Gems TV) in the config file
[Error ] Could find existing channel (xmltv_id=GOD Channel) in the config file
[Error ] Could find existing channel (xmltv_id=GOLD) in the config file
[Error ] Could find existing channel (xmltv_id=GOLD +1) in the config file
[Error ] Could find existing channel (xmltv_id=Good Food) in the config file
[Error ] Could find existing channel (xmltv_id=Good Food +1) in the config file
[Error ] Could find existing channel (xmltv_id=Good Food HD) in the config file
[Error ] Could find existing channel (xmltv_id=H2) in the config file
[Error ] Could find existing channel (xmltv_id=Heart TV) in the config file
[Error ] Could find existing channel (xmltv_id=Heat TV) in the config file
[Error ] Could find existing channel (xmltv_id=HISTORY) in the config file
[Error ] Could find existing channel (xmltv_id=HISTORY +1) in the config file
[Error ] Could find existing channel (xmltv_id=HISTORY HD) in the config file
[Error ] Could find existing channel (xmltv_id=Holiday & Cruise Channel) in the config file
[Error ] Could find existing channel (xmltv_id=Home) in the config file
[Error ] Could find existing channel (xmltv_id=Home +1) in the config file
[Error ] Could find existing channel (xmltv_id=Horror Channel) in the config file
[Error ] Could find existing channel (xmltv_id=Horror Channel +1) in the config file
[Error ] Could find existing channel (xmltv_id=Horse & Country) in the config file
[Error ] Could find existing channel (xmltv_id=Ideal World) in the config file
[Error ] Could find existing channel (xmltv_id=Investigation Discovery) in the config file
[Error ] Could find existing channel (xmltv_id=Investigation Discovery +1) in the config file
[Error ] Could find existing channel (xmltv_id=Irish TV +1) in the config file
[Error ] Could find existing channel (xmltv_id=ITV Anglia) in the config file
[Error ] Could find existing channel (xmltv_id=ITV Anglia +1) in the config file
[Error ] Could find existing channel (xmltv_id=ITV Border) in the config file
[Error ] Could find existing channel (xmltv_id=ITV Border Scotland) in the config file
[Error ] Could find existing channel (xmltv_id=ITV Central) in the config file
[Error ] Could find existing channel (xmltv_id=ITV Central +1) in the config file
[Error ] Could find existing channel (xmltv_id=ITV Channel) in the config file
[Error ] Could find existing channel (xmltv_id=ITV Encore) in the config file
[Error ] Could find existing channel (xmltv_id=ITV Encore HD) in the config file
[Error ] Could find existing channel (xmltv_id=ITV Granada) in the config file
[Error ] Could find existing channel (xmltv_id=ITV Granada +1) in the config file
[Error ] Could find existing channel (xmltv_id=ITV HD) in the config file
[Error ] Could find existing channel (xmltv_id=ITV HD Central) in the config file
[Error ] Could find existing channel (xmltv_id=ITV HD Granada) in the config file
[Error ] Could find existing channel (xmltv_id=ITV HD Meridian) in the config file
[Error ] Could find existing channel (xmltv_id=ITV London) in the config file
[Error ] Could find existing channel (xmltv_id=ITV London +1) in the config file
[Error ] Could find existing channel (xmltv_id=ITV Meridian) in the config file
[Error ] Could find existing channel (xmltv_id=ITV Meridian +1) in the config file
[Error ] Could find existing channel (xmltv_id=ITV South East +1) in the config file
[Error ] Could find existing channel (xmltv_id=ITV Thames Valley North) in the config file
[Error ] Could find existing channel (xmltv_id=ITV Thames Valley South) in the config file
[Error ] Could find existing channel (xmltv_id=ITV Tyne Tees) in the config file
[Error ] Could find existing channel (xmltv_id=ITV Tynes Tees +1) in the config file
[Error ] Could find existing channel (xmltv_id=ITV Wales) in the config file
[Error ] Could find existing channel (xmltv_id=ITV Wales +1) in the config file
[Error ] Could find existing channel (xmltv_id=ITV West) in the config file
[ Debug ] removed 2 overlapping shows in ITV West starting after 13/05/2016 00:30:00
[Error ] Could find existing channel (xmltv_id=ITV West +1) in the config file
[ Debug ] removed 2 overlapping shows in ITV West +1 starting after 13/05/2016 00:40:00
[Error ] Could find existing channel (xmltv_id=ITV Westcountry) in the config file
[ Debug ] removed 2 overlapping shows in ITV Westcountry starting after 13/05/2016 00:30:00
[Error ] Could find existing channel (xmltv_id=ITV Westcountry +1) in the config file
[ Debug ] removed 2 overlapping shows in ITV Westcountry +1 starting after 13/05/2016 00:40:00
[Error ] Could find existing channel (xmltv_id=ITV Yorkshire) in the config file
[ Debug ] removed 2 overlapping shows in ITV Yorkshire starting after 13/05/2016 00:30:00
[Error ] Could find existing channel (xmltv_id=ITV Yorkshire +1) in the config file
[ Debug ] removed 2 overlapping shows in ITV Yorkshire +1 starting after 13/05/2016 00:40:00
[Error ] Could find existing channel (xmltv_id=ITV2) in the config file
[ Debug ] removed 2 overlapping shows in ITV2 starting after 13/05/2016 00:20:00
[Error ] Could find existing channel (xmltv_id=ITV2 +1) in the config file
[ Debug ] removed 2 overlapping shows in ITV2 +1 starting after 13/05/2016 00:20:00
[Error ] Could find existing channel (xmltv_id=ITV2 HD) in the config file
[ Debug ] removed 2 overlapping shows in ITV2 HD starting after 13/05/2016 00:20:00
[Error ] Could find existing channel (xmltv_id=ITV3) in the config file
[ Debug ] removed 2 overlapping shows in ITV3 starting after 13/05/2016 00:10:00
[Error ] Could find existing channel (xmltv_id=ITV3 HD) in the config file
[ Debug ] removed 2 overlapping shows in ITV3 HD starting after 13/05/2016 00:10:00
[Error ] Could find existing channel (xmltv_id=ITV3+1) in the config file
[ Debug ] removed 2 overlapping shows in ITV3+1 starting after 13/05/2016 00:05:00
[Error ] Could find existing channel (xmltv_id=ITV3+1 (Freeview)) in the config file
[ Debug ] removed 2 overlapping shows in ITV3+1 (Freeview) starting after 13/05/2016 18:00:00
[Error ] Could find existing channel (xmltv_id=ITV4) in the config file
[ Debug ] removed 2 overlapping shows in ITV4 starting after 13/05/2016 00:05:00
[Error ] Could find existing channel (xmltv_id=ITV4 + 1) in the config file
[ Debug ] removed 2 overlapping shows in ITV4 + 1 starting after 13/05/2016 00:25:00
[Error ] Could find existing channel (xmltv_id=ITV4 HD) in the config file
[ Debug ] removed 2 overlapping shows in ITV4 HD starting after 13/05/2016 00:05:00
[Error ] Could find existing channel (xmltv_id=ITVBe) in the config file
[ Debug ] removed 2 overlapping shows in ITVBe starting after 13/05/2016 00:00:00
[Error ] Could find existing channel (xmltv_id=ITVBe HD) in the config file
[ Debug ] removed 2 overlapping shows in ITVBe HD starting after 13/05/2016 00:00:00
[Error ] Could find existing channel (xmltv_id=ITVBe+1) in the config file
[ Debug ] removed 2 overlapping shows in ITVBe+1 starting after 13/05/2016 00:00:00
[Error ] Could find existing channel (xmltv_id=JSTV1) in the config file
[Error ] Could find existing channel (xmltv_id=JSTV2) in the config file
[Error ] Could find existing channel (xmltv_id=Kerrang! TV) in the config file
[ Debug ] removed 2 overlapping shows in Kerrang! TV starting after 13/05/2016 00:00:00
[Error ] Could find existing channel (xmltv_id=Kiss TV) in the config file
[ Debug ] removed 2 overlapping shows in Kiss TV starting after 13/05/2016 00:30:00
[Error ] Could find existing channel (xmltv_id=Kix) in the config file
[ Debug ] removed 2 overlapping shows in Kix starting after 13/05/2016 00:00:00
[Error ] Could find existing channel (xmltv_id=LFCTV HD) in the config file
[Error ] Could find existing channel (xmltv_id=Lifetime) in the config file
[ Debug ] removed 2 overlapping shows in Lifetime starting after 13/05/2016 00:00:00
[Error ] Could find existing channel (xmltv_id=Lifetime +1) in the config file
[ Debug ] removed 2 overlapping shows in Lifetime +1 starting after 13/05/2016 00:00:00
[Error ] Could find existing channel (xmltv_id=Lifetime HD) in the config file
[ Debug ] removed 2 overlapping shows in Lifetime HD starting after 13/05/2016 00:00:00
[Error ] Could find existing channel (xmltv_id=Liverpool FC TV) in the config file
[ Debug ] removed 2 overlapping shows in Liverpool FC TV starting after 13/05/2016 00:00:00
[Error ] Could find existing channel (xmltv_id=London Live) in the config file
[ Debug ] removed 2 overlapping shows in London Live starting after 13/05/2016 02:10:00
[Error ] Could find existing channel (xmltv_id=M95 TV Marbella) in the config file
[ Debug ] removed 2 overlapping shows in M95 TV Marbella starting after 13/05/2016 01:00:00
[Error ] Could find existing channel (xmltv_id=Made in Bristol) in the config file
[Error ] Could find existing channel (xmltv_id=Made in Cardiff) in the config file
[Error ] Could find existing channel (xmltv_id=Made in Leeds) in the config file
[Error ] Could find existing channel (xmltv_id=Made in Tyne & Wear) in the config file
[Error ] Could find existing channel (xmltv_id=Magic TV) in the config file
[ Debug ] removed 2 overlapping shows in Magic TV starting after 13/05/2016 00:00:00
[Error ] Could find existing channel (xmltv_id=MGM Channel) in the config file
[ Debug ] removed 2 overlapping shows in MGM Channel starting after 13/05/2016 01:10:00
[Error ] Could find existing channel (xmltv_id=more>movies) in the config file
[Error ] Could find existing channel (xmltv_id=more>movies +1) in the config file
[Error ] Could find existing channel (xmltv_id=More4) in the config file
[ Debug ] removed 2 overlapping shows in More4 starting after 13/05/2016 00:05:00
[Error ] Could find existing channel (xmltv_id=More4 +1) in the config file
[ Debug ] removed 2 overlapping shows in More4 +1 starting after 13/05/2016 00:05:00
[Error ] Could find existing channel (xmltv_id=More4 HD) in the config file
[ Debug ] removed 2 overlapping shows in More4 HD starting after 13/05/2016 00:05:00
[Error ] Could find existing channel (xmltv_id=Motors TV) in the config file
[ Debug ] removed 2 overlapping shows in Motors TV starting after 13/05/2016 00:10:00
[Error ] Could find existing channel (xmltv_id=Movie Mix) in the config file
[ Debug ] removed 2 overlapping shows in Movie Mix starting after 13/05/2016 00:55:00
[Error ] Could find existing channel (xmltv_id=Movies 24) in the config file
[ Debug ] removed 2 overlapping shows in Movies 24 starting after 13/05/2016 01:00:00
[Error ] Could find existing channel (xmltv_id=Movies 24+) in the config file
[ Debug ] removed 2 overlapping shows in Movies 24+ starting after 13/05/2016 00:00:00
[Error ] Could find existing channel (xmltv_id=Movies4Men) in the config file
[ Debug ] removed 2 overlapping shows in Movies4Men starting after 13/05/2016 00:50:00
[Error ] Could find existing channel (xmltv_id=Movies4Men +1) in the config file
[ Debug ] removed 2 overlapping shows in Movies4Men +1 starting after 13/05/2016 00:05:00
[Error ] Could find existing channel (xmltv_id=MTV) in the config file
[ Debug ] removed 2 overlapping shows in MTV starting after 13/05/2016 00:00:00
[Error ] Could find existing channel (xmltv_id=MTV + 1) in the config file
[ Debug ] removed 2 overlapping shows in MTV + 1 starting after 13/05/2016 01:00:00
[Error ] Could find existing channel (xmltv_id=MTV Base) in the config file
[ Debug ] removed 2 overlapping shows in MTV Base starting after 13/05/2016 01:00:00
[Error ] Could find existing channel (xmltv_id=MTV Dance) in the config file
[ Debug ] removed 2 overlapping shows in MTV Dance starting after 13/05/2016 00:00:00
[Error ] Could find existing channel (xmltv_id=MTV HD) in the config file
[ Debug ] removed 2 overlapping shows in MTV HD starting after 13/05/2016 00:00:00
[Error ] Could find existing channel (xmltv_id=MTV Hits) in the config file
[ Debug ] removed 2 overlapping shows in MTV Hits starting after 13/05/2016 00:00:00
[Error ] Could find existing channel (xmltv_id=MTV Live) in the config file
[Error ] Could find existing channel (xmltv_id=MTV Live HD) in the config file
[ Debug ] removed 2 overlapping shows in MTV Live HD starting after 13/05/2016 00:00:00
[Error ] Could find existing channel (xmltv_id=MTV Music) in the config file
[ Debug ] removed 2 overlapping shows in MTV Music starting after 13/05/2016 00:00:00
[Error ] Could find existing channel (xmltv_id=MTV Rocks) in the config file
[ Debug ] removed 2 overlapping shows in MTV Rocks starting after 13/05/2016 01:00:00
[Error ] Could find existing channel (xmltv_id=MTV Xmas) in the config file
[ Debug ] removed 2 overlapping shows in MTV Xmas starting after 13/05/2016 00:00:00
[Error ] Could find existing channel (xmltv_id=MUTV) in the config file
[ Debug ] removed 2 overlapping shows in MUTV starting after 13/05/2016 01:00:00
[Error ] Could find existing channel (xmltv_id=MUTV HD) in the config file
[ Debug ] removed 2 overlapping shows in MUTV HD starting after 13/05/2016 01:00:00
[Error ] Could find existing channel (xmltv_id=Nat Geo Wild) in the config file
[ Debug ] removed 2 overlapping shows in Nat Geo Wild starting after 13/05/2016 00:00:00
[Error ] Could find existing channel (xmltv_id=Nat Geo Wild HD) in the config file
[ Debug ] removed 2 overlapping shows in Nat Geo Wild HD starting after 13/05/2016 00:00:00
[Error ] Could find existing channel (xmltv_id=National Geographic) in the config file
[ Debug ] removed 2 overlapping shows in National Geographic starting after 13/05/2016 00:00:00
[Error ] Could find existing channel (xmltv_id=National Geographic +1) in the config file
[ Debug ] removed 2 overlapping shows in National Geographic +1 starting after 13/05/2016 00:00:00
[Error ] Could find existing channel (xmltv_id=National Geographic HD) in the config file
[ Debug ] removed 2 overlapping shows in National Geographic HD starting after 13/05/2016 00:00:00
[Error ] Could find existing channel (xmltv_id=National Geographic HD +1) in the config file
[Error ] Could find existing channel (xmltv_id=News18 India) in the config file
[Error ] Could find existing channel (xmltv_id=NHK World) in the config file
[ Debug ] removed 2 overlapping shows in NHK World starting after 13/05/2016 00:00:00
[Error ] Could find existing channel (xmltv_id=NHK World HD) in the config file
[ Debug ] removed 2 overlapping shows in NHK World HD starting after 13/05/2016 00:00:00
[Error ] Could find existing channel (xmltv_id=Nick Jr) in the config file
[ Debug ] removed 2 overlapping shows in Nick Jr starting after 13/05/2016 00:00:00
[Error ] Could find existing channel (xmltv_id=Nick Jr +1) in the config file
[ Debug ] removed 2 overlapping shows in Nick Jr +1 starting after 13/05/2016 00:00:00
[Error ] Could find existing channel (xmltv_id=Nick Jr Too) in the config file
[ Debug ] removed 2 overlapping shows in Nick Jr Too starting after 13/05/2016 00:00:00
[Error ] Could find existing channel (xmltv_id=Nickelodeon) in the config file
[ Debug ] removed 2 overlapping shows in Nickelodeon starting after 13/05/2016 00:00:00
[Error ] Could find existing channel (xmltv_id=Nickelodeon +1) in the config file
[ Debug ] removed 2 overlapping shows in Nickelodeon +1 starting after 13/05/2016 00:00:00
[Error ] Could find existing channel (xmltv_id=Nickelodeon HD) in the config file
[ Debug ] removed 2 overlapping shows in Nickelodeon HD starting after 13/05/2016 00:00:00
[Error ] Could find existing channel (xmltv_id=Nicktoons) in the config file
[ Debug ] removed 2 overlapping shows in Nicktoons starting after 13/05/2016 00:00:00
[Error ] Could find existing channel (xmltv_id=Notts TV) in the config file
[ Debug ] removed 2 overlapping shows in Notts TV starting after 13/05/2016 00:00:00
[Error ] Could find existing channel (xmltv_id=NOW Christmas) in the config file
[Error ] Could find existing channel (xmltv_id=OHTV) in the config file
[Error ] Could find existing channel (xmltv_id=OSN Ya Hala!) in the config file
[Error ] Could find existing channel (xmltv_id=PBS America) in the config file
[ Debug ] removed 2 overlapping shows in PBS America starting after 13/05/2016 00:20:00
[Error ] Could find existing channel (xmltv_id=Phoenix CNE) in the config file
[ Debug ] removed 2 overlapping shows in Phoenix CNE starting after 13/05/2016 00:00:00
[Error ] Could find existing channel (xmltv_id=Pick) in the config file
[ Debug ] removed 2 overlapping shows in Pick starting after 13/05/2016 00:00:00
[Error ] Could find existing channel (xmltv_id=Pick+1) in the config file
[ Debug ] removed 2 overlapping shows in Pick+1 starting after 13/05/2016 00:00:00
[Error ] Could find existing channel (xmltv_id=Planet Pop) in the config file
[Error ] Could find existing channel (xmltv_id=Playboy TV) in the config file
[ Debug ] removed 2 overlapping shows in Playboy TV starting after 13/05/2016 00:00:00
[Error ] Could find existing channel (xmltv_id=Plus 1) in the config file
[Error ] Could find existing channel (xmltv_id=Pop) in the config file
[Error ] Could find existing channel (xmltv_id=Pop +1) in the config file
[Error ] Could find existing channel (xmltv_id=PopGirl) in the config file
[Error ] Could find existing channel (xmltv_id=Premier Sports) in the config file
[Error ] Could find existing channel (xmltv_id=price-drop.tv) in the config file
[Error ] Could find existing channel (xmltv_id=PTV) in the config file
[Error ] Could find existing channel (xmltv_id=QUEST) in the config file
[Error ] Could find existing channel (xmltv_id=QUEST +1) in the config file
[Error ] Could find existing channel (xmltv_id=QVC) in the config file
[Error ] Could find existing channel (xmltv_id=Racing UK) in the config file
[Error ] Could find existing channel (xmltv_id=Real Lives) in the config file
[Error ] Could find existing channel (xmltv_id=Real Lives +1) in the config file
[Error ] Could find existing channel (xmltv_id=Really) in the config file
[Error ] Could find existing channel (xmltv_id=Red Hot 18s) in the config file
[Error ] Could find existing channel (xmltv_id=Red Hot Amateur) in the config file
[Error ] Could find existing channel (xmltv_id=Revelation TV) in the config file
[Error ] Could find existing channel (xmltv_id=Rishtey) in the config file
[Error ] Could find existing channel (xmltv_id=RT) in the config file
[Error ] Could find existing channel (xmltv_id=RT HD) in the config file
[Error ] Could find existing channel (xmltv_id=RTÉ Jr) in the config file
[Error ] Could find existing channel (xmltv_id=RTÉ News Now) in the config file
[Error ] Could find existing channel (xmltv_id=RTÉ One) in the config file
[Error ] Could find existing channel (xmltv_id=RTÉ One +1) in the config file
[Error ] Could find existing channel (xmltv_id=RTÉ One HD) in the config file
[Error ] Could find existing channel (xmltv_id=RTÉ Two) in the config file
[Error ] Could find existing channel (xmltv_id=RTÉ Two HD) in the config file
[Error ] Could find existing channel (xmltv_id=S4C) in the config file
[Error ] Could find existing channel (xmltv_id=Scuzz) in the config file
[Error ] Could find existing channel (xmltv_id=Setanta Ireland) in the config file
[Error ] Could find existing channel (xmltv_id=Setanta Sports 1) in the config file
[Error ] Could find existing channel (xmltv_id=Showcase) in the config file
[Error ] Could find existing channel (xmltv_id=Showcase +1) in the config file
[Error ] Could find existing channel (xmltv_id=Sky 1) in the config file
[Error ] Could find existing channel (xmltv_id=Sky 2) in the config file
[Error ] Could find existing channel (xmltv_id=Sky 3D) in the config file
[Error ] Could find existing channel (xmltv_id=Sky Arts) in the config file
[Error ] Could find existing channel (xmltv_id=Sky Arts 2) in the config file
[Error ] Could find existing channel (xmltv_id=Sky Arts 2 HD) in the config file
[Error ] Could find existing channel (xmltv_id=Sky Arts HD) in the config file
[Error ] Could find existing channel (xmltv_id=Sky Atlantic) in the config file
[Error ] Could find existing channel (xmltv_id=Sky Atlantic +1) in the config file
[ Debug ] removed 2 overlapping shows in Sky Atlantic +1 starting after 13/05/2016 00:20:00
[Error ] Could find existing channel (xmltv_id=Sky Atlantic HD) in the config file
[ Debug ] removed 2 overlapping shows in Sky Atlantic HD starting after 13/05/2016 01:00:00
[Error ] Could find existing channel (xmltv_id=Sky Box Office Digital) in the config file
[Error ] Could find existing channel (xmltv_id=Sky Box Office HD1) in the config file
[ Debug ] removed 2 overlapping shows in Sky Box Office HD1 starting after 13/05/2016 01:15:00
[Error ] Could find existing channel (xmltv_id=Sky Box Office HD2) in the config file
[Error ] Could find existing channel (xmltv_id=Sky Box Office HD3) in the config file
[Error ] Could find existing channel (xmltv_id=Sky Living) in the config file
[ Debug ] removed 2 overlapping shows in Sky Living starting after 13/05/2016 00:00:00
[Error ] Could find existing channel (xmltv_id=Sky Living +1) in the config file
[Error ] Could find existing channel (xmltv_id=Sky Living HD) in the config file
[Error ] Could find existing channel (xmltv_id=Sky Movies Action & Adventure) in the config file
[Error ] Could find existing channel (xmltv_id=Sky Movies Action & Adventure HD) in the config file
[Error ] Could find existing channel (xmltv_id=Sky Movies Comedy) in the config file
[Error ] Could find existing channel (xmltv_id=Sky Movies Comedy HD) in the config file
[Error ] Could find existing channel (xmltv_id=Sky Movies Crime & Thriller) in the config file
[Error ] Could find existing channel (xmltv_id=Sky Movies Crime & Thriller HD) in the config file
[Error ] Could find existing channel (xmltv_id=Sky Movies Disney) in the config file
[Error ] Could find existing channel (xmltv_id=Sky Movies Disney HD) in the config file
[Error ] Could find existing channel (xmltv_id=Sky Movies Family) in the config file
[Error ] Could find existing channel (xmltv_id=Sky Movies Family HD) in the config file
[Error ] Could find existing channel (xmltv_id=Sky Movies Greats) in the config file
[Error ] Could find existing channel (xmltv_id=Sky Movies Greats HD) in the config file
[Error ] Could find existing channel (xmltv_id=Sky Movies Premiere) in the config file
[Error ] Could find existing channel (xmltv_id=Sky Movies Premiere +1) in the config file
[Error ] Could find existing channel (xmltv_id=Sky Movies Premiere HD) in the config file
[Error ] Could find existing channel (xmltv_id=Sky Movies Sci-Fi & Horror) in the config file
[Error ] Could find existing channel (xmltv_id=Sky Movies Sci-Fi & Horror HD) in the config file
[Error ] Could find existing channel (xmltv_id=Sky Movies Select) in the config file
[Error ] Could find existing channel (xmltv_id=Sky Movies Select HD) in the config file
[Error ] Could find existing channel (xmltv_id=Sky Movies Showcase) in the config file
[Error ] Could find existing channel (xmltv_id=Sky Movies Showcase HD) in the config file
[Error ] Could find existing channel (xmltv_id=Sky Movies Superheroes HD) in the config file
[Error ] Could find existing channel (xmltv_id=Sky Movies Valentine) in the config file
[Error ] Could find existing channel (xmltv_id=Sky Movies Valentine HD) in the config file
[Error ] Could find existing channel (xmltv_id=Sky News) in the config file
[Error ] Could find existing channel (xmltv_id=Sky News HD) in the config file
[Error ] Could find existing channel (xmltv_id=Sky Sports 1) in the config file
[Error ] Could find existing channel (xmltv_id=Sky Sports 1 Interactive) in the config file
[Error ] Could find existing channel (xmltv_id=Sky Sports 2) in the config file
[Error ] Could find existing channel (xmltv_id=Sky Sports 2 HD) in the config file
[Error ] Could find existing channel (xmltv_id=Sky Sports 2 Interactive) in the config file
[Error ] Could find existing channel (xmltv_id=Sky Sports 3) in the config file
[Error ] Could find existing channel (xmltv_id=Sky Sports 3 Interactive) in the config file
[Error ] Could find existing channel (xmltv_id=Sky Sports 4) in the config file
[Error ] Could find existing channel (xmltv_id=Sky Sports 4 HD) in the config file
[Error ] Could find existing channel (xmltv_id=Sky Sports 4 Interactive) in the config file
[Error ] Could find existing channel (xmltv_id=Sky Sports 5) in the config file
[Error ] Could find existing channel (xmltv_id=Sky Sports 5 HD) in the config file
[Error ] Could find existing channel (xmltv_id=Sky Sports Box Office) in the config file
[Error ] Could find existing channel (xmltv_id=Sky Sports Box Office HD) in the config file
[Error ] Could find existing channel (xmltv_id=Sky Sports F1) in the config file
[Error ] Could find existing channel (xmltv_id=Sky Sports F1 HD) in the config file
[Error ] Could find existing channel (xmltv_id=Sky Sports HD1) in the config file
[Error ] Could find existing channel (xmltv_id=Sky Sports HD3) in the config file
[Error ] Could find existing channel (xmltv_id=Sky Sports News) in the config file
[Error ] Could find existing channel (xmltv_id=Sky Sports News HD) in the config file
[Error ] Could find existing channel (xmltv_id=Sky1 +1) in the config file
[Error ] Could find existing channel (xmltv_id=Sky1 HD) in the config file
[Error ] Could find existing channel (xmltv_id=Smash Hits!) in the config file
[Error ] Could find existing channel (xmltv_id=Sony Channel) in the config file
[Error ] Could find existing channel (xmltv_id=Sony Channel +1) in the config file
[Error ] Could find existing channel (xmltv_id=Sony Entertainment TV Asia) in the config file
[Error ] Could find existing channel (xmltv_id=Sony Movie Channel) in the config file
[Error ] Could find existing channel (xmltv_id=Sony Movie Channel +1) in the config file
[Error ] Could find existing channel (xmltv_id=Sony SAB) in the config file
[Error ] Could find existing channel (xmltv_id=Spike) in the config file
[Error ] Could find existing channel (xmltv_id=Star Gold) in the config file
[Error ] Could find existing channel (xmltv_id=Star Jalsha) in the config file
[Error ] Could find existing channel (xmltv_id=Star Life OK) in the config file
[Error ] Could find existing channel (xmltv_id=Star Plus) in the config file
[Error ] Could find existing channel (xmltv_id=Star Plus HD) in the config file
[Error ] Could find existing channel (xmltv_id=Starz TV) in the config file
[Error ] Could find existing channel (xmltv_id=STV +1) in the config file
[Error ] Could find existing channel (xmltv_id=STV Central) in the config file
[Error ] Could find existing channel (xmltv_id=STV Glasgow) in the config file
[Error ] Could find existing channel (xmltv_id=Syfy) in the config file
[Error ] Could find existing channel (xmltv_id=Syfy +1) in the config file
[Error ] Could find existing channel (xmltv_id=Syfy HD) in the config file
[Error ] Could find existing channel (xmltv_id=Talking Pictures) in the config file
[Error ] Could find existing channel (xmltv_id=TCM) in the config file
[Error ] Could find existing channel (xmltv_id=TCM +1) in the config file
[Error ] Could find existing channel (xmltv_id=TCM HD) in the config file
[Error ] Could find existing channel (xmltv_id=Television X) in the config file
[Error ] Could find existing channel (xmltv_id=TG4) in the config file
[Error ] Could find existing channel (xmltv_id=TG4 HD) in the config file
[Error ] Could find existing channel (xmltv_id=The Active Channel) in the config file
[Error ] Could find existing channel (xmltv_id=The Adult Channel) in the config file
[Error ] Could find existing channel (xmltv_id=The Africa Channel) in the config file
[Error ] Could find existing channel (xmltv_id=The Box) in the config file
[Error ] Could find existing channel (xmltv_id=The Jewellery Channel) in the config file
[Error ] Could find existing channel (xmltv_id=The Vault) in the config file
[Error ] Could find existing channel (xmltv_id=Tiny Pop) in the config file
[Error ] Could find existing channel (xmltv_id=Tiny Pop +1) in the config file
[Error ] Could find existing channel (xmltv_id=TLC) in the config file
[Error ] Could find existing channel (xmltv_id=TLC +1) in the config file
[Error ] Could find existing channel (xmltv_id=TLC HD) in the config file
[Error ] Could find existing channel (xmltv_id=TLC+2) in the config file
[Error ] Could find existing channel (xmltv_id=Travel Channel) in the config file
[Error ] Could find existing channel (xmltv_id=Travel Channel +1) in the config file
[Error ] Could find existing channel (xmltv_id=True Christmas) in the config file
[Error ] Could find existing channel (xmltv_id=True Drama) in the config file
[Error ] Could find existing channel (xmltv_id=True Entertainment +1) in the config file
[Error ] Could find existing channel (xmltv_id=True Movies 1) in the config file
[Error ] Could find existing channel (xmltv_id=True Movies 2) in the config file
[Error ] Could find existing channel (xmltv_id=TrueEntertainment) in the config file
[Error ] Could find existing channel (xmltv_id=truTV) in the config file
[Error ] Could find existing channel (xmltv_id=truTV +1) in the config file
[Error ] Could find existing channel (xmltv_id=TV3) in the config file
[Error ] Could find existing channel (xmltv_id=TV3 (Spanish)) in the config file
[Error ] Could find existing channel (xmltv_id=TV5) in the config file
[Error ] Could find existing channel (xmltv_id=Universal Channel) in the config file
[Error ] Could find existing channel (xmltv_id=Universal Channel +1) in the config file
[Error ] Could find existing channel (xmltv_id=Universal Channel HD) in the config file
[Error ] Could find existing channel (xmltv_id=UTV) in the config file
[Error ] Could find existing channel (xmltv_id=UTV +1) in the config file
[Error ] Could find existing channel (xmltv_id=UTV HD) in the config file
[Error ] Could find existing channel (xmltv_id=UTV Ireland) in the config file
[Error ] Could find existing channel (xmltv_id=UTV Ireland HD) in the config file
[Error ] Could find existing channel (xmltv_id=VH1) in the config file
[Error ] Could find existing channel (xmltv_id=Viewers' Wives) in the config file
[Error ] Could find existing channel (xmltv_id=Vijay) in the config file
[Error ] Could find existing channel (xmltv_id=Vintage TV) in the config file
[Error ] Could find existing channel (xmltv_id=Virgin Movies) in the config file
[Error ] Could find existing channel (xmltv_id=Viva) in the config file
[Error ] Could find existing channel (xmltv_id=Vox Africa) in the config file
[Error ] Could find existing channel (xmltv_id=W) in the config file
[Error ] Could find existing channel (xmltv_id=W (+1)) in the config file
[Error ] Could find existing channel (xmltv_id=W HD) in the config file
[Error ] Could find existing channel (xmltv_id=Xtreme Filth) in the config file
[Error ] Could find existing channel (xmltv_id=YESTERDAY) in the config file
[Error ] Could find existing channel (xmltv_id=YESTERDAY +1) in the config file
[Error ] Could find existing channel (xmltv_id=YourTV) in the config file
[Error ] Could find existing channel (xmltv_id=YourTV +1) in the config file
[Error ] Could find existing channel (xmltv_id=Zee Cinema) in the config file
[Error ] Could find existing channel (xmltv_id=Zee TV) in the config file
[Error ] Could find existing channel (xmltv_id=Zing) in the config file
[ Info ]
[ Info ]
[ Info ] i=index .=same c=change g=gab r=replace n=new
[ Info ]
[ Info ]
[ Info ] Group (0) :
[ Info ] update requested for - 0 - out of - 532 - channels for 2 day(s)
[ Info ]
[ Info ] Group (1) :
[ Info ] update requested for - 532 - out of - 532 - channels for 2 day(s)
[ Debug ]
[ Info ] ( 1/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=&TV) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 2/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=?TV) -- mode Incremental
[Error ] no shows in indexpage!
[ Info ]
[ Debug ]
[ Info ] ( 3/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=3e) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 4/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=4Music) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 5/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=4seven) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 6/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=4seven HD) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 7/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=5* (Freeview)) -- mode Incremental
[Error ] no shows in indexpage!
[ Info ]
[ Debug ]
[ Info ] ( 8/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=5* +1) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 9/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=5STAR) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 10/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=5USA) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 11/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=5USA +1) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 12/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=ABN TV) -- mode Incremental
[Error ] no shows in indexpage!
[ Info ]
[ Debug ]
[ Info ] ( 13/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=AIT International) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 14/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=Al Jazeera English) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 15/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=Al Jazeera English HD) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 16/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=Alibi) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 17/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=Alibi HD) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 18/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=Alibi+1) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 19/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=AMC) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 20/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=Animal Planet) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 21/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=Animal Planet +1) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 22/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=Animal Planet HD) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 23/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=ARY News) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 24/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=at the races) -- mode Incremental
[ Debug ] skipped : last show, no next startime to use as stop
[ Info ]
[ Debug ]
[ Info ] ( 25/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=B4U Movies) -- mode Incremental
[Error ] no shows in indexpage!
[ Info ]
[ Debug ]
[ Info ] ( 26/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=Baby TV) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 27/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BBC 1 HD Wales) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 28/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BBC Alba) -- mode Incremental
[ Debug ] skipped : last show, no next startime to use as stop
[ Info ]
[ Debug ]
[ Info ] ( 29/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BBC Entertainment) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 30/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BBC News) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 31/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BBC News HD) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 32/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BBC Oxford DAB) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 33/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BBC Parliament) -- mode Incremental
[ Debug ] skipped : last show, no next startime to use as stop
[ Info ]
[ Debug ]
[ Info ] ( 34/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BBC Red Button 1) -- mode Incremental
[ Debug ] skipped : last show, no next startime to use as stop
[ Info ]
[ Debug ]
[ Info ] ( 35/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BBC Red Button 2) -- mode Incremental
[Error ] no shows in indexpage!
[ Info ]
[ Debug ]
[ Info ] ( 36/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BBC Red Button 3) -- mode Incremental
[Error ] no shows in indexpage!
[ Info ]
[ Debug ]
[ Info ] ( 37/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BBC Red Button 4) -- mode Incremental
[Error ] no shows in indexpage!
[ Info ]
[ Debug ]
[ Info ] ( 38/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BBC Red Button 5) -- mode Incremental
[Error ] no shows in indexpage!
[ Info ]
[ Debug ]
[ Info ] ( 39/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BBC Red Button HD) -- mode Incremental
[Error ] no shows in indexpage!
[ Info ]
[ Debug ]
[ Info ] ( 40/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BBC Sport Interactive BBC1) -- mode Incremental
[Error ] no shows in indexpage!
[ Info ]
[ Debug ]
[ Info ] ( 41/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BBC Sport Interactive BBC2) -- mode Incremental
[Error ] no shows in indexpage!
[ Info ]
[ Debug ]
[ Info ] ( 42/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BBC Sport Interactive BBC3) -- mode Incremental
[Error ] no shows in indexpage!
[ Info ]
[ Debug ]
[ Info ] ( 43/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BBC World News) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 44/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BBC1) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 45/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BBC1 Cambridgeshire) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 46/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BBC1 Channel Islands) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 47/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BBC1 Digital) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 48/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BBC1 East) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 49/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BBC1 East Midlands) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 50/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BBC1 HD) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 51/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BBC1 HD N Ireland) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 52/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BBC1 HD Scotland) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 53/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BBC1 London) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 54/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BBC1 Midlands) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 55/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BBC1 N East) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 56/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BBC1 N Ireland) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 57/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BBC1 N West) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 58/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BBC1 North) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 59/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BBC1 Oxfordshire) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 60/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BBC1 S East) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 61/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BBC1 S West) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 62/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BBC1 Scotland) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 63/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BBC1 Scotland Digital) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 64/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BBC1 South) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 65/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BBC1 Wales) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 66/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BBC1 Wales Digital) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 67/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BBC1 West) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 68/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BBC1 Yorkshire and Lincolnshire) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 69/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BBC2) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 70/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BBC2 East) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 71/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BBC2 East Midlands) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 72/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BBC2 HD) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 73/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BBC2 London) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 74/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BBC2 Midlands) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 75/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BBC2 N East) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 76/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BBC2 N Ireland) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 77/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BBC2 N West) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 78/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BBC2 North) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 79/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BBC2 S East) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 80/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BBC2 S West) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 81/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BBC2 Scotland) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 82/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BBC2 South) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 83/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BBC2 Wales) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 84/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BBC2 West) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 85/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BBC2 West Midlands) -- mode Incremental
[Error ] no shows in indexpage!
[ Info ]
[ Debug ]
[ Info ] ( 86/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BBC4 HD) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 87/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BEN) -- mode Incremental
[Error ] no shows in indexpage!
[ Info ]
[ Debug ]
[ Info ] ( 88/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=Best Direct) -- mode Incremental
[Error ] no shows in indexpage!
[ Info ]
[ Debug ]
[ Info ] ( 89/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BET) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]
[ Info ] ( 90/532 ) TVGUIDE.CO.UK -- chan. (xmltv_id=BET +1) -- mode Incremental
[ Debug ] skipped
[ Info ]
[ Debug ]