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.
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?
 
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?
Read the error. It tells you that your group settings are the issue.
 
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
does mag 522 work for anyone on this version?
 
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
 
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 @changcdn
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com
ISP not work with api
{"status":1,"isp_info":{"description":"","is_server":"0","type":"HOME","country_code":"","country_name":""}}
 
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';
}
?>
 
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 @changcdn
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com
hello all
how i can install mods ck41 in ubuntu 20
 
probléme isp ban clien
 
Last edited:
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 @changcdn
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com
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
 
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
 
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 @changcdn
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com
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 @changcdn
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com
Good morning all, has this project come to an end, no further updates?
 
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
Back
Top