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

get.php 404 error PLEASE HELP

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

krxtmp

Extended Member
Ext. Member
Joined
Apr 30, 2020
Messages
9
Reaction score
1
Points
14
Location
Home
it seems you don't have get.php file in your panel's wwwdir folder

Hello!

/home/xtreamcodes/iptv_xtream_codes/wwwdir inside here i can see i have get.php


http://ip:25461/get.php this returns 401

http://ip:25461/get.php?username=username&password=pass&type=m3u_plus&output=hls this returns 404

it might be because of nginx conf? but i didn't change anything.

NGINX.CONF

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

krxtmp

Extended Member
Ext. Member
Joined
Apr 30, 2020
Messages
9
Reaction score
1
Points
14
Location
Home
post error log

PHP:
2020/04/29 20:12:54 [error] 10830#10830: *1 FastCGI sent in stderr: "PHP message: PHP Warning:  file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /home/xtreamcodes/iptv_xtream_codes/admin/functions.php on line 46
PHP message: PHP Warning:  file_get_contents(http://xtreamcodes.org/update/update.php): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /home/xtreamcodes/iptv_xtream_codes/admin/functions.php on line 46" while reading response header from upstream, client: ownip, server: , request: "GET /login.php HTTP/1.1", upstream: "fastcgi://unix:/home/xtreamcodes/iptv_xtream_codes/php/JdlJXm.sock:", host: "ip:25500"
2020/04/29 20:13:02 [error] 10830#10830: *1 FastCGI sent in stderr: "PHP message: PHP Warning:  file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /home/xtreamcodes/iptv_xtream_codes/admin/functions.php on line 46
PHP message: PHP Warning:  file_get_contents(http://xtreamcodes.org/update/update.php): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /home/xtreamcodes/iptv_xtream_codes/admin/functions.php on line 46" while reading response header from upstream, client: ownip, server: , request: "POST /login.php HTTP/1.1", upstream: "fastcgi://unix:/home/xtreamcodes/iptv_xtream_codes/php/CWcfSP.sock:", host: "ip:25500", referrer: "http://ip:25500/login.php"
2020/04/29 20:16:07 [error] 10830#10830: *52 open() "/home/xtreamcodes/iptv_xtream_codes/wwwdir/favicon.ico" failed (2: No such file or directory), client: ownip, server: , request: "GET /favicon.ico HTTP/1.1", host: "ip:25461", referrer: "http://ip:25461/"
2020/04/29 20:22:21 [notice] 19769#19769: signal process started
2020/04/29 20:24:27 [notice] 22230#22230: signal process started
2020/04/29 20:24:36 [error] 22232#22232: *224 open() "/home/xtreamcodes/iptv_xtream_codes/wwwdir/favicon.ico" failed (2: No such file or directory), client: ownip, server: , request: "GET /favicon.ico HTTP/1.1", host: "ip:25461", referrer: "http://ip:25461/"
2020/04/29 20:26:04 [error] 22232#22232: *250 open() "/home/xtreamcodes/iptv_xtream_codes/admin/assets/libs/pdfmake/pdfmake.min.js.map" failed (2: No such file or directory), client: ownip, server: , request: "GET /assets/libs/pdfmake/pdfmake.min.js.map HTTP/1.1", host: "ip:25500"
2020/04/29 20:26:04 [error] 22232#22232: *250 open() "/home/xtreamcodes/iptv_xtream_codes/admin/assets/css/materialdesignicons.css.map" failed (2: No such file or directory), client: ownip, server: , request: "GET /assets/css/materialdesignicons.css.map HTTP/1.1", host: "ip:25500"
2020/04/29 20:28:57 [notice] 679#679: signal process started
2020/04/29 20:28:57 [error] 679#679: open() "/home/xtreamcodes/iptv_xtream_codes/nginx/nginx.pid" failed (2: No such file or directory)
2020/04/29 20:29:01 [notice] 680#680: signal process started
2020/04/29 20:29:01 [error] 680#680: open() "/home/xtreamcodes/iptv_xtream_codes/nginx/nginx.pid" failed (2: No such file or directory)
2020/04/29 20:32:28 [error] 2145#2145: *1 FastCGI sent in stderr: "PHP message: PHP Warning:  file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /home/xtreamcodes/iptv_xtream_codes/admin/functions.php on line 46
PHP message: PHP Warning:  file_get_contents(http://xtreamcodes.org/update/update.php): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /home/xtreamcodes/iptv_xtream_codes/admin/functions.php on line 46" while reading response header from upstream, client: ownip, server: , request: "GET /login.php HTTP/1.1", upstream: "fastcgi://unix:/home/xtreamcodes/iptv_xtream_codes/php/JdlJXm.sock:", host: "ip:25500", referrer: "http://ip:25500/reg_user.php?id=1"
2020/04/29 20:32:30 [error] 2145#2145: *1 FastCGI sent in stderr: "PHP message: PHP Warning:  file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /home/xtreamcodes/iptv_xtream_codes/admin/functions.php on line 46
PHP message: PHP Warning:  file_get_contents(http://xtreamcodes.org/update/update.php): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /home/xtreamcodes/iptv_xtream_codes/admin/functions.php on line 46" while reading response header from upstream, client: ownip, server: , request: "POST /login.php HTTP/1.1", upstream: "fastcgi://unix:/home/xtreamcodes/iptv_xtream_codes/php/CWcfSP.sock:", host: "ip:25500", referrer: "http://ip:25500/login.php"
2020/04/29 20:34:13 [error] 2145#2145: *7 open() "/home/xtreamcodes/iptv_xtream_codes/admin/favicon.ico" failed (2: No such file or directory), client: ownip, server: , request: "GET /favicon.ico HTTP/1.1", host: "ip:25500", referrer: "http://ip:25500/users.php"
2020/04/29 20:34:42 [error] 16279#16279: *1 open() "/home/xtreamcodes/iptv_xtream_codes/admin/favicon.ico" failed (2: No such file or directory), client: ownip, server: , request: "GET /favicon.ico HTTP/1.1", host: "ip:25500", referrer: "http://ip:25500/users.php"
2020/04/29 20:34:42 [error] 16279#16279: *1 open() "/home/xtreamcodes/iptv_xtream_codes/admin/favicon.ico" failed (2: No such file or directory), client: ownip, server: , request: "GET /favicon.ico HTTP/1.1", host: "ip:25500", referrer: "http://ip:25500/users.php"
2020/04/29 20:34:45 [error] 16279#16279: *1 open() "/home/xtreamcodes/iptv_xtream_codes/admin/favicon.ico" failed (2: No such file or directory), client: ownip, server: , request: "GET /favicon.ico HTTP/1.1", host: "ip:25500", referrer: "http://ip:25500/users.php"
2020/04/30 06:07:51 [error] 16889#16889: *107 open() "/home/xtreamcodes/iptv_xtream_codes/admin/favicon.ico" failed (2: No such file or directory), client: ownip, server: , request: "GET /favicon.ico HTTP/1.1", host: "ip:25500", referrer: "http://ip:25500/get.php"
2020/04/30 06:11:34 [error] 16889#16889: *152 open() "/home/xtreamcodes/iptv_xtream_codes/admin/assets/libs/treeview/32px.png" failed (2: No such file or directory), client: ownip, server: , request: "GET /assets/libs/treeview/32px.png HTTP/1.1", host: "ip:25500", referrer: "http://ip:25500/assets/libs/treeview/style.css"
2020/04/30 06:11:36 [error] 16889#16889: *152 FastCGI sent in stderr: "PHP message: PHP Warning:  Invalid argument supplied for foreach() in /home/xtreamcodes/iptv_xtream_codes/admin/stream.php on line 504
PHP message: PHP Warning:  Invalid argument supplied for foreach() in /home/xtreamcodes/iptv_xtream_codes/admin/stream.php on line 516" while reading upstream, client: ownip, server: , request: "POST /stream.php HTTP/1.1", upstream: "fastcgi://unix:/home/xtreamcodes/iptv_xtream_codes/php/JdlJXm.sock:", host: "ip:25500", referrer: "http://ip:25500/stream.php"
 

masterzxz

Extended Member
Ext. Member
Joined
Apr 16, 2020
Messages
15
Reaction score
14
Points
14
Location
Belgium
You're getting alot of PHP errors in there. Are you sure you are running a compatible PHP version, with all necessary modules enabled?
 

Christox

Extended Member
Ext. Member
Joined
Oct 14, 2019
Messages
33
Reaction score
34
Points
29
Location
Luxembourg
I hope u don t use décrypted files u found on the internet ?
 
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
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