Welcome to World of IPTV

With

+23k members
+11k threads
+106k posts

we are the most popular IPTV community on the web. 

IMPORTANT NOTE:
WE HAVE RECENTLY NOTICED THAT TOO MANY DOUBLE FAKE ACCOUNTS ARE CREATED IN THE PAST.
TO PREVENT THIS ISSUE THE DECISION WAS MADE THAT IN THE FUTURE A ANNUALLY FEE 20 EURO WILL BE RAISED FOR NEW MEMBERSHIPS.

Join now to the World of IPTV

Forum Rules

Before you start, check out the forum rules first

Account upgrade

Upgrade your account to get access to full features

Advertising

Would you like to place your advertisement with us ?

Resources Manager

Hundreds of IPTV scripts and apps are available for download
CK Mods v41

Resource CK Mods v41 Mod 41

Register & Get access to index
Status
Not open for further replies.

dtblocker

Banned
Banned
Ext. Member
Joined
Sep 20, 2019
Messages
138
Reaction score
229
Points
54
Location
Mars
Your group has not been set up to create new subresellers yet.

I'm getting this error when creating dealers sub-dealers. I couldn't fix what I did, does anyone have any information?
 
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 @changglobize
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com

codigus

Extended Member
Ext. Member
Joined
Nov 1, 2019
Messages
28
Reaction score
48
Points
29
Location
Portugal
Hi all, after a fresh install in a new server. I can't get ISP's working. Anyone can help me with that?

Thank you
 

skipmack46

Extended Member
Ext. Member
Joined
Dec 22, 2019
Messages
129
Reaction score
70
Points
39
Location
USA
Hi all, after a fresh install in a new server. I can't get ISP's working. Anyone can help me with that?

Thank you
make sure this is in your Nginx config file

#ISP CONFIGURATION

server {
listen 8805;
root /home/xtreamcodes/iptv_xtream_codes/isp/;
location / {
allow 127.0.0.1;
deny all;
}
location ~ \.php$ {
limit_req zone=one burst=8;
try_files $uri =404;
fastcgi_index index.php;
fastcgi_pass php;
include fastcgi_params;
fastcgi_buffering on;
fastcgi_buffers 96 32k;
fastcgi_buffer_size 32k;
fastcgi_max_temp_file_size 0;
fastcgi_keep_conn on;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param SCRIPT_NAME $fastcgi_script_name;
}
}
}
 
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 @changglobize
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com

catalinx3006

Extended Member
Ext. Member
Joined
Oct 5, 2019
Messages
37
Reaction score
57
Points
29
Location
Romania
ISP not work with api
{"status":1,"isp_info":{"description":"","is_server":"0","type":"HOME","country_code":"","country_name":""}}
 

ismail54464

Extended Member
Ext. Member
Joined
Oct 17, 2020
Messages
12
Reaction score
1
Points
14
Location
turkey
bunun Nginx yapılandırma dosyanızda olduğundan emin olun

#İSS YAPILANDIRMASI

sunucu {
8805'i dinle;
root /home/xtreamcodes/iptv_xtream_codes/isp/;
yer / {
127.0.0.1'e izin ver;
Hepsini inkar etmek;
}
konum ~ \.php$ {
limit_req bölgesi=bir patlama=8;
try_files $uri =404;
fastcgi_index index.php;
fastcgi_pass php;
fastcgi_params'ı dahil et;
fastcgi_buffering açık;
fastcgi_buffers 96 32k;
fastcgi_buffer_size 32k;
fastcgi_max_temp_file_size 0;
fastcgi_keep_conn açık;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param SCRIPT_NAME $fastcgi_script_name;
}
}
}
The system sees https as installed. There is an ssl problem. /home/xtreamcodes/iptv_xtream_codes/isp go to api.php and edit clean and write the code below

<?php
if (!empty($_GET["ip"])) {
$ipserver = $_GET["ip"];
function url_result($url)
{
$ch = curl_init();
$userAgent = 'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.2) Gecko/20090729 Firefox/3.5.2 GTB5';
curl_setopt($ch, CURLOPT_USERAGENT, $userAgent);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 30);
curl_setopt($ch, CURLOPT_AUTOREFERER, true);
curl_setopt($ch, CURLOPT_TIMEOUT, 30);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
// curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_ANY);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: text/xml'));
curl_setopt($ch, CURLOPT_HEADER, 0);
$data = curl_exec($ch);
return $data;
}
function get_between($content, $start, $end)
{
$r = explode($start, $content);
if (isset($r[1])) {
$r = explode($end, $r[1]);
return $r[0];
}
return '';
}
function type_name($ttype)
{
if ($ttype == "Proxy Public") {
return "PROXY";
} elseif ($ttype == "DCH") {
return "HOSTING";
} else {
return $ttype;
}
}
$backup = 'apibackup.txt';
$content = file_get_contents($backup);
$boss = strpos($content, "$ipserver =");
$ledebut = "$ipserver = ";
$lafin = "\n";
if ($boss !== false) {
$koko = get_between($content, $ledebut, $lafin);
echo $koko;
} else {
$dataports = url_result("https://awebanalysis.com/fr/ip-lookup/$ipserver/");
$startru = "ISP</b></th>\n <td>";
$endru = '</td>';
$isp = trim(get_between($dataports, $startru, $endru));
$startaaz = "mt2\"></span>";
$endaaz = '</td>';
$countryy = trim(get_between($dataports, $startaaz, $endaaz));
$startaaz22 = "Code CCTLD</td>\n <td>";
$endaaz22 = '</td>';
$countryycode = trim(get_between($dataports, $startaaz22, $endaaz22));
$tvpnproxy = "Proxy détecté";
$startoz = "Type de proxy</b></th>\n <td><b>";
$endoz = '</b>';
if (strpos($dataports, $tvpnproxy)) {
$vpnproxy = '1';
$ttype = trim(get_between($dataports, $startoz, $endoz));
} else {
$vpnproxy = '0';
$ttype = 'HOME';
}
$ayeh = '{"status":1,"isp_info":{"description":"' . $isp . '","is_server":"' . $vpnproxy . '","type":"' . type_name($ttype) . '","country_code":"' . $countryycode . '","country_name":"' . $countryy . '"}}';
echo $ayeh;
$wayy = "$ipserver = $ayeh";
$byte = file_put_contents($backup, $wayy . "\r\n", FILE_APPEND | LOCK_EX);
}
} else {
echo 'come back with an ip';
}
?>
 

ismail54464

Extended Member
Ext. Member
Joined
Oct 17, 2020
Messages
12
Reaction score
1
Points
14
Location
turkey
Hi all, after a fresh install in a new server. I can't get ISP's working. Anyone can help me with that?

Thank you
The system sees https as installed. There is an ssl problem. /home/xtreamcodes/iptv_xtream_codes/isp go to api.php and edit clean and write the code below

<?php
if (!empty($_GET["ip"])) {
$ipserver = $_GET["ip"];
function url_result($url)
{
$ch = curl_init();
$userAgent = 'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.2) Gecko/20090729 Firefox/3.5.2 GTB5';
curl_setopt($ch, CURLOPT_USERAGENT, $userAgent);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 30);
curl_setopt($ch, CURLOPT_AUTOREFERER, true);
curl_setopt($ch, CURLOPT_TIMEOUT, 30);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
// curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_ANY);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: text/xml'));
curl_setopt($ch, CURLOPT_HEADER, 0);
$data = curl_exec($ch);
return $data;
}
function get_between($content, $start, $end)
{
$r = explode($start, $content);
if (isset($r[1])) {
$r = explode($end, $r[1]);
return $r[0];
}
return '';
}
function type_name($ttype)
{
if ($ttype == "Proxy Public") {
return "PROXY";
} elseif ($ttype == "DCH") {
return "HOSTING";
} else {
return $ttype;
}
}
$backup = 'apibackup.txt';
$content = file_get_contents($backup);
$boss = strpos($content, "$ipserver =");
$ledebut = "$ipserver = ";
$lafin = "\n";
if ($boss !== false) {
$koko = get_between($content, $ledebut, $lafin);
echo $koko;
} else {
$dataports = url_result("https://awebanalysis.com/fr/ip-lookup/$ipserver/");
$startru = "ISP</b></th>\n <td>";
$endru = '</td>';
$isp = trim(get_between($dataports, $startru, $endru));
$startaaz = "mt2\"></span>";
$endaaz = '</td>';
$countryy = trim(get_between($dataports, $startaaz, $endaaz));
$startaaz22 = "Code CCTLD</td>\n <td>";
$endaaz22 = '</td>';
$countryycode = trim(get_between($dataports, $startaaz22, $endaaz22));
$tvpnproxy = "Proxy détecté";
$startoz = "Type de proxy</b></th>\n <td><b>";
$endoz = '</b>';
if (strpos($dataports, $tvpnproxy)) {
$vpnproxy = '1';
$ttype = trim(get_between($dataports, $startoz, $endoz));
} else {
$vpnproxy = '0';
$ttype = 'HOME';
}
$ayeh = '{"status":1,"isp_info":{"description":"' . $isp . '","is_server":"' . $vpnproxy . '","type":"' . type_name($ttype) . '","country_code":"' . $countryycode . '","country_name":"' . $countryy . '"}}';
echo $ayeh;
$wayy = "$ipserver = $ayeh";
$byte = file_put_contents($backup, $wayy . "\r\n", FILE_APPEND | LOCK_EX);
}
} else {
echo 'come back with an ip';
}
?>
 
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 @changglobize
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com

obra

Extended Member
Ext. Member
Joined
Sep 22, 2019
Messages
31
Reaction score
147
Points
44
Location
egypt
hello all
how i can install mods ck41 in ubuntu 20
 

magtv

Extended Member
Ext. Member
Joined
Oct 20, 2019
Messages
191
Reaction score
66
Points
39
Location
Germany
probléme isp ban clien
 
Last edited:

ahabib

Banned
Banned
Ext. Member
Joined
Sep 19, 2019
Messages
93
Reaction score
352
Points
64
Location
hab021ALJ
probléme stream stoped automatic
Hello Guys

Which one had same problem so on 22:00 hour?
I have OVH Main Server....

The problem chronology:
1. Streams Stop on LB automatically.. (update geolite Main+LB and restart LB +Main not work)
After the problem solve by itself, nobody know why.. the second..
2. Users are diasble automaticlly.. i have enabel manually and the user automaticlly go Disable..

To solve the problem i have make a restore from a day before i had make.. The backup make my Night :)

What a f*** is this.. you think someone control Xtreamui mod41?
Or all from OVH where have MAIN have this problem?

Can someone share this experience?

Thanks for all ideas..
 
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 @changglobize
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com

magtv

Extended Member
Ext. Member
Joined
Oct 20, 2019
Messages
191
Reaction score
66
Points
39
Location
Germany
probléme isp ban clien

Hello Guys

Which one had same problem so on 22:00 hour?
I have OVH Main Server....

The problem chronology:
1. Streams Stop on LB automatically.. (update geolite Main+LB and restart LB +Main not work)
After the problem solve by itself, nobody know why.. the second..
2. Users are diasble automaticlly.. i have enabel manually and the user automaticlly go Disable..

To solve the problem i have make a restore from a day before i had make.. The backup make my Night :)

What a f*** is this.. you think someone control Xtreamui mod41?
Or all from OVH where have MAIN have this problem?

Can someone share this experience?

Thanks for all ideas..
yes all Users are diasble automaticlly
 

tegustalatele

Extended Member
Ext. Member
Joined
Sep 26, 2019
Messages
26
Reaction score
13
Points
14
Location
SPAIN
Hello Guys

Which one had same problem so on 22:00 hour?
I have OVH Main Server....

The problem chronology:
1. Streams Stop on LB automatically.. (update geolite Main+LB and restart LB +Main not work)
After the problem solve by itself, nobody know why.. the second..
2. Users are diasble automaticlly.. i have enabel manually and the user automaticlly go Disable..

To solve the problem i have make a restore from a day before i had make.. The backup make my Night :)

What a f*** is this.. you think someone control Xtreamui mod41?
Or all from OVH where have MAIN have this problem?

Can someone share this experience?

Thanks for all ideas..
same problem, first the streams were stopped, then many on demand and finally all users were disabled
 

adilos

Extended Member
Ext. Member
Joined
Sep 23, 2019
Messages
55
Reaction score
166
Points
44
Location
malaga
same problem, first the streams were stopped, then many on demand and finally all users were disabled
there is an issue on modified xtraem ui panel versions anyone have user and password for a normal user can connect to database he cant delete it but he can change stream status to on demand or stopped or disable all users
 
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 @changglobize
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com

Delta19

Extended Member
Ext. Member
Joined
Sep 26, 2019
Messages
274
Reaction score
362
Points
74
Location
near home
also same issue and hoop @cesarkrespo wil give us maybe some explination...


the issue is really not normal....is a big hack on it of wat!?

regards
 
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 @changglobize
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com

sc0tsman

Extended Member
Ext. Member
Joined
Sep 19, 2019
Messages
653
Reaction score
826
Points
104
Location
spain
Good morning all, has this project come to an end, no further updates?
 

lenske

Extended Member
Ext. Member
Joined
Sep 25, 2019
Messages
100
Reaction score
205
Points
54
Location
albania
hi @cesarkrespo thanks for great features..is it possible in next update add the feature auto useragent block for mac or m3u? it i think i t will help leaked macs not working for stealers..thanks for all...
 
Status
Not open for further replies.
shape1
shape2
shape3
shape4
shape5
shape6
Top
AdBlock Detected

We know, ad-blocking software do a great job at blocking ads. But our site is sponsored by advertising. 

For the best possible site experience please take a moment to disable your AdBlocker.
You can create a Account with us or if you already have account, you can prefer an Account Upgrade.

I've Disabled AdBlock