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.

blackmamba05

Extended Member
Ext. Member
Joined
Dec 19, 2020
Messages
60
Reaction score
11
Points
19
Age
47
Location
italy
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
 

malychino

Extended Member
Ext. Member
Joined
Nov 14, 2019
Messages
109
Reaction score
89
Points
39
Location
Nowher
@cesarkrespo
could it be made in the Live by Country code to show the IP where the connection is from?
Thanks

HAugYp.png
 

Alex2021

Extended Member
Ext. Member
Joined
Jan 20, 2020
Messages
45
Reaction score
27
Points
29
Location
france
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 @changglobize
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com

malychino

Extended Member
Ext. Member
Joined
Nov 14, 2019
Messages
109
Reaction score
89
Points
39
Location
Nowher
you have to first
sudo /home/xtreamcodes/iptv_xtream_codes/nginx/sbin/nginx -s reload
THEN RESTART SERVICES
 

joelonlyne

Extended Member
Ext. Member
Joined
May 29, 2020
Messages
142
Reaction score
633
Points
104
Location
Usa
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
 

Alex2021

Extended Member
Ext. Member
Joined
Jan 20, 2020
Messages
45
Reaction score
27
Points
29
Location
france
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 @changglobize
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com

joelonlyne

Extended Member
Ext. Member
Joined
May 29, 2020
Messages
142
Reaction score
633
Points
104
Location
Usa
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!

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

Alex2021

Extended Member
Ext. Member
Joined
Jan 20, 2020
Messages
45
Reaction score
27
Points
29
Location
france
Complete code taken from nginx.conf file from cersar mod panel

Good look!

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

Fringe

Extended Member
Ext. Member
Joined
Sep 21, 2019
Messages
113
Reaction score
192
Points
54
Location
USA
@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 @changglobize
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com

Swisso

Extended Member
Ext. Member
Joined
Oct 6, 2019
Messages
104
Reaction score
303
Points
74
Location
CH
How to limit the download speed of two Vod ?
I think it is also a configuration in nginx,Can someone help please
 

Servers58393

Basic Member
Basic Member
Joined
Jan 24, 2021
Messages
7
Reaction score
2
Points
4
Location
Nowhere
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?!
 

log247

Extended Member
Ext. Member
Joined
Sep 27, 2019
Messages
29
Reaction score
24
Points
14
Location
Pakistan, Islamabad
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 @changglobize
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com

kartel

Extended Member
Ext. Member
Joined
Aug 23, 2019
Messages
129
Reaction score
212
Points
54
Location
world
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

 

cesarkrespo

Banned
Banned
Ext. Member
Joined
Oct 2, 2019
Messages
378
Reaction score
4,757
Points
104
Location
In the world
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
 

gzowner

Extended Member
Ext. Member
Joined
Mar 14, 2020
Messages
160
Reaction score
342
Points
74
Location
home
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 @changglobize
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com

ChickenWarrior

Extended Member
Ext. Member
Joined
Sep 23, 2019
Messages
510
Reaction score
927
Points
104
Location
USA
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
 

steloo71

Extended Member
Ext. Member
Joined
Sep 22, 2019
Messages
119
Reaction score
429
Points
74
Location
Uk
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
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