Welcome to World of IPTV

Join us now to get access to all our features. Once registered and logged in, you will be able to create topics, post replies to existing threads, give reputation to your fellow members, get your own private messenger, and so, so much more. It's also quick and totally free, so what are you waiting for?

Forum Rules

Our Rules: Read to avoid getting banned!

Advertising

Introduce Yourself to the World with Us!

Resource Database

Find the newest resources around IPTV!

Account upgrade

Upgrade your account to unlock more benefits!
CK Mods v41

Resource CK Mods v41 Mod 41

Register & Get access to index
Status
Not open for further replies.
Does anyone know why folder watch isn’t showing TV categories?
attached image below

copy the command and go to settings, database and send.

Code:
DROP TABLE IF EXISTS `watch_categories`;
CREATE TABLE `watch_categories` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `type` int(1) NOT NULL DEFAULT 0,
  `genre_id` int(8) NOT NULL DEFAULT 0,
  `genre` varchar(64) NOT NULL DEFAULT '',
  `category_id` int(8) NOT NULL DEFAULT 0,
  `bouquets` varchar(4096) NOT NULL DEFAULT '[]',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=63 DEFAULT CHARSET=latin1;

/*!40000 ALTER TABLE `watch_categories` DISABLE KEYS */;
INSERT INTO `watch_categories` VALUES ('1','1','28','Action','0',''),('2','1','12','Adventure','0',''),('3','1','16','Animation','0',''),('4','1','35','Comedy','0',''),('5','1','80','Crime','0',''),('6','1','99','Documentary','0',''),('7','1','18','Drama','0',''),('8','1','10751','Family','0',''),('9','1','14','Fantasy','0',''),('10','1','36','History','0',''),('11','1','27','Horror','0',''),('12','1','10402','Music','0',''),('13','1','9648','Mystery','0',''),('14','1','10749','Romance','0',''),('15','1','878','Science Fiction','0',''),('16','1','10770','TV Movie','0',''),('17','1','53','Thriller','0',''),('18','1','10752','War','0',''),('19','1','37','Western','0',''),('20','2','28','Action','0','[]'),('21','2','12','Adventure','0','[]'),('22','2','16','Animation','0','[]'),('23','2','35','Comedy','0','[]'),('24','2','80','Crime','0','[]'),('25','2','99','Documentary','0','[]'),('26','2','18','Drama','0','[]'),('27','2','10751','Family','0','[]'),('28','2','14','Fantasy','0','[]'),('29','2','36','History','0','[]'),('30','2','27','Horror','0','[]'),('31','2','10402','Music','0','[]'),('32','2','9648','Mystery','0','[]'),('33','2','10749','Romance','0','[]'),('34','2','878','Science Fiction','0','[]'),('35','2','10770','TV Movie','0','[]'),('36','2','53','Thriller','0','[]'),('37','2','10752','War','0','[]'),('38','2','37','Western','0','[]'),('39','1','10759','Action & Adventure','0','[]'),('40','2','10759','Action & Adventure','0','[]'),('47','1','10762','Kids','0','[]'),('48','2','10762','Kids','0','[]'),('50','1','10763','News','0','[]'),('51','2','10763','News','0','[]'),('52','1','10764','Reality','0','[]'),('53','2','10764','Reality','0','[]'),('54','1','10765','Sci-Fi & Fantasy','0','[]'),('55','2','10765','Sci-Fi & Fantasy','0','[]'),('56','1','10766','Soap','0','[]'),('57','2','10766','Soap','0','[]'),('58','1','10767','Talk','0','[]'),('59','2','10767','Talk','0','[]'),('60','1','10768','War & Politics','0','[]'),('61','2','10768','War & Politics','0','[]');
/*!40000 ALTER TABLE `watch_categories` ENABLE KEYS */;

 
Last edited:
copy the command and go to settings, database and send.

Code:
DROP TABLE IF EXISTS watch_categories;
CREATE TABLE watch_categories (
  id int(11) NOT NULL AUTO_INCREMENT,
  type int(1) NOT NULL DEFAULT '0',
  genre_id int(8) NOT NULL DEFAULT '0',
  genre varchar(64) NOT NULL DEFAULT '',
  category_id int(8) NOT NULL DEFAULT '0',
  bouquets varchar(4096) NOT NULL DEFAULT '[]',
  PRIMARY KEY (id)
) ENGINE=InnoDB AUTO_INCREMENT=62 DEFAULT CHARSET=latin1;

/*!40000 ALTER TABLE watch_categories DISABLE KEYS */;
INSERT INTO watch_categories VALUES ('1','1','28','Action','0',''),('2','1','12','Adventure','0',''),('3','1','16','Animation','0',''),('4','1','35','Comedy','0',''),('5','1','80','Crime','0',''),('6','1','99','Documentary','0',''),('7','1','18','Drama','0',''),('8','1','10751','Family','0',''),('9','1','14','Fantasy','0',''),('10','1','36','History','0',''),('11','1','27','Horror','0',''),('12','1','10402','Music','0',''),('13','1','9648','Mystery','0',''),('14','1','10749','Romance','0',''),('15','1','878','Science Fiction','0',''),('16','1','10770','TV Movie','0',''),('17','1','53','Thriller','0',''),('18','1','10752','War','0',''),('19','1','37','Western','0',''),('20','2','28','Action','0',''),('21','2','12','Aventure','0',''),('22','2','16','Animation','0',''),('23','2','35','Comédie','0',''),('24','2','80','Crime','0',''),('25','2','99','Documentaire','0',''),('26','2','18','Drame','0',''),('27','2','10751','Familial','0',''),('28','2','14','Fantastique','0',''),('29','2','36','Histoire','0',''),('30','2','27','Horreur','0',''),('31','2','10402','Musique','0',''),('32','2','9648','Mystère','0',''),('33','2','10749','Romance','0',''),('34','2','878','Science-Fiction','0',''),('35','2','10770','Téléfilm','0',''),('36','2','53','Thriller','0',''),('37','2','10752','Guerre','0',''),('38','2','37','Western','0',''),('39','1','10759','Action & Adventure','0',''),('40','2','10759','Action & Adventure','0',''),('47','1','10762','Kids','0',''),('48','2','10762','Kids','0',''),('50','1','10763','News','0',''),('51','2','10763','News','0',''),('52','1','10764','Reality','0',''),('53','2','10764','Reality','0',''),('54','1','10765','Science-Fiction & Fantastique','0',''),('55','2','10765','Science-Fiction & Fantastique','0',''),('56','1','10766','Soap','0',''),('57','2','10766','Soap','0',''),('58','1','10767','Talk','0',''),('59','2','10767','Talk','0',''),('60','1','10768','War & Politics','0',''),('61','2','10768','War & Politics','0','');
/*!40000 ALTER TABLE watch_categories ENABLE KEYS */;

WORKED THANKS.
 
Channels MatchTime Unblock CDN Offshore Server Contact
100 cnx / 90€ 5Gbps / 180€ 48CPU-256GRAM 10Gbps 569€ Skype live:giefsl
500 cnx / 350€ 10Gbps / 350€ 48CPU-128GRAM 5Gbps / 349€ TG @changcdn
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com
What's new in Update 11! Download all series must be added
 
Channels MatchTime Unblock CDN Offshore Server Contact
100 cnx / 90€ 5Gbps / 180€ 48CPU-256GRAM 10Gbps 569€ Skype live:giefsl
500 cnx / 350€ 10Gbps / 350€ 48CPU-128GRAM 5Gbps / 349€ TG @changcdn
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com
UPDATE

Uvblbh1.png
 
Last edited:
Channels MatchTime Unblock CDN Offshore Server Contact
100 cnx / 90€ 5Gbps / 180€ 48CPU-256GRAM 10Gbps 569€ Skype live:giefsl
500 cnx / 350€ 10Gbps / 350€ 48CPU-128GRAM 5Gbps / 349€ TG @changcdn
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com
what you mean with thad ?
Updated xpcom.commonjs file ....
 
Channels MatchTime Unblock CDN Offshore Server Contact
100 cnx / 90€ 5Gbps / 180€ 48CPU-256GRAM 10Gbps 569€ Skype live:giefsl
500 cnx / 350€ 10Gbps / 350€ 48CPU-128GRAM 5Gbps / 349€ TG @changcdn
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com
Great contribution to the community I appreciate yr work .
I just was testing yr latest mods 11 and latest 12 , can you please confirm if after adding radio station category is empty slot on the radio categories page ..
They are not here ..
But here are ok ...
strange ordering on database ...
 
Channels MatchTime Unblock CDN Offshore Server Contact
100 cnx / 90€ 5Gbps / 180€ 48CPU-256GRAM 10Gbps 569€ Skype live:giefsl
500 cnx / 350€ 10Gbps / 350€ 48CPU-128GRAM 5Gbps / 349€ TG @changcdn
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com
Great contribution to the community I appreciate yr work .
I just was testing yr latest mods 11 and latest 12 , can you please confirm if after adding radio station category is empty slot on the radio categories page ..
They are not here ..

But here are ok ...

strange ordering on database ...

error categories

for those who have already done the update launch the command manually and it is resolved ... for those who have not yet done the update to version 12 do not need to do manual because I already corrected it in the update - solved

 
Last edited:
error categories

for those who have already done the update launch the command manually and it is resolved ... for those who have not yet done the update to version 12 do not need to do manual because I already corrected it in the update - solved
Thank you King Cesar you have done the job properly now is all ok ...
 
Btw I want ask you after I saw Iptvextream on list of iptv apps ..
Is this service secure to use ?????
 
Channels MatchTime Unblock CDN Offshore Server Contact
100 cnx / 90€ 5Gbps / 180€ 48CPU-256GRAM 10Gbps 569€ Skype live:giefsl
500 cnx / 350€ 10Gbps / 350€ 48CPU-128GRAM 5Gbps / 349€ TG @changcdn
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com
Thankyou on yr reply ..
dont hurry on my suggestions , take easy only when you see is something danger to fix ,those from my suggestions are not ..but they will be better if they come ok ..
After I add some new category always is come number 99 in ordering tab , do you know why is this happen and how can be fixed ...
just look

this is not an error, if you change the one with 99, it will generate another number
 
Status
Not open for further replies.
shape1
shape2
shape3
shape4
shape5
shape6
Back
Top