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.
https://ibb.co/kSckNYs

bug report
when you load a tv series or movie and navigate through the folders, if you go back to the parent directory from this image as if there was nothing.
thank you
 
@cesarkrespo
could it be made in the Live by Country code to show the IP where the connection is from?
Thanks

HAugYp.png
 
MANAGE SERVERS > EDIT MAIN SERVER > ISP PORT > SET ONLY 8805 > SAVE


PANEL SETTINGS > STREAMING > ENABLE ISPS > TURN ON

ADD THIS TO MAIN SERVER nginx.conf file at /home/xtreamcodes/iptv_xtream_codes/nginx/conf below http { line:

#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;
}
}


THEN RESTART SERVICES & THANK ME LATER :)

bro i delete nothing just i put this code on nginx.conf and but after i cant restart the panel and not work any idea 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
you have to first
sudo /home/xtreamcodes/iptv_xtream_codes/nginx/sbin/nginx -s reload
THEN RESTART SERVICES
 
Hi Cesar,

Can you provide files updates release by version.

In case we want downgrade an update or whatever.

Like this:
update_18.zip
update_17.zip

and so on...

Thanks
Joe
 
you have to first
sudo /home/xtreamcodes/iptv_xtream_codes/nginx/sbin/nginx -s reload
THEN RESTART SERVICES
1. add code
886.png


2. reload
88.png

sudo /home/xtreamcodes/iptv_xtream_codes/nginx/sbin/nginx -s reload
 
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
1. add code
886.png


2. reload
88.png

sudo /home/xtreamcodes/iptv_xtream_codes/nginx/sbin/nginx -s reload
Complete code taken from nginx.conf file from cersar mod panel

Good look!

Code:
user  xtreamcodes;
worker_processes  auto;

worker_rlimit_nofile 300000;
events {
    worker_connections  16000;
    use epoll;
        accept_mutex on;
        multi_accept on;
}
thread_pool pool_xtream threads=32 max_queue=0;
http {

    include       mime.types;
    default_type  application/octet-stream;

    sendfile           on;
    tcp_nopush         on;
    tcp_nodelay        on;
        reset_timedout_connection on;
    gzip off;
    fastcgi_read_timeout 200;
        access_log off;
        keepalive_timeout 10;
        include balance.conf;
        send_timeout 20m;
        sendfile_max_chunk 512k;
        lingering_close off;
        aio threads=pool_xtream;
        client_body_timeout 13s;
        client_header_timeout 13s;
        client_max_body_size 3m;

        limit_req_zone $binary_remote_addr zone=one:30m rate=20r/s;
    server {
        listen 25461;listen 25463 ssl;ssl_certificate server.crt;ssl_certificate_key server.key; ssl_protocols SSLv3 TLSv1.1 TLSv1.2;
        index index.php index.html index.htm;
        root /home/xtreamcodes/iptv_xtream_codes/wwwdir/;
        server_tokens off;
        chunked_transfer_encoding off;

                if ( $request_method !~ ^(GET|POST)$ ) {
                        return 200;
                }

        rewrite_log on;
        rewrite ^/live/(.*)/(.*)/(.*)\.(.*)$ /streaming/clients_live.php?username=$1&password=$2&stream=$3&extension=$4 break;
        rewrite ^/movie/(.*)/(.*)/(.*)$ /streaming/clients_movie.php?username=$1&password=$2&stream=$3&type=movie break;
                rewrite ^/series/(.*)/(.*)/(.*)$ /streaming/clients_movie.php?username=$1&password=$2&stream=$3&type=series break;
        rewrite ^/(.*)/(.*)/(.*).ch$ /streaming/clients_live.php?username=$1&password=$2&stream=$3&extension=ts break;
        rewrite ^/(.*)\.ch$ /streaming/clients_live.php?extension=ts&stream=$1&qs=$query_string break;
        rewrite ^/ch(.*)\.m3u8$ /streaming/clients_live.php?extension=m3u8&stream=$1&qs=$query_string break;
                rewrite ^/hls/(.*)/(.*)/(.*)/(.*)/(.*)$ /streaming/clients_live.php?extension=m3u8&username=$1&password=$2&stream=$3&type=hls&segment=$5&token=$4 break;
                rewrite ^/hlsr/(.*)/(.*)/(.*)/(.*)/(.*)/(.*)$ /streaming/clients_live.php?token=$1&username=$2&password=$3&segment=$6&stream=$4&key_seg=$5 break;
                rewrite ^/timeshift/(.*)/(.*)/(.*)/(.*)/(.*)\.(.*)$ /streaming/timeshift.php?username=$1&password=$2&stream=$5&extension=$6&duration=$3&start=$4 break;
                rewrite ^/timeshifts/(.*)/(.*)/(.*)/(.*)/(.*)\.(.*)$ /streaming/timeshift.php?username=$1&password=$2&stream=$4&extension=$6&duration=$3&start=$5 break;

                rewrite ^/(.*)/(.*)/(\d+)$ /streaming/clients_live.php?username=$1&password=$2&stream=$3&extension=ts break;
                #add pvr support
                rewrite ^/server/load.php$ /portal.php break;

                location /stalker_portal/c {
                        alias /home/xtreamcodes/iptv_xtream_codes/wwwdir/c;
                }

                #FFmpeg Report Progress
                location = /progress.php {
                    allow 127.0.0.1;
                        deny all;
                        fastcgi_pass php;
                        include fastcgi_params;
                        fastcgi_ignore_client_abort on;                        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
                        fastcgi_param SCRIPT_NAME $fastcgi_script_name;
                }


        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;
        }
    }

    server {
        listen 25500;
        index index.php index.html index.htm;
        root /home/xtreamcodes/iptv_xtream_codes/admin/;

        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;
        }
    }
#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;
        }
    }
 
Complete code taken from nginx.conf file from cersar mod panel

Good look!

Code:
user  xtreamcodes;
worker_processes  auto;

worker_rlimit_nofile 300000;
events {
    worker_connections  16000;
    use epoll;
        accept_mutex on;
        multi_accept on;
}
thread_pool pool_xtream threads=32 max_queue=0;
http {

    include       mime.types;
    default_type  application/octet-stream;

    sendfile           on;
    tcp_nopush         on;
    tcp_nodelay        on;
        reset_timedout_connection on;
    gzip off;
    fastcgi_read_timeout 200;
        access_log off;
        keepalive_timeout 10;
        include balance.conf;
        send_timeout 20m;
        sendfile_max_chunk 512k;
        lingering_close off;
        aio threads=pool_xtream;
        client_body_timeout 13s;
        client_header_timeout 13s;
        client_max_body_size 3m;

        limit_req_zone $binary_remote_addr zone=one:30m rate=20r/s;
    server {
        listen 25461;listen 25463 ssl;ssl_certificate server.crt;ssl_certificate_key server.key; ssl_protocols SSLv3 TLSv1.1 TLSv1.2;
        index index.php index.html index.htm;
        root /home/xtreamcodes/iptv_xtream_codes/wwwdir/;
        server_tokens off;
        chunked_transfer_encoding off;

                if ( $request_method !~ ^(GET|POST)$ ) {
                        return 200;
                }

        rewrite_log on;
        rewrite ^/live/(.*)/(.*)/(.*)\.(.*)$ /streaming/clients_live.php?username=$1&password=$2&stream=$3&extension=$4 break;
        rewrite ^/movie/(.*)/(.*)/(.*)$ /streaming/clients_movie.php?username=$1&password=$2&stream=$3&type=movie break;
                rewrite ^/series/(.*)/(.*)/(.*)$ /streaming/clients_movie.php?username=$1&password=$2&stream=$3&type=series break;
        rewrite ^/(.*)/(.*)/(.*).ch$ /streaming/clients_live.php?username=$1&password=$2&stream=$3&extension=ts break;
        rewrite ^/(.*)\.ch$ /streaming/clients_live.php?extension=ts&stream=$1&qs=$query_string break;
        rewrite ^/ch(.*)\.m3u8$ /streaming/clients_live.php?extension=m3u8&stream=$1&qs=$query_string break;
                rewrite ^/hls/(.*)/(.*)/(.*)/(.*)/(.*)$ /streaming/clients_live.php?extension=m3u8&username=$1&password=$2&stream=$3&type=hls&segment=$5&token=$4 break;
                rewrite ^/hlsr/(.*)/(.*)/(.*)/(.*)/(.*)/(.*)$ /streaming/clients_live.php?token=$1&username=$2&password=$3&segment=$6&stream=$4&key_seg=$5 break;
                rewrite ^/timeshift/(.*)/(.*)/(.*)/(.*)/(.*)\.(.*)$ /streaming/timeshift.php?username=$1&password=$2&stream=$5&extension=$6&duration=$3&start=$4 break;
                rewrite ^/timeshifts/(.*)/(.*)/(.*)/(.*)/(.*)\.(.*)$ /streaming/timeshift.php?username=$1&password=$2&stream=$4&extension=$6&duration=$3&start=$5 break;

                rewrite ^/(.*)/(.*)/(\d+)$ /streaming/clients_live.php?username=$1&password=$2&stream=$3&extension=ts break;
                #add pvr support
                rewrite ^/server/load.php$ /portal.php break;

                location /stalker_portal/c {
                        alias /home/xtreamcodes/iptv_xtream_codes/wwwdir/c;
                }

                #FFmpeg Report Progress
                location = /progress.php {
                    allow 127.0.0.1;
                        deny all;
                        fastcgi_pass php;
                        include fastcgi_params;
                        fastcgi_ignore_client_abort on;                        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
                        fastcgi_param SCRIPT_NAME $fastcgi_script_name;
                }


        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;
        }
    }

    server {
        listen 25500;
        index index.php index.html index.htm;
        root /home/xtreamcodes/iptv_xtream_codes/admin/;

        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;
        }
    }
#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;
        }
    }
thank you very much bro helpfull you are great ;)
 
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
@cesarkrespo

Just a suggestion but would you consider adding a button to the 'Registered users' page that would allow admin to login to the resellers panel. It would make it easier to access a resellers panel if they need help or report an 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
How to limit the download speed of two Vod ?
I think it is also a configuration in nginx,Can someone help please
 
Hi,
Sorry if already been mentioned but couldn't find anything.
When I try to do anything with a stream I just get "an error has occured"
Has anyone got a solution?!
 
hi the automatically backup source dont working.
back link dont working any more when i update to latest mod 18 can you guys please check whats exactly the problem.

i try to reboot the source to switch to other source but it dont working it don't switching to other backup source.
only the first source works again and again once reboot to want to switch to 2nd source.

can you please give me any fix i already posted but no reply so far.
thanks you
 
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
hi the automatically backup source dont working.
back link dont working any more when i update to latest mod 18 can you guys please check whats exactly the problem.

i try to reboot the source to switch to other source but it dont working it don't switching to other backup source.
only the first source works again and again once reboot to want to switch to 2nd source.

can you please give me any fix i already posted but no reply so far.
thanks you
in settings disable
Priority Backup Stream

 
hi the automatically backup source dont working.
back link dont working any more when i update to latest mod 18 can you guys please check whats exactly the problem.

i try to reboot the source to switch to other source but it dont working it don't switching to other backup source.
only the first source works again and again once reboot to want to switch to 2nd source.

can you please give me any fix i already posted but no reply so far.
thanks you
only works if you have 2 sources

test
 
IMPORTANT

- first download the command to install the mods

- after installed it is mandatory to make full remake of the main for all options to work

- don't forget clear browser cache


thing you should be aware of:

1

if you have problems with updates go in the Main /etc/sudoers and modify

xtreamcodes ALL=(root) NOPASSWD: /sbin/iptables

to look like this:

xtreamcodes ALL=(root) NOPASSWD: /sbin/iptables, /usr/bin/chattr

2
go to /home/xtreamcodes/iptv_xtream_codes/adtools/balancer if you have any .json in that folder delect

3
when doing Full Remake on Main or Balance wait whenever the operation is finished to do it again (all done calm ... Rome is not built in a day)

4
password cannot contain odd characters like ?.

Getting error when epg..
/home/xtreamcodes/iptv_xtream_codes/crons/epg.php: line 1: ?php: No such file or directory
/home/xtreamcodes/iptv_xtream_codes/crons/epg.php: line 2: syntax error near unexpected token `'ionCube Loader''
/home/xtreamcodes/iptv_xtream_codes/crons/epg.php: line 2: `if(!extension_loaded('ionCube Loader')){$__oc=strtolower(substr(php_uname(),0,3));$__ln='ioncube_loader_'.$__oc.'_'.substr(phpversion(),0,3).(($__oc=='win')?'.dll':'.so');if(function_exists('dl')){@dl($__ln);}if(function_exists('_il_exec')){return _il_exec();}$__ln='/ioncube/'.$__ln;$__oid=$__id=realpath(ini_get('extension_dir'));$__here=dirname(__FILE__);if(strlen($__id)>1&&$__id[1]==':'){$__id=str_replace('\\','/',substr($__id,2));$__here=str_replace('\\','/',substr($__here,2));}$__rd=str_repeat('/..',substr_count($__id,'/')).$__here.'/';$__i=strlen($__rd);while($__i--){if($__rd[$__i]=='/'){$__lp=substr($__rd,0,$__i).$__ln;if(file_exists($__oid.$__lp)){$__ln=$__lp;break;}}}if(function_exists('dl')){@dl($__ln);}}else{die('The file '.__FILE__." is corrupted. Ensure that you use binary mode when transferring files with FTP and disable the 'TAR smart cr/lf feature' if using WinZIP\n");}if(function_exists('_il_exec')){return _il_exec();}echo("Site error: the ".(php_sapi_name()=='cli'?'ionCube':'<a href="http://www.ioncube.com">ionCube</a>')." PHP Loader needs to be installed. This is a widely used PHP extension for running ionCube protected PHP code, website security and malware blocking.\n\nPlease visit ".(php_sapi_name()=='cli'?'get-loader.ioncube.com':'<a href="http://get-loader.ioncube.com">get-loader.ioncube.com</a>')." for install assistance.\n\n");exit(199);'
 
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
Getting error when epg..
/home/xtreamcodes/iptv_xtream_codes/crons/epg.php: line 1: ?php: No such file or directory
/home/xtreamcodes/iptv_xtream_codes/crons/epg.php: line 2: syntax error near unexpected token `'ionCube Loader''
/home/xtreamcodes/iptv_xtream_codes/crons/epg.php: line 2: `if(!extension_loaded('ionCube Loader')){$__oc=strtolower(substr(php_uname(),0,3));$__ln='ioncube_loader_'.$__oc.'_'.substr(phpversion(),0,3).(($__oc=='win')?'.dll':'.so');if(function_exists('dl')){@dl($__ln);}if(function_exists('_il_exec')){return _il_exec();}$__ln='/ioncube/'.$__ln;$__oid=$__id=realpath(ini_get('extension_dir'));$__here=dirname(__FILE__);if(strlen($__id)>1&&$__id[1]==':'){$__id=str_replace('\\','/',substr($__id,2));$__here=str_replace('\\','/',substr($__here,2));}$__rd=str_repeat('/..',substr_count($__id,'/')).$__here.'/';$__i=strlen($__rd);while($__i--){if($__rd[$__i]=='/'){$__lp=substr($__rd,0,$__i).$__ln;if(file_exists($__oid.$__lp)){$__ln=$__lp;break;}}}if(function_exists('dl')){@dl($__ln);}}else{die('The file '.__FILE__." is corrupted. Ensure that you use binary mode when transferring files with FTP and disable the 'TAR smart cr/lf feature' if using WinZIP\n");}if(function_exists('_il_exec')){return _il_exec();}echo("Site error: the ".(php_sapi_name()=='cli'?'ionCube':'<a href="http://www.ioncube.com">ionCube</a>')." PHP Loader needs to be installed. This is a widely used PHP extension for running ionCube protected PHP code, website security and malware blocking.\n\nPlease visit ".(php_sapi_name()=='cli'?'get-loader.ioncube.com':'<a href="http://get-loader.ioncube.com">get-loader.ioncube.com</a>')." for install assistance.\n\n");exit(199);'
If reading the error correctly you need to install ioncube loader
 
Hi on my main now I get this ..


chown: changing ownership of '/sys/class/net/venet0': Operation not permitted


chown: changing ownership of '/sys/class/net/lo': Operation not permitted


chown: changing ownership of '/sys/class/net': Operation not permitted
 
Status
Not open for further replies.
shape1
shape2
shape3
shape4
shape5
shape6
Back
Top