Results 1 to 9 of 9
  1. #1
    Member
    Join Date
    Jul 2015
    Location
    yes i do
    Posts
    96
    Rep Power
    14

    Unhappy Portal is not working on Video Addon :(

    Plz help. When I open the portal it not loading.

    When I use a play channel from pre added favorite it showing this

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
    <html>
    <head>
    <script type="text/javascript">
    this.loadRequiredFiles = function (callback) {
    var scripts = ['version.js', 'global.js', 'JsHttpRequest.js', 'keydown.keycodes.js', 'keydown.observer.js', 'watchdog.js', 'usbdisk.js', 'load_bar.js', 'xpcom.common.js', 'xpcom.webkit.js', 'blocking.js', 'player.js'];
    var filesloaded = 0;
    var filestoload = scripts.length;
    var i = 0;
    onLoadScript();

    function finishLoad() {
    //console.log('Loading finish');
    if (filesloaded === filestoload) {
    //console.log('Load callback');
    callback();
    }
    }

    function onLoadScript() {
    if ( i < scripts.length){
    //console.log('Loading script ' + scripts[i]);
    var script = document.createElement('script');
    script.type = 'text/javascript';
    script.src = scripts[i];
    script.onload = function () {
    //console.log('Loaded script ' + scripts[i]);
    filesloaded++; // (This means increment, i.e. add one)
    i++;
    onLoadScript();
    };
    document.head.appendChild(script);
    } else {
    finishLoad();
    }
    }
    };
    </script>
    <title>stalker_portal</title>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">

    <!--debug-->
    <!--<script type="text/javascript" src="http://192.168.1.71:8000/target/target-script-min.js#azhurb"></script>-->

    <script type="text/javascript" defer="defer">

    var debug = 0;
    var stb;
    var _GET = {};
    //var gmode = '';
    var resolution_prefix = '';

    var module = module || {};
    var word = {};
    var windowId;
    var focus_module = '', referrer = '', single_module = [];

    window.loadRequiredFiles(load_base);

    function load_base(){
    //console.log('Loading load_base');
    window.onerror = function(msg, url, lno){
    _debug('line: '+lno+'; msg: "'+msg+'" url: '+url);
    return true;
    };
    get_params();

    if (_GET.hasOwnProperty('debug')){
    debug = 1;
    }

    if (_GET.hasOwnProperty('referrer')){
    referrer = decodeURIComponent(_GET['referrer']);
    }

    if (_GET.hasOwnProperty('single_module')){
    single_module = _GET['single_module'].split(',');
    }

    if (_GET && _GET.hasOwnProperty('focus_module')){
    focus_module = _GET['focus_module'];
    }
    init();
    }
    /*window.onload = init;*/

    var loader = {

    chain : [],
    cur_idx : -1,
    head : document.getElementsByTagName("head")[0],
    max_load_percent : 50,
    step : 0,
    template : 'default',

    set_template : function(template){
    _debug('loader.set_template', template);
    this.template = template;
    },

    add : function(modules){
    _debug('loader.add');

    modules = modules || [];

    this.cur_idx = -1;

    for (var i=0; i<modules.length; i++){
    if (this.chain.indexOf(modules[i]) >= 0){
    modules.splice(i, 1);
    }
    }

    this.chain = modules;

    this.step = Math.ceil(this.max_load_percent/this.chain.length);

    this.next();
    },

    next : function(){
    _debug('loader.next');

    if (this.cur_idx < this.chain.length-1){
    this.cur_idx++;
    this.append(this.chain[this.cur_idx]);
    }
    },

    append : function(module){
    _debug('loader.append');

    stb.loader.add_pos(this.step, 'append '+module);

    this.append_style(module);

    this.append_javascript(module);
    },

    append_style : function(module){
    _debug('loader.append_style', module);

    if (module.indexOf('external_') === 0){
    _debug('skip style loading', module);
    return;
    }

    var _style = document.createElement('link');
    _style.type = "text/css";
    _style.rel = "stylesheet";

    if (module.indexOf('supermodule') > 0){
    _style.href = module + resolution_prefix +".css&single_module="+single_module.join(',');
    }else{
    _style.href = 'template/' + this.template + '/' + module + resolution_prefix +".css";
    }

    this.head.appendChild(_style);
    _debug('append', _style.href);
    },

    append_javascript : function(module){
    _debug('loader.append_javascript', module);

    var _script = document.createElement('script');
    _script.type = "text/javascript";
    if (module.indexOf('supermodule') > 0){
    _script.src = module + ".js&single_module="+single_module.join(',');
    }else{
    if (module.indexOf('external_') === 0){

    /*var idx = stb.all_modules.indexOf(module);

    if (idx !== -1){
    stb.all_modules[idx] = module.replace('external_','');
    }*/

    _script.src = '../server/api/ext_module.php?name='+module.replace('external_', '')+'&mac='+stb.mac;
    }else{
    _script.src = module + ".js";
    }
    }

    _script.onerror = function() {
    _debug('Error loading script', _script.src);
    loader.next();
    };

    this.head.appendChild(_script);
    _debug('append', _script.src);
    }
    };

    /**
    * Init STB.
    */
    function init(){
    _debug('init');

    if (typeof(gSTB) == 'undefined'){
    if (window.innerWidth > 720){
    resolution_prefix = '_720';
    }else if (window.innerHeight < 576){
    resolution_prefix = '_480';
    }else{
    resolution_prefix = '';
    }
    }else{
    stb.check_graphic_res();
    }

    if (typeof(stbWebWindow) != 'undefined'){
    windowId = stbWebWindow.windowId();
    }

    _debug('windowId', windowId);

    if (_GET && _GET.hasOwnProperty('access_token')){
    stb.access_token = _GET['access_token'];
    }

    _debug('_GET', _GET);

    /*if (typeof(gSTB) != 'undefined'){
    if (gSTB.RDir('gmode') != 720){
    gmode = '720';
    }
    }else{
    if (window.innerWidth > 720){
    gmode = '720';
    }
    }

    if (gmode){
    img_prefix = '_'+gmode;
    }

    window.moveTo(0, 0);

    if (gmode == '720'){
    window.resizeTo(1280, 720);
    }else{
    window.resizeTo(720, 576);
    }*/

    stb.loader = new load_bar();
    stb.loader.bind();

    stb.loader.set_callback(
    function(){
    stb.post_loading_handle();
    }
    );

    stb.init();

    (function(){

    if (stb.player.on){

    if (stb.player.con_menu && stb.player.con_menu.on){
    stb.player.con_menu.hide();
    }

    if(single_module.length){
    if (stb.player.on){
    stb.player.show_prev_layer();
    }
    return;
    }

    stb.player.prev_layer && stb.player.prev_layer.hide && stb.player.prev_layer.hide();

    if (stb.player.on){
    stb.player.stop();
    }

    main_menu.show();
    }

    }).bind(key.MENU);

    (function(){

    _debug('stb.cur_single_module', stb.cur_single_module);

    if (single_module.length && (single_module.indexOf('tv') == -1 || stb.cur_single_module != 'tv')){
    return;
    }

    if (!stb.player.channels || stb.player.channels.length == 0){
    return;

    }

    stb.cur_layer && stb.cur_layer.hide && stb.cur_layer.hide();

    if (module && module.tv){
    stb.set_cur_place(module.tv.layer_name);
    stb.set_cur_layer(module.tv);
    }

    if (!module.blocking.on){
    stb.player.play_last();
    }

    }).bind(key.TV);

    (function(){
    if (module.radio && !module.radio.on){

    keydown_observer.emulate_key(key.MENU);

    main_menu.hide();
    module.radio.show();
    module.radio.cur_view = 'short';

    module.radio.shift_row_callback = function(){
    module.radio.play();
    module.radio.shift_row_callback = null;
    module.radio.cur_view = 'wide';
    };
    }
    }).bind(key.AUDIO);

    keydown_observer.addCustomEventListener("keypress" , function(event){

    if (stb.power_off && event.key != key.USB_MOUNTED && event.key != key.USB_UNMOUNTED){
    stb.switchPower();
    return false;
    }

    return true;
    });

    (function(){

    stb.switchPower();

    }).bind(key.POWER);

    /* END LAYER MANAGEMENT */

    }

    </script>

    </head>
    <body>
    <!--<img src="i/loading_bg.gif" width="0" height="0"/>
    <img src="i/loading.png" width="0" height="0"/>-->
    </body>
    </html>

  2. #2
    Junoir Member
    Join Date
    Feb 2016
    Location
    i do
    Posts
    8
    Rep Power
    0

    Same here as of tonight

    Same here - any help please

  3. #3
    Farmer At Work Farmer1's Avatar
    Join Date
    Dec 2014
    Location
    Yes i do
    Posts
    5,308
    Rep Power
    248
    read this it may shed some light on the problem http://iptvtalk.net/showthread.php?2...164#post179164

    they are working to get this issue under control
    Two of the greatest qualities
    to have in live are:

    PATIENCE
    and
    WISDOM

  4. #4
    Member
    Join Date
    Jul 2015
    Location
    yes i do
    Posts
    96
    Rep Power
    14
    Quote Originally Posted by Farmer1 View Post
    read this it may shed some light on the problem http://iptvtalk.net/showthread.php?2...164#post179164

    they are working to get this issue under control
    They wanna make a compatible addon first. Then wanna change this thing. But they doing every change first and put all customers down. At least they must provide new api info.

  5. #5
    Warrior
    Join Date
    Feb 2015
    Posts
    257
    Rep Power
    59
    that it is correct we the costumer lose or days of sup waiting for a fix of a problem that they make

  6. #6
    Junoir Member
    Join Date
    Nov 2014
    Posts
    4
    Rep Power
    0
    having same problem on stalker plus

  7. #7
    Farmer At Work Farmer1's Avatar
    Join Date
    Dec 2014
    Location
    Yes i do
    Posts
    5,308
    Rep Power
    248
    Quote Originally Posted by suport View Post
    that it is correct we the costumer lose or days of sup waiting for a fix of a problem that they make
    what you said is true but it is you the customer that is always asking for less freezing and less channels down

    well this is progress and with progress comes a little pain
    Two of the greatest qualities
    to have in live are:

    PATIENCE
    and
    WISDOM

  8. #8
    Warrior
    Join Date
    Feb 2015
    Posts
    257
    Rep Power
    59
    it is been a wild that i don't make comments about anything and the reason everybody now so thanks any way

  9. #9
    Junoir Member
    Join Date
    Feb 2016
    Location
    i do
    Posts
    8
    Rep Power
    0

    papiao email states that I / we are to get help from you on this website for this pro

    I have contacted papiao of this matter and they seem clueless. Stated they have reset my account and that if I need further help with this matter to come here - well I am still here waiting with no answers as of yet. See original email below

    We Resetted your service in our end, please reboot your box and check, if this issue persist please visit our tech forum for guides and help, our staff would galdly help you:

    http://iptvtalk.net/

    Best Regards.
    PapiaoTV Staff.


    El 27/2/17 a las 10:55 p. m., IKSRocket Contact Form escribió:
    > Order #
    >
    > Just started tonight. Using IPTV Stalker Plus addon v10.3.4r6. When ever I try to open any channel I get strange error message like "
    > http://iptvtalk.net/showthread.php?2...hlight=doctype
    >
    > FWI - On windows 7, Kodi 16.(latest)
    >
    > This E-Mail was sent from IKSRocket Contact Form.
    Last edited by Farmer1; 02-28-2017 at 11:29 PM. Reason: links to other sites

 

 

Similar Threads

  1. YouTube Video Addon Updated
    By Shooty in forum Addons & Repositories
    Replies: 2
    Last Post: 05-14-2020, 08:31 PM
  2. Video Addon Icons
    By joe645 in forum Kodi Discussion
    Replies: 9
    Last Post: 12-19-2017, 02:24 AM
  3. Sanctuary - Video Addon
    By Kimbo in forum Reviews
    Replies: 4
    Last Post: 01-15-2017, 01:34 AM
  4. Metalkettle New Video Addon: Watch1080
    By Kimbo in forum Addons & Repositories
    Replies: 21
    Last Post: 02-28-2016, 03:29 PM
  5. Video freezing on every addon
    By asesinopr in forum Kodi Discussion
    Replies: 4
    Last Post: 01-27-2016, 04:33 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •