43 pagesV  « < 38 39 40 41 42 43 > »  
 
REPLY
> Ministra TV (IPTV / OTT service) | [IPTV] Ministra (formerly Stalker MiddleWare)
zhyk_magadan
Message#1
04.01.18, 08:15
Old resident
*******
[offline]

Group: Banned
Messages 1092
Check in: 13.05.15
Samsung Galaxy A5 (2017) SM-A520F / DS

Reputation:-  295  +

Ministra TV (IPTV / OTT service) (formerly MW Stalker)

Rules of the topic (be sure to read: rtfm :)

Screenshots
Stalker classic
Attached Image

Smart launcher
Attached Image

Admin ministra
Attached Image
Attached Image


Theme description:

Ministra- this is the service with which you can create your own providerIPTV. Ministra is owned by the companyInformir. It can be created at home, or in a commercial organization.

References:Wiki Infomir website
Infoworld in the Google Group

Installation Instructions
Preparing to install
System requirements
[b] At home:
  • VM Ubuntu Server 14.04 (amd64)
  • Any processor (x64)
  • the Internet


In a commercial organization:
  1. For server
    1. 2xXeon5620
    2. 16 GB RAM
    3. 2x500 GB HDD
    4. Ubuntu 14.04 Server (x64)

  2. To save content
    1. 2xXeon5620
    2. 16 GB RAM
    3. 2x 2TB
    4. Ubuntu 14.04 Server (x64), 16.04



Preparing VirtualBox for installation
Install with these settings:
  • 1 GB RAM
  • 2 TB dynamic disk
  • Network bridge with router over LAN or WiFi
  • When you install, you are presented with a window on which additional component to install. Choose "OpenSSH Server "


Start Ubuntu Server
Installed!? Now enter the username and password that you gave during the installation. Then we enter the command:
ifconfig

This team we learn the configuration of the interfaces of the Internet. Now we have interfaces writtenloandeth0. If you have installed a network bridge with a router, then in the line IP it will be written like192.168.xxx.xxxwhere xxx are different numbers of ip addresses. This address is memorized, and go to PuTTY. We enter our IP, and the connection type is SSH. Click "Connect", and the window about the bad quality of the certificate is displayed. This we miss, and press YES.

Attention, this instruction is written below to install Ministra on ubuntu 14.04. To avoid dancing with a tambourine, there is an installation instruction on ubuntu 16.04HERE!
Installation in parts
Part 1. Basic package installation
Well, we are already in PuTTY, and he is already waiting for our team. Ministra not only requires a specific OS, but also packages. Naturally we need a root. To get it, enter:
sudo -s

Next, enter your login password, and you are already in the root. Update links to repositories:
apt-get update

Next, update all the packages:
apt-get upgrade

Now we will install all packages with one command:
sudo apt-get update && sudo apt-get -y upgrade && sudo apt-get install -y -u apache2 nginx memcached mysql-server php5 php5-mysql php pear jpeg jpeg upstart && sudo pear install -Z phing / phing

We are waiting, and at some point the window "Think up a password for the root user MySQL" looks out. We come up with a password. We are waiting for pumping ...
Now we need to download and unzip the zip archive. But first, install the unzip archive unpacker:
apt-get install unzip

All set.
Now go to our directory:
cd / var / www /

Next, we download any version of ministra in our header. You can download for example ministra-5.3.0.zip. We first download to our computer, then connect via FileZilla via SFTP to our server. And swing it in / var / www.
Then unpack it:
unzip ministra-5.3.0.zip

Checking:
ls -al

Peeps folderinfomirgroup-stalker_portal-2feec3a9f374
. Let's rename this folder to stalker_portal:
mv infomirgroup-stalker_portal-2feec3a9f374 stalker_portal

Check with the command:
ls -al

Is done. Now we need to create a MySQL user with access rights only to the stalker_db database.
Go to MySQL:
mysql -uroot -p

Enter the password that we gave when installing packages for ministra.
Now we enter it:
create database stalker_db;

Then:
GRANT ALL PRIVILEGES ON stalker_db. * TO stalker @ localhost IDENTIFIED BY '1' WITH GRANT OPTION;

Done, exit the program:
exit

Now we need to create a custom.ini file to indicate additional settings.
We need to work a little!
Do not edit the config.ini file! If you want to change some settings, create a custom.ini file and add the necessary configuration to it.

Let's start !!!
Install MC Commander:
apt-get install mc

Enter Commander mc:
mc

Looks like a similar Volkov Commander with two windows. Okay, go to the directory/ var / www / stalker_portal / server /and here we see several files, but we need a config.ini file
Create a custom.ini file
touch custom.ini

You can further customizeweather(link is clickable) and see]custom.ini settings
Then we go to:
cd / var / www / stalker_portal / deploy /

and enter:
sudo phing

And we expect that this procedure may take a long time or less, and during this time you can go and drink tea with butter and bread)))
The first part is over !!!

Part 2. Setting up MySQL, PHP, Node.js, Apache, Nginx
Now you need to configure the components to Ministra. This is MySQL, PHP, etc.
I will explain in order:
MySQL:To enter
echo "max_allowed_packet = 32M">>/etc/mysql/my.cnf
PHP:Enable mod_mcrypt
First enter this:
php5enmod mcrypt

Then this:
echo "short_open_tag = On">>/etc/php5/apache2/php.ini

Node.JS: You need to make sure that the correct daemon_api_url and stalker_api_url values ​​are set in the config.ini and custom.ini
Apache:Enable mod_rewrite
a2enmod rewrite

Make sure that the libapache2-mod-php5filter package is not installed on the system. If necessary, remove it.
apt-get purge libapache2-mod-php5filter

Then delete the contents of the file 000-default.conf
cat / dev / null>/etc/apache2/sites-available/000-default.conf

Add the following content to the file 000-default.conf
<VirtualHost *: 88>
ServerAdmin webmaster @ localhost
DocumentRoot / var / www
<Directory / var / www / stalker_portal />
Options -Indexes -MultiViews
AllowOverride ALL
Require all granted
</ Directory>
ErrorLog $ {APACHE_LOG_DIR} /error.log
CustomLog $ {APACHE_LOG_DIR} /access.log combined
</ Virtualhost>

Then we start mc, go to /etc/apache2/ports.conf, and in line 80 we change to listen 88
Listen 88

Restart apache:
service apache2 restart

Nginx:We go to the file / etc / nginx / sites-available / default, and look at the example of the nginx config, simply further configure it in its own way, or delete all the contents of this file, and enter this:
server
{listen 80; server_name localhost;
location / {proxy_pass http://127.0.0.1:88/;
proxy_set_header Host $ host: $ server_port;
proxy_set_header X-Real-IP $ remote_addr;
}
location ~ * \. (htm | html | jpeg | jpg | gif | png | css | js) $
{root / var / www; expires 30d;
}
}

Reboot nginx:
service nginx restart

Admin interface will be available by URL/ stalker_portal / "target =" _blank "> http: //<your_ip_or_domain_name>/ stalker_portal /

.
Access to the admin interface by default:
login: admin
password: 1.
Recommended browser for the admin interface: - Mozilla Firefox, Google Chrome.



If necessary, the password can be changed in MySQL:
update administrators set pass = MD5 ('new password') where login = 'admin'

Client side will be available by URL/stalker_portal/c/index.html "target =" _blank "> http: //<your_ip_or_dom ... er_portal / c / index.html

.
In STB, the URL of the client part of the portal is set to - System Settings ⇒ Servers ⇒ (Portal1 and / or Portal2). Environment variables - portal1, portal2.

If you go to the browser, enter that domain, and you have "HTTP ERROR 500", then there may be some kind of error. Looking at the apache logs, you will see that it cannot detect the autoload.php file.
Let's see this file along the path / var / www / stalker_portal / admin / vendor /
At the root of the folder should be the file autoload.php
If not, then the composer may not have worked during phing due to its obsolescence. Let's update it, but if we update it without the swap creation command, it will produce proc_open failed errors. To avoid this, we create a paging file. Enter:
/ bin / dd if = / dev / zero of = / var / swap.1 bs = 1M count = 1024

Then you need to activate:
/ sbin / mkswap /var/swap.1

And activate the other side:
/ sbin / swapon /var/swap.1

Then we go to the directory / deploy /
cd / var / www / stalker_portal / deploy /

And again we enter enter:
sudo phing

Everything, we enter the address in the browser, login and the password and all !!!

Instructions, manuals, miscellaneous

Download Ministra
Read before downloading.how to download zip archive in ubuntu server
Version 5.3.0: ministra-5.3.0.zip
Version 5.4.0: stalker_portal-5.4.0.zip
Version 5.5.0: ministra-5.5.0.zip
Older versions
Version 5.2.0: stalker_portal-5.2.0.zip
Version 5.1.1: stalker_portal_5.1.1.zip
Version 5.0.3 DEMO: Stalker for vm

Topics Curator: zhyk_magadan


Post has been editedzhyk_magadan - 02.12.18, 01:01
Reason for editing: Enabling system settings in new versions of Ministra
anvaro96
Message#782
28.02.19, 09:18
Local
*****
[offline]

Group: Friendssavagemessiahzine.com
Messages 166
Check in: 26.02.16
Samsung Galaxy A5 (2016) SM-A510F

Reputation:-  8  +

* Sacrament84, I installed a separate piece of hardware, the portal was separate and the storage was separate, but the same garbage
Dina20
Message#783
28.02.19, 12:12
Novice
***
[offline]

Group: Active users
Messages 35
Check in: 25.11.15
Huawei Y600

Reputation:-  1  +

Can someone help with setting up archives and temporary nginx links. I want to give up asters. I’ve replaced the user's personal account, registration, authorization, payment of the tariff and the user’s info in Lux, login and password, email, tariff and how long the tariff is valid for and password recovery.

Post has been editedDina20 - 28.02.19, 12:14
Sacrament84
Message#784
28.02.19, 17:08
Local
*****
[offline]

Group: Friendssavagemessiahzine.com
Messages 374
Check in: 26.02.11
Xiaomi Mi 5S 3/64

Reputation:-  12  +

I will not help with the archive, and temporary links are easy.
l.dee
Message#785
02.03.19, 12:06
a guest
*
[offline]

Group: Users
Messages 3
Check in: 25.05.16

Reputation:-  0  +

Someone tell me, put the portal v 5.5.0 anew, everything works except for the smart launcher, the prefix (mag254 & mag 250) tries to log in for a long time, after which the exhaust on the screen "your prefix is ​​not supported"
while the exhaust and the Apache is:
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 11 +0300] "GET / HTTP / 1.0" 200 413 "-" "Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML , like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 11 +0300] "GET /stalker_portal/server/api/load_js.php HTTP / 1.0" 200 707 "http://192.168.88.111/stalker_portal/c /index.html "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 13 +0300] "GET /stalker_portal/server/load.php?type=stb&action=handshake&token=&prehash=false&JsHttpRequest=1-xml HTTP / 1.0" 200 594 "http://192.168.88.111/stalker_portal/c/index.html" "Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 13 +0300] "GET /stalker_portal/server/load.php?type=stb&action=get_profile&hd=1&ver=ImageDescription:%200.2.18-r23-250; % 20ImageDate:% 20Thu% 20Sep% 2013% 2011: 31: 16% 20EEST% 202018;% 20PORTAL% 20version:% 205.5.0;% 20API% 20Version:% 20JS% 20API% 20version:% 20343;% 20STB% 20API% 20version:% 20146;% 20Player% 20Engine% 20version:% 200x58c & num_banks = 2 & sn = 122011A005768 & stb_type = MAG250 & client_type = STB & image_version = 218 & video_out = hdmi & device_id = 210FFC44C3AAFCC994476AD369ECB4BE54CE88B5F08D995EAB7FD3B75102DC7D & device_id2 = 56A7BDE51056CA14C3627EC7DF134B0BF23EE0E3FB9B3710F6218E3865548FDA & signature = 6723CF8A5BF2041E58FF0F96A05BDC021F3C1DF814E07637F4C8CF96BC5CDBA3 & auth_second_step = 0 & hw_version = 1.5-BD-00¬_valid_token = 0 & metrics =% 7B% 22mac% 22% 3A% 2200% 3A1A% 3A79% 3A02% 3A9E% 3A76% 22% 2C% 22sn% 22% 3A% 22122011A005768% 22% 2C% 22model% 22% 3A% 22MAG250% 22% 2C% 22type% 22% 3A% 22STB% 22% 2C% 22uid% 22% 3A% 2256A7BDE51056CA14C3627EC7DF134B0BF23EE0E3FB9B3710F6218E3865548FDA% 22% 2C% 22random% 22% 3A% 22a5140852de2a1dd1cf5db fecdfc41e55d9ccee5aec4319c99b5b0483% 22% 7D & hw_version_2 = 5c252c5e0cdf34c6af0ba4c497ededa6d03b1706 × tamp = 1551515348 & api_signature = 236 & prehash = false & JsHttpRequest = 1-xml HTTP / 1.0 "200 5263" http://192.168.88.111/stalker_portal/c/index.html "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 13 +0300] "GET /stalker_portal/server/load.php?type=stb&action=get_localization&JsHttpRequest=1-xml HTTP / 1.0" 200 46091 "http: / /192.168.88.111/stalker_portal/c/index.html "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 14 +0300] "GET /stalker_portal/server/load.php?type=stb&action=7G_load_images&gmode=720&JsHttpRequest=1-xml HTTP / 1.0" 200 8338 "http : //192.168.88.111/stalker_portal/c/index.html "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 14 +0300] "GET /stalker_portal/server/load.php?type=itv&action=fact_fav_ids&force_ch_link_check=&JsHttpRequest=1-xml HTTP / 1.0" 200 470 "http : //192.168.88.111/stalker_portal/c/index.html "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 14 +0300] "GET /stalker_portal/server/load.php?type=stb&action=get_modules&JsHttpRequest=1-xml HTTP / 1.0" 200 1778 "http: / /192.168.88.111/stalker_portal/c/index.html "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 14 +0300] "GET /stalker_portal/server/load.php?type=itv&action=get_all_fav_channels&fav=1&force_ch_link_check=&JsHttpRequest=1-xml HTTP / 1.0" discontinued by user / account_ch_lib "http://192.168.88.111/stalker_portal/c/index.html" "Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 14 +0300] "GET /stalker_portal/server/load.php?type=itv&action=get_all_channels&force_ch_link_check=&JsHttpRequest=1-xml HTTP / 1.0" 200 2124 "http : //192.168.88.111/stalker_portal/c/index.html "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 14 +0300] "GET /stalker_portal/server/load.php?type=itv&action=get_epg_info&period=5&JsHttpRequest=1-xml HTTP / 1.0" 200 486 "http : //192.168.88.111/stalker_portal/c/index.html "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 14 +0300] "GET /stalker_portal/server/load.php?type=remote_pvr&action=get_active_recordings&JsHttpRequest=1-xml HTTP / 1.0" 200 470 "http: / /192.168.88.111/stalker_portal/c/index.html "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 14 +0300] "GET /stalker_portal/server/load.php?type=watchdog&action=get_events&cur_play_type=0&event_active_id=0&init=1&JsHttpRequest=1-app. 200 516 "http://192.168.88.111/stalker_portal/c/index.html" "Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 15 +0300] "GET /stalker_launcher_apps/magcore-core-ministra/3.8.4/app/?config=http%3A%2F%2F192.168.88. 111% 3A80% 2F% 2Fstalker_portal% 2F% 2Fserver% 2Fapi% 2Flauncher_profile.php% 3Fuid% 3D2% 26language% 3Dru% 26_% 3D1551515349124 HTTP / 1.0 "200 1137" http://192.168.88.111/stalker_alactal html "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 15 +0300] "GET /stalker_portal/server/api/launcher_profile.php?uid=2&language=ru__1551515349124 HTTP / 1.0" 200 33196 "http: / /192.168.88.111:80/stalker_launcher_apps/magcore-core-ministra/3.8.4/app/?config=http%3A%2F%2F192.168.88.111%3A80%2F%2Fstalker_portal%2F22Fserver22Fapi2F2iFF22FF22Fstalker_portal%2FF22F192.168.88.111%3A80%2F%2Fstalker_portal_2.2FF22F192.168.81.1% php% 3Fuid% 3D2% 26language% 3Dru% 26_% 3D1551515349124 "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp Ver: 6 rev: 1a90f4f Mobile Safari / 533.3
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 16 +0300] "GET /stalker_portal/server/api/theme_css.php?uid=2&resolution=720.css&_=1551515356720.css HTTP / 1.0" 307 321 "http://192.168.88.111:80/stalker_launcher_apps/magcore-core-ministra/3.8.4/app/?config=http%3A%2F%2F192.168.88.111%3A80%2F%2Fstalker_portal%2F22Fserver% 2Fapi% 2Flauncher_profile.php% 3Fuid% 3D2% 26language% 3Dru% 26_% 3D1551515349124 "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) /533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 16 +0300] "GET /stalker_launcher_apps/plugins/magcore-plugin-settings-standby/0.1.8/app/lang/en.json HTTP / 1.0" 200 1262 "http://192.168.88.111:80/stalker_launcher_apps/magcore-core-ministra/3.8.4/app/?config=http%3A%2F%2F192.168.88.111%3A80%2F%2Fstalker_portal%2F% 2Fserver% 2Fapi% 2Flauncher_profile.php% 3Fuid% 3D2% 26language% 3Dru% 26_% 3D1551515349124 "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 chsh, like you, I want it, I want to change it, I need it, I need it, I need it to have it. Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 17 +0300] "GET /stalker_launcher_apps/plugins/magcore-plugin-settings-screen-saver/0.0.13/app/lang/en.json http / 1.0 "200 1163" http://192.168.88.111:80/stalker_launcher_apps/magcore-core-ministra/3.8.4/app/?config=http%3A%2F%2F192.168.88.111%3A80%2F%2Fstalker_portal% 2F% 2Fserver% 2Fapi% 2Flauncher_profile.php% 3Fuid% 3D2% 26language% 3Dru% 26_% 3D1551515349124 "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAGU : 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 17 +0300] "GET /stalker_launcher_apps/plugins/magcore-plugin-updater/0.0.31/app/lang/ru.json HTTP / 1.0" 200 1007 "http://192.168.88.111:80/stalker_launcher_apps/magcore-core-ministra/3.8.4/app/?config=http%3A%2F%2F192.168.88.111%3A80%2F%2Fstalker_portal%2F22Fserver% 2Fapi% 2Flauncher_profile.php% 3Fuid% 3D2% 26language% 3Dru% 26_% 3D1551515349124 "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) /533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 18 +0300] "GET /stalker_launcher_apps/plugins/magcore-plugin-settings-apd/0.0.11/app/lang/ru.json HTTP / 1.0" 200 1206 "http://192.168.88.111:80/stalker_launcher_apps/magcore-core-ministra/3.8.4/app/?config=http%3A%2F%2F192.168.88.111%3A80%2F%2Fstalker_portal%2F% 2Fserver% 2Fapi% 2Flauncher_profile.php% 3Fuid% 3D2% 26language% 3Dru% 26_% 3D1551515349124 "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 chsh, like you, I want it, I want to change it, I need it, I need it, I need it to have it. Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 18 +0300] "GET /stalker_launcher_apps/plugins/magcore-plugin-settings-hdmi-reaction/0.0.13/app/lang/ru.json HTTP / 1.0 "200 913" http://192.168.88.111:80/stalker_launcher_apps/magcore-core-ministra/3.8.4/app/?config=http%3A%2F%2F192.168.88.111%3A80%2F%2Fstalker_portal% 2F% 2Fserver% 2Fapi% 2Flauncher_profile.php% 3Fuid% 3D2% 26language% 3Dru% 26_% 3D1551515349124 "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAGU : 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 18 +0300] "GET /stalker_launcher_apps/plugins/magcore-plugin-playback/1.3.4/app/lang/ru.json HTTP / 1.0" 200 3116 "http://192.168.88.111:80/stalker_launcher_apps/magcore-core-ministra/3.8.4/app/?config=http%3A%2F%2F192.168.88.111%3A80%2F%2Fstalker_portal%2F22Fserver% 2Fapi% 2Flauncher_profile.php% 3Fuid% 3D2% 26language% 3Dru% 26_% 3D1551515349124 "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) /533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 18 +0300] "GET /stalker_launcher_apps/plugins/magcore-plugin-settings-network-speedtest/0.0.13/app/lang/ru.json HTTP / 1.0 "200 760" http://192.168.88.111:80/stalker_launcher_apps/magcore-core-ministra/3.8.4/app/?config=http%3A%2F%2F192.168.88.111%3A80%2F%2Fstalker_portal% 2F% 2Fserver% 2Fapi% 2Flauncher_profile.php% 3Fuid% 3D2% 26language% 3Dru% 26_% 3D1551515349124 "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAGU : 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 19 +0300] "GET /stalker_launcher_apps/magcore-app-auth-stalker/3.6.6/app/lang/ru.json HTTP / 1.0" 200 4343 "http://192.168.88.111:80/stalker_launcher_apps/magcore-app-auth-stalker/3.6.6/app/index.html" "Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 19 +0300] "GET /stalker_portal/server/api/sap.php?version=1.0.1 HTTP / 1.0" 200 6452 "http: //192.168 .88.111: 80 / stalker_launcher_apps / magcore-app-auth-stalker / 3.6.6 / app / index.html "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver : 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 19 +0300] "GET / stalker_portal / api / v3 / users / 2 / ping HTTP / 1.0" 200 289 "http://192.168.88.111:80 /stalker_launcher_apps/magcore-app-auth-stalker/3.6.6/app/index.html "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 19 +0300] "GET / stalker_portal / api / v3 / storage / applications / storage HTTP / 1.0" 200 306 "http://192.168.88.111:80 /stalker_launcher_apps/magcore-app-auth-stalker/3.6.6/app/index.html "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 19 +0300] "GET /stalker_portal/server/api/launcher_profile.php?language=en&uid=2 HTTP / 1.0" 200 33113 "http: //192.168 .88.111: 80 / stalker_launcher_apps / magcore-app-auth-stalker / 3.6.6 / app / index.html "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver : 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 19 +0300] "GET / stalker_portal / api / v3 / users / 2 / settings HTTP / 1.0" 200 3496 "http://192.168.88.111:80 /stalker_launcher_apps/magcore-app-auth-stalker/3.6.6/app/index.html "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 19 +0300] "GET /stalker_portal/server/api/theme_css.php?uid=2&_=1551515353958&resolution=720 HTTP / 1.0" 307 321 "http: / /192.168.88.111:80/stalker_launcher_apps/magcore-app-auth-stalker/3.6.6/app/index.html "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 20 +0300] "GET /stalker_portal/api/v3/tv-channels?limit=500&t=1551515354.189 HTTP / 1.0" 200 840 "http: //192.168 .88.111: 80 / stalker_launcher_apps / magcore-app-auth-stalker / 3.6.6 / app / index.html "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver : 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 20 +0300] "GET / stalker_portal / c / HTTP / 1.0" 200 2662 "http://192.168.88.111:80/stalker_launcher_apps/magcore-core- ministra / 3.8.4 / app /? config = http% 3A% 2F% 2F192.168.88.111% 3A80% 2F% 2Fstalker_portal% 2F% 2Fserver% 2Fapi% 2Flauncher_profile.php% 3Fid% 3D2% 26language% 3Dru% 26_% 3D155155 "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 20 +0300] "GET /stalker_portal/server/api/load_js.php HTTP / 1.0" 200 707 "http://192.168.88.111:80/stalker_portal / c / "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 22 +0300] "GET /stalker_portal/server/load.php?type=stb&action=handshake&token=&prehash=false&JsHttpRequest=1-xml HTTP / 1.0" 200 594 "http://192.168.88.111:80/stalker_portal/c/" "Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 23 +0300] "GET /stalker_portal/server/load.php?type=stb&action=get_profile&hd=1&ver=ImageDescription:%200.2.18-r23-250; % 20ImageDate:% 20Thu% 20Sep% 2013% 2011: 31: 16% 20EEST% 202018;% 20PORTAL% 20version:% 205.5.0;% 20API% 20Version:% 20JS% 20API% 20version:% 20343;% 20STB% 20API% 20version:% 20146;% 20Player% 20Engine% 20version:% 200x58c & num_banks = 2 & sn = 122011A005768 & stb_type = MAG250 & client_type = STB & image_version = 218 & video_out = hdmi & device_id = 210FFC44C3AAFCC994476AD369ECB4BE54CE88B5F08D995EAB7FD3B75102DC7D & device_id2 = 56A7BDE51056CA14C3627EC7DF134B0BF23EE0E3FB9B3710F6218E3865548FDA & signature = 6723CF8A5BF2041E58FF0F96A05BDC021F3C1DF814E07637F4C8CF96BC5CDBA3 & auth_second_step = 0 & hw_version = 1.5-BD-00¬_valid_token = 0 & metrics =% 7B% 22mac% 22% 3A% 2200% 3A1A% 3A79% 3A02% 3A9E% 3A76% 22% 2C% 22sn% 22% 3A% 22122011A005768% 22% 2C% 22model% 22% 3A% 22MAG250% 22% 2C% 22type% 22% 3A% 22STB% 22% 2C% 22uid% 22% 3A% 2256A7BDE51056CA14C3627EC7DF134B0BF23EE0E3FB9B3710F6218E3865548FDA% 22% 2C% 22random% 22% 3A% 22a5140852de2a1dd1cf5db fecdfc41e55d9ccee5aec4319c99b5b0483% 22% 7D & hw_version_2 = 5c252c5e0cdf34c6af0ba4c497ededa6d03b1706 × tamp = 1551515357 & api_signature = 236 & prehash = false & JsHttpRequest = 1-xml HTTP / 1.0 "200 5261" http://192.168.88.111:80/stalker_portal/c/ "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 23 +0300] "GET /stalker_portal/server/load.php?type=stb&action=get_localization&JsHttpRequest=1-xml HTTP / 1.0" 200 46091 "http: / /192.168.88.111:80/stalker_portal/c/ "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 23 +0300] "GET /stalker_portal/server/load.php?type=itv&action=get_fav_ids&force_ch_link_check=&JsHttpRequest=1-xml HTTP / 1.0" 200 470 "http : //192.168.88.111: 80 / stalker_portal / c / "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 23 +0300] "GET /stalker_portal/server/load.php?type=itv&action=get_all_fav_channels&fav=1&force_ch_link_check=&JsHttpRequest=1-xml HTTP / 1.0" discontinued by user / account "/ link_chc "http://192.168.88.111:80/stalker_portal/c/" "Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 23 +0300] "GET /stalker_portal/server/load.php?type=stb&action=750_images&gmode=720&JsHttpRequest=1-xml HTTP / 1.0" 200 8338 "http : //192.168.88.111: 80 / stalker_portal / c / "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 23 +0300] "GET /stalker_portal/server/load.php?type=stb&action=get_modules&JsHttpRequest=1-xml HTTP / 1.0" 200 1778 "http: / /192.168.88.111:80/stalker_portal/c/ "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 23 +0300] "GET /stalker_portal/server/load.php?type=itv&action=get_epg_info&period=5&JsHttpRequest=1-xml HTTP / 1.0" 200 486 "http : //192.168.88.111: 80 / stalker_portal / c / "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 23 +0300] "GET /stalker_portal/server/load.php?type=itv&action=chc_all_channels&force_ch_link_check=&JsHttpRequest=1-xml HTTP / 1.0" 200 2124 "http : //192.168.88.111: 80 / stalker_portal / c / "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 24 +0300] "GET /stalker_portal/server/load.php?type=remote_pvr&action=get_active_recordings&JsHttpRequest=1-xml HTTP / 1.0" 200 470 "http: / /192.168.88.111:80/stalker_portal/c/ "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 24 +0300] "GET /stalker_portal/server/load.php?type=watchdog&action=get_events&cur_play_type=0&event_active_id=0&init=1&JsHttpRequest=1- responses. 200 516 "http://192.168.88.111:80/stalker_portal/c/" "Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari /533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 24 +0300] "GET /stalker_launcher_apps/magcore-core-ministra/3.8.4/app/?config=http%3A%2F%2F192.168.88. 111% 3A80% 2F% 2Fstalker_portal% 2F% 2Fserver% 2Fapi% 2Flauncher_profile.php% 3Fuid% 3D2% 26language% 3Dru% 26_% 3D1551515358235 HTTP / 1.0 "200 1137" http://192.168.88.111:80/stalker_portru "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 24 +0300] "GET /stalker_portal/server/api/launcher_profile.php?uid=2&language=ru&_=1551515358235 HTTP / 1.0" 200 33196 "http: / /192.168.88.111:80/stalker_launcher_apps/magcore-core-ministra/3.8.4/app/?config=http%3A%2F%2F192.168.88.111%3A80%2F%2Fstalker_portal%2F22Fserver22Fapi2F2iFF22FF22Fstalker_portal%2FF22F192.168.88.111%3A80%2F%2Fstalker_portal_2.2FF22F192.168.81.1% php% 3Fuid% 3D2% 26language% 3Dru% 26_% 3D1551515358235 "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 25 +0300] "GET /stalker_portal/server/api/theme_css.php?uid=2&resolution=720.css&_5151515364720.css HTTP / 1.0" 307 321 "http://192.168.88.111:80/stalker_launcher_apps/magcore-core-ministra/3.8.4/app/?config=http%3A%2F%2F192.168.88.111%3A80%2F%2Fstalker_portal%2F22Fserver% 2Fapi% 2Flauncher_profile.php% 3Fuid% 3D2% 26language% 3Dru% 26_% 3D1551515358235 "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 /533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 26 +0300] "GET /stalker_launcher_apps/plugins/magcore-plugin-settings-standby/0.1.8/app/lang/en.json HTTP / 1.0" 200 1262 "http://192.168.88.111:80/stalker_launcher_apps/magcore-core-ministra/3.8.4/app/?config=http%3A%2F%2F192.168.88.111%3A80%2F%2Fstalker_portal%2F% 2Fserver% 2Fapi% 2Flauncher_profile.php% 3Fuid% 3D2% 26language% 3Dru% 26_% 3D1551515358235 "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbuse, you need to leave it, you need to leave it, you have to leave it, you have to leave it, you have to leave it, you have to leave it. Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 26 +0300] "GET /stalker_launcher_apps/plugins/magcore-plugin-updater/0.0.31/app/lang/ru.json HTTP / 1.0" 200 1007 "http://192.168.88.111:80/stalker_launcher_apps/magcore-core-ministra/3.8.4/app/?config=http%3A%2F%2F192.168.88.111%3A80%2F%2Fstalker_portal%2F22Fserver% 2Fapi% 2Flauncher_profile.php% 3Fuid% 3D2% 26language% 3Dru% 26_% 3D1551515358235 "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 /533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 26 +0300] "GET /stalker_launcher_apps/plugins/magcore-plugin-settings-screen-saver/0.0.13/app/lang/en.json http / 1.0 "200 1163" http://192.168.88.111:80/stalker_launcher_apps/magcore-core-ministra/3.8.4/app/?config=http%3A%2F%2F192.168.88.111%3A80%2F%2Fstalker_portal% 2F% 2Fserver% 2Fapi% 2Flauncher_profile.php% 3Fuid% 3D2% 26language% 3Dru% 26_% 3D1551515358235 Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG. : 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 27 +0300] "GET /stalker_launcher_apps/plugins/magcore-plugin-settings-hdmi-reaction/0.0.13/app/lang/ru.json HTTP / 1.0 "200 913" http://192.168.88.111:80/stalker_launcher_apps/magcore-core-ministra/3.8.4/app/?config=http%3A%2F%2F192.168.88.111%3A80%2F%2Fstalker_portal% 2F% 2Fserver% 2Fapi% 2Flauncher_profile.php% 3Fuid% 3D2% 26language% 3Dru% 26_% 3D1551515358235 Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG. : 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 27 +0300] "GET /stalker_launcher_apps/plugins/magcore-plugin-settings-apd/0.0.11/app/lang/ru.json HTTP / 1.0" 200 1206 "http://192.168.88.111:80/stalker_launcher_apps/magcore-core-ministra/3.8.4/app/?config=http%3A%2F%2F192.168.88.111%3A80%2F%2Fstalker_portal%2F% 2Fserver% 2Fapi% 2Flauncher_profile.php% 3Fuid% 3D2% 26language% 3Dru% 26_% 3D1551515358235 "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbuse, you need to leave it, you need to leave it, you have to leave it, you have to leave it, you have to leave it, you have to leave it. Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 27 +0300] "GET /stalker_launcher_apps/plugins/magcore-plugin-playback/1.3.4/app/lang/ru.json HTTP / 1.0" 200 3116 "http://192.168.88.111:80/stalker_launcher_apps/magcore-core-ministra/3.8.4/app/?config=http%3A%2F%2F192.168.88.111%3A80%2F%2Fstalker_portal%2F22Fserver% 2Fapi% 2Flauncher_profile.php% 3Fuid% 3D2% 26language% 3Dru% 26_% 3D1551515358235 "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 /533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 27 +0300] "GET /stalker_launcher_apps/magcore-app-auth-stalker/3.6.6/app/lang/ru.json HTTP / 1.0" 200 4343 "http://192.168.88.111:80/stalker_launcher_apps/magcore-app-auth-stalker/3.6.6/app/index.html" "Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 27 +0300] "GET /stalker_launcher_apps/plugins/magcore-plugin-settings-network-speedtest/0.0.13/app/lang/ru.json HTTP / 1.0 "200 760" http://192.168.88.111:80/stalker_launcher_apps/magcore-core-ministra/3.8.4/app/?config=http%3A%2F%2F192.168.88.111%3A80%2F%2Fstalker_portal% 2F% 2Fserver% 2Fapi% 2Flauncher_profile.php% 3Fuid% 3D2% 26language% 3Dru% 26_% 3D1551515358235 Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG. : 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 27 +0300] "GET /stalker_portal/server/api/sap.php?version=1.0.1 HTTP / 1.0" 200 6451 "http: //192.168 .88.111: 80 / stalker_launcher_apps / magcore-app-auth-stalker / 3.6.6 / app / index.html "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver : 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 27 +0300] "GET / stalker_portal / api / v3 / users / 2 / ping HTTP / 1.0" 200 289 "http://192.168.88.111:80 /stalker_launcher_apps/magcore-app-auth-stalker/3.6.6/app/index.html "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 28 +0300] "GET / stalker_portal / api / v3 / storage / applications / storage HTTP / 1.0" 200 306 "http://192.168.88.111:80 /stalker_launcher_apps/magcore-app-auth-stalker/3.6.6/app/index.html "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 28 +0300] "GET /stalker_portal/server/api/launcher_profile.php?language=en&uid=2 HTTP / 1.0" 200 33113 "http: //192.168 .88.111: 80 / stalker_launcher_apps / magcore-app-auth-stalker / 3.6.6 / app / index.html "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver : 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 28 +0300] "GET / stalker_portal / api / v3 / users / 2 / settings HTTP / 1.0" 200 3496 "http://192.168.88.111:80 /stalker_launcher_apps/magcore-app-auth-stalker/3.6.6/app/index.html "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 28 +0300] "GET /stalker_portal/server/api/theme_css.php?uid=2&_=1551515362361&resolution=720 HTTP / 1.0" 307 321 "http: / /192.168.88.111:80/stalker_launcher_apps/magcore-app-auth-stalker/3.6.6/app/index.html "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 28 +0300] "GET /stalker_portal/api/v3/tv-channels?limit=500&t=1551515362.604 HTTP / 1.0" 200 839 "http: //192.168 .88.111: 80 / stalker_launcher_apps / magcore-app-auth-stalker / 3.6.6 / app / index.html "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver : 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 28 +0300] "GET / stalker_portal / c / HTTP / 1.0" 200 2662 "http://192.168.88.111:80/stalker_launcher_apps/magcore-core- ministra / 3.8.4 / app /? config = http% 3A% 2F% 2F192.168.88.111% 3A80% 2F% 2Fstalker_portal% 2F% 2Fserver% 2Fapi% 2Flauncher_profile.php% 3Fid% 3D2% 26language% 3Dru% 26_% 3D15151515 "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 29 +0300] "GET /stalker_portal/server/api/load_js.php HTTP / 1.0" 200 707 "http://192.168.88.111:80/stalker_portal / c / "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 30 +0300] "GET /stalker_portal/server/load.php?type=stb&action=handshake&token=&prehash=false&JsHttpRequest=1-xml HTTP / 1.0" 200 594 "http://192.168.88.111:80/stalker_portal/c/" "Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 31 +0300] "GET /stalker_portal/server/load.php?type=stb&action=get_profile&hd=1&ver=ImageDescription:%200.2.18-r23-250; % 20ImageDate:% 20Thu% 20Sep% 2013% 2011: 31: 16% 20EEST% 202018;% 20PORTAL% 20version:% 205.5.0;% 20API% 20Version:% 20JS% 20API% 20version:% 20343;% 20STB% 20API% 20version:% 20146;% 20Player% 20Engine% 20version:% 200x58c & num_banks = 2 & sn = 122011A005768 & stb_type = MAG250 & client_type = STB & image_version = 218 & video_out = hdmi & device_id = 210FFC44C3AAFCC994476AD369ECB4BE54CE88B5F08D995EAB7FD3B75102DC7D & device_id2 = 56A7BDE51056CA14C3627EC7DF134B0BF23EE0E3FB9B3710F6218E3865548FDA & signature = 6723CF8A5BF2041E58FF0F96A05BDC021F3C1DF814E07637F4C8CF96BC5CDBA3 & auth_second_step = 0 & hw_version = 1.5-BD-00¬_valid_token = 0 & metrics =% 7B% 22mac% 22% 3A% 2200% 3A1A% 3A79% 3A02% 3A9E% 3A76% 22% 2C% 22sn% 22% 3A% 22122011A005768% 22% 2C% 22model% 22% 3A% 22MAG250% 22% 2C% 22type% 22% 3A% 22STB% 22% 2C% 22uid% 22% 3A% 2256A7BDE51056CA14C3627EC7DF134B0BF23EE0E3FB9B3710F6218E3865548FDA% 22% 2C% 22random% 22% 3A% 22a5140852de2a1dd1cf5db fecdfc41e55d9ccee5aec4319c99b5b0483% 22% 7D & hw_version_2 = 5c252c5e0cdf34c6af0ba4c497ededa6d03b1706 × tamp = 1551515365 & api_signature = 236 & prehash = false & JsHttpRequest = 1-xml HTTP / 1.0 "200 5261" http://192.168.88.111:80/stalker_portal/c/ "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 31 +0300] "GET /stalker_portal/server/load.php?type=stb&action=get_localization&JsHttpRequest=1-xml HTTP / 1.0" 200 46090 "http: / /192.168.88.111:80/stalker_portal/c/ "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 31 +0300] "GET /stalker_portal/server/load.php?type=stb&action=7G_load_images&gmode=720&JsHttpRequest=1-xml HTTP / 1.0" 200 8338 "http : //192.168.88.111: 80 / stalker_portal / c / "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 31 +0300] "GET /stalker_portal/server/load.php?type=itv&action=get_all_fav_channels&fav=1&force_ch_link_check=&JsHttpRequest=1-xml HTTP / 1.0" discontinued by user / account_ch_lib "http://192.168.88.111:80/stalker_portal/c/" "Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 31 +0300] "GET /stalker_portal/server/load.php?type=itv&action=get_all_channels&force_ch_link_check=&JsHttpRequest=1-xml HTTP / 1.0" 200 2123 "http : //192.168.88.111: 80 / stalker_portal / c / "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 31 +0300] "GET /stalker_portal/server/load.php?type=itv&action=file_fav_ids&force_ch_link_check=&JsHttpRequest=1-xml HTTP / 1.0" 200 470 "http : //192.168.88.111: 80 / stalker_portal / c / "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 31 +0300] "GET /stalker_portal/server/load.php?type=itv&action=get_epg_info&period=5&JsHttpRequest=1-xml HTTP / 1.0" 200 486 "http : //192.168.88.111: 80 / stalker_portal / c / "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 31 +0300] "GET /stalker_portal/server/load.php?type=stb&action=get_modules&JsHttpRequest=1-xml HTTP / 1.0" 200 1778 "http: / /192.168.88.111:80/stalker_portal/c/ "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 32 +0300] "GET /stalker_portal/server/load.php?type=remote_pvr&action=get_active_recordings&JsHttpRequest=1-xml HTTP / 1.0" 200 470 "http: / /192.168.88.111:80/stalker_portal/c/ "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 32 +0300] "GET /stalker_portal/server/load.php?type=watchdog&action=get_events&cur_play_type=0&event_active_id=0&init=1&JsHttpRequest=1- responses. 200 516 "http://192.168.88.111:80/stalker_portal/c/" "Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari /533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 32 +0300] "GET /stalker_launcher_apps/magcore-core-ministra/3.8.4/app/?config=http%3A%2F%2F192.168.88. 111% 3A80% 2F% 2Fstalker_portal% 2F% 2Fserver% 2Fapi% 2Flauncher_profile.php% 3Fuid% 3D2% 26language% 3Dru% 26_% 3D1551515366424 HTTP / 1.0 "200 1137" http://192.168.88.111:80/stalker_portru "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 33 +0300] "GET /stalker_portal/server/api/launcher_profile.php?uid=2&language=ru__1551515366424 HTTP / 1.0" 200 33196 "http: / /192.168.88.111:80/stalker_launcher_apps/magcore-core-ministra/3.8.4/app/?config=http%3A%2F%2F192.168.88.111%3A80%2F%2Fstalker_portal%2F22Fserver22Fapi2F2iFF22FF22Fstalker_portal%2FF22F192.168.88.111%3A80%2F%2Fstalker_portal_2.2FF22F192.168.81.1% php% 3Fuid% 3D2% 26language% 3Dru% 26_% 3D1551515366424 "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 33 +0300] "GET /stalker_launcher_apps/plugins/magcore-plugin-settings-screen-saver/0.0.13/app/lang/en.json HTTP / 1.0 "200 1163" http://192.168.88.111:80/stalker_launcher_apps/magcore-core-ministra/3.8.4/app/?config=http%3A%2F%2F192.168.88.111%3A80%2F%2Fstalker_portal% 2F% 2Fserver% 2Fapi% 2Flauncher_profile.php% 3Fuid% 3D2% 26language% 3Dru% 26_% 3D1551515366424 "Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG. : 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 33 +0300] "GET /stalker_portal/server/api/theme_css.php?uid=2&resolution=720.css&_=1551515373720.css HTTP / 1.0" 307 321 "http://192.168.88.111:80/stalker_launcher_apps/magcore-core-ministra/3.8.4/app/?config=http%3A%2F%2F192.168.88.111%3A80%2F%2Fstalker_portal%2F22Fserver% 2Fapi% 2Flauncher_profile.php% 3Fuid% 3D2% 26language% 3Dru% 26_% 3D1551515366424 "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 /533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 34 +0300] "GET /stalker_launcher_apps/plugins/magcore-plugin-settings-standby/0.1.8/app/lang/en.json HTTP / 1.0" 200 1262 "http://192.168.88.111:80/stalker_launcher_apps/magcore-core-ministra/3.8.4/app/?config=http%3A%2F%2F192.168.88.111%3A80%2F%2Fstalker_portal%2F% 2Fserver% 2Fapi% 2Flauncher_profile.php% 3Fuid% 3D2% 26language% 3Dru% 26_% 3D1551515366424 "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbuse, you need to leave it, you need to leave it, you have to leave it, you have to leave it, you have to leave it. Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 34 +0300] "GET /stalker_launcher_apps/plugins/magcore-plugin-updater/0.0.31/app/lang/ru.json HTTP / 1.0" 200 1007 "http://192.168.88.111:80/stalker_launcher_apps/magcore-core-ministra/3.8.4/app/?config=http%3A%2F%2F192.168.88.111%3A80%2F%2Fstalker_portal%2F22Fserver% 2Fapi% 2Flauncher_profile.php% 3Fuid% 3D2% 26language% 3Dru% 26_% 3D1551515366424 "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 /533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 35 +0300] "GET /stalker_launcher_apps/plugins/magcore-plugin-settings-hdmi-reaction/0.0.13/app/lang/en.json HTTP / 1.0 "200 913" http://192.168.88.111:80/stalker_launcher_apps/magcore-core-ministra/3.8.4/app/?config=http%3A%2F%2F192.168.88.111%3A80%2F%2Fstalker_portal% 2F% 2Fserver% 2Fapi% 2Flauncher_profile.php% 3Fuid% 3D2% 26language% 3Dru% 26_% 3D1551515366424 "Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG. : 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 35 +0300] "GET /stalker_launcher_apps/plugins/magcore-plugin-playback/1.3.4/app/lang/ru.json HTTP / 1.0" 200 3116 "http://192.168.88.111:80/stalker_launcher_apps/magcore-core-ministra/3.8.4/app/?config=http%3A%2F%2F192.168.88.111%3A80%2F%2Fstalker_portal%2F22Fserver% 2Fapi% 2Flauncher_profile.php% 3Fuid% 3D2% 26language% 3Dru% 26_% 3D1551515366424 "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 /533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 35 +0300] "GET /stalker_launcher_apps/magcore-app-auth-stalker/3.6.6/app/lang/ru.json HTTP / 1.0" 200 4343 "http://192.168.88.111:80/stalker_launcher_apps/magcore-app-auth-stalker/3.6.6/app/index.html" "Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 35 +0300] "GET /stalker_launcher_apps/plugins/magcore-plugin-settings-apd/0.0.11/app/lang/ru.json HTTP / 1.0" 200 1206 "http://192.168.88.111:80/stalker_launcher_apps/magcore-core-ministra/3.8.4/app/?config=http%3A%2F%2F192.168.88.111%3A80%2F%2Fstalker_portal%2F% 2Fserver% 2Fapi% 2Flauncher_profile.php% 3Fuid% 3D2% 26language% 3Dru% 26_% 3D1551515366424 "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbuse, you need to leave it, you need to leave it, you have to leave it, you have to leave it, you have to leave it. Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 35 +0300] "GET /stalker_launcher_apps/plugins/magcore-plugin-settings-network-speedtest/0.0.13/app/lang/ru.json HTTP / 1.0 "200 760" http://192.168.88.111:80/stalker_launcher_apps/magcore-core-ministra/3.8.4/app/?config=http%3A%2F%2F192.168.88.111%3A80%2F%2Fstalker_portal% 2F% 2Fserver% 2Fapi% 2Flauncher_profile.php% 3Fuid% 3D2% 26language% 3Dru% 26_% 3D1551515366424 "Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG. : 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 35 +0300] "GET /stalker_portal/server/api/sap.php?version=1.0.1 HTTP / 1.0" 200 6461 "http: //192.168 .88.111: 80 / stalker_launcher_apps / magcore-app-auth-stalker / 3.6.6 / app / index.html "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver : 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 36 +0300] "GET / stalker_portal / api / v3 / users / 2 / ping HTTP / 1.0" 200 289 "http://192.168.88.111:80 /stalker_launcher_apps/magcore-app-auth-stalker/3.6.6/app/index.html "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 36 +0300] "GET / stalker_portal / api / v3 / storage / applications / storage HTTP / 1.0" 200 306 "http://192.168.88.111:80 /stalker_launcher_apps/magcore-app-auth-stalker/3.6.6/app/index.html "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 36 +0300] "GET /stalker_portal/server/api/launcher_profile.php?language=en&uid=2 HTTP / 1.0" 200 33113 "http: //192.168 .88.111: 80 / stalker_launcher_apps / magcore-app-auth-stalker / 3.6.6 / app / index.html "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver : 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 36 +0300] "GET / stalker_portal / api / v3 / users / 2 / settings HTTP / 1.0" 200 3496 "http://192.168.88.111:80 /stalker_launcher_apps/magcore-app-auth-stalker/3.6.6/app/index.html "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 36 +0300] "GET /stalker_portal/server/api/theme_css.php?uid=2&_=1551515370497&resolution=720 HTTP / 1.0" 307 321 "http: / /192.168.88.111:80/stalker_launcher_apps/magcore-app-auth-stalker/3.6.6/app/index.html "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 36 +0300] "GET /stalker_portal/api/v3/tv-channels?limit=500&t=1551515370.727 HTTP / 1.0" 200 840 "http: //192.168 .88.111: 80 / stalker_launcher_apps / magcore-app-auth-stalker / 3.6.6 / app / index.html "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver : 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 37 +0300] "GET / stalker_portal / c / HTTP / 1.0" 200 2662 "http://192.168.88.111:80/stalker_launcher_apps/magcore-core- ministra / 3.8.4 / app /? config = http% 3A% 2F% 2F192.168.88.111% 3A80% 2F% 2Fstalker_portal% 2F% 2Fserver% 2Fapi% 2Flauncher_profile.php% 3Fid% 3D2% 26language% 3Dru% 26_% 3D151515% "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 37 +0300] "GET /stalker_portal/server/api/load_js.php HTTP / 1.0" 200 707 "http://192.168.88.111:80/stalker_portal / c / "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 39 +0300] "GET /stalker_portal/server/load.php?type=stb&action=handshake&token=&prehash=false&JsHttpRequest=1-xml HTTP / 1.0" 200 594 "http://192.168.88.111:80/stalker_portal/c/" "Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 39 +0300] "GET /stalker_portal/server/load.php?type=stb&action=get_profile&hd=1&ver=ImageDescription:%200.2.18-r23-250; % 20ImageDate:% 20Thu% 20Sep% 2013% 2011: 31: 16% 20EEST% 202018;% 20PORTAL% 20version:% 205.5.0;% 20API% 20Version:% 20JS% 20API% 20version:% 20343;% 20STB% 20API% 20version:% 20146;% 20Player% 20Engine% 20version:% 200x58c & num_banks = 2 & sn = 122011A005768 & stb_type = MAG250 & client_type = STB & image_version = 218 & video_out = hdmi & device_id = 210FFC44C3AAFCC994476AD369ECB4BE54CE88B5F08D995EAB7FD3B75102DC7D & device_id2 = 56A7BDE51056CA14C3627EC7DF134B0BF23EE0E3FB9B3710F6218E3865548FDA & signature = 6723CF8A5BF2041E58FF0F96A05BDC021F3C1DF814E07637F4C8CF96BC5CDBA3 & auth_second_step = 0 & hw_version = 1.5-BD-00¬_valid_token = 0 & metrics =% 7B% 22mac% 22% 3A% 2200% 3A1A% 3A79% 3A02% 3A9E% 3A76% 22% 2C% 22sn% 22% 3A% 22122011A005768% 22% 2C% 22model% 22% 3A% 22MAG250% 22% 2C% 22type% 22% 3A% 22STB% 22% 2C% 22uid% 22% 3A% 2256A7BDE51056CA14C3627EC7DF134B0BF23EE0E3FB9B3710F6218E3865548FDA% 22% 2C% 22random% 22% 3A% 22a5140852de2a1dd1cf5db fecdfc41e55d9ccee5aec4319c99b5b0483% 22% 7D & hw_version_2 = 5c252c5e0cdf34c6af0ba4c497ededa6d03b1706 × tamp = 1551515373 & api_signature = 236 & prehash = false & JsHttpRequest = 1-xml HTTP / 1.0 "200 5261" http://192.168.88.111:80/stalker_portal/c/ "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 39 +0300] "GET /stalker_portal/server/load.php?type=stb&action=get_localization&JsHttpRequest=1-xml HTTP / 1.0" 200 46091 "http: / /192.168.88.111:80/stalker_portal/c/ "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 40 +0300] "GET /stalker_portal/server/load.php?type=itv&action=ch_fav_ids&force_ch_link_check=&JsHttpRequest=1-xml HTTP / 1.0" 200 470 "http : //192.168.88.111: 80 / stalker_portal / c / "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 40 +0300] "GET /stalker_portal/server/load.php?type=stb&action=7G_load_images&gmode=720&JsHttpRequest=1-xml HTTP / 1.0" 200 8338 "http : //192.168.88.111: 80 / stalker_portal / c / "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 40 +0300] "GET /stalker_portal/server/load.php?type=itv&action=get_all_fav_channels&fav=1&force_ch_link_check=&JsHttpRequest=1-xml HTTP / 1.0" discontinued by user / account_ch_link_check=&JsHttpRequest=1-xml HTTP / 1.0 "for the_ch "http://192.168.88.111:80/stalker_portal/c/" "Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 40 +0300] "GET /stalker_portal/server/load.php?type=itv&action=get_all_channels&force_ch_link_check=&JsHttpRequest=1-xml HTTP / 1.0" 200 2124 "http : //192.168.88.111: 80 / stalker_portal / c / "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 40 +0300] "GET /stalker_portal/server/load.php?type=stb&action=get_modules&JsHttpRequest=1-xml HTTP / 1.0" 200 1776 "http: / /192.168.88.111:80/stalker_portal/c/ "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 40 +0300] "GET /stalker_portal/server/load.php?type=itv&action=get_epg_info&period=5&JsHttpRequest=1-xml HTTP / 1.0" 200 486 "http : //192.168.88.111: 80 / stalker_portal / c / "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 40 +0300] "GET /stalker_portal/server/load.php?type=remote_pvr&action=get_active_recordings&JsHttpRequest=1-xml HTTP / 1.0" 200 470 "http: / /192.168.88.111:80/stalker_portal/c/ "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 40 +0300] "GET /stalker_launcher_apps/magcore-core-ministra/3.8.4/app/?config=http%3A%2F%2F192.168.88. 111% 3A80% 2F% 2Fstalker_portal% 2F% 2Fserver% 2Fapi% 2Flauncher_profile.php% 3Fuid% 3D2% 26language% 3Dru% 26_% 3D1551515374435 HTTP / 1.0 "200 1137" http://192.168.88.111:80/stalker_portru "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 40 +0300] "GET /stalker_portal/server/load.php?type=watchdog&action=get_events&cur_play_type=0&event_active_id=0&init=1&JsHttpRequest=1- responses. 200 516 "http://192.168.88.111:80/stalker_portal/c/" "Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari /533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 41 +0300] "GET /stalker_portal/server/api/launcher_profile.php?uid=2&language=ru__1551515374435 HTTP / 1.0" 200 33196 "http: / /192.168.88.111:80/stalker_launcher_apps/magcore-core-ministra/3.8.4/app/?config=http%3A%2F%2F192.168.88.111%3A80%2F%2Fstalker_portal%2F22Fserver22Fapi2F2iFF22FF22Fstalker_portal%2FF22F192.168.88.111%3A80%2F%2Fstalker_portal_2.2FF22F192.168.81.1% php% 3Fuid% 3D2% 26language% 3Dru% 26_% 3D1551515374435 "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 41 +0300] "GET /stalker_portal/server/api/theme_css.php?uid=2&resolution=720.css&_=1551515381720.css HTTP / 1.0" 307 321 "http://192.168.88.111:80/stalker_launcher_apps/magcore-core-ministra/3.8.4/app/?config=http%3A%2F%2F192.168.88.111%3A80%2F%2Fstalker_portal%2F22Fserver% 2Fapi% 2Flauncher_profile.php% 3Fuid% 3D2% 26language% 3Dru% 26_% 3D1551515374435 "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 /533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 41 +0300] "GET /stalker_launcher_apps/plugins/magcore-plugin-settings-standby/0.1.8/app/lang/en.json HTTP / 1.0" 200 1262 "http://192.168.88.111:80/stalker_launcher_apps/magcore-core-ministra/3.8.4/app/?config=http%3A%2F%2F192.168.88.111%3A80%2F%2Fstalker_portal%2F% 2Fserver% 2Fapi% 2Flauncher_profile. Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 42 +0300] "GET /stalker_launcher_apps/plugins/magcore-plugin-settings-screen-saver/0.0.13/app/lang/en.json http / 1.0 "200 1163" http://192.168.88.111:80/stalker_launcher_apps/magcore-core-ministra/3.8.4/app/?config=http%3A%2F%2F192.168.88.111%3A80%2F%2Fstalker_portal% 2F% 2Fserver% 2Fapi% 2Flauncher_profile.php% 3Fuid% 3D2% 26language% 3Dru% 26_% 3D1551515374435 Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG. : 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 43 +0300] "GET /stalker_launcher_apps/plugins/magcore-plugin-updater/0.0.31/app/lang/ru.json HTTP / 1.0" 200 1007 "http://192.168.88.111:80/stalker_launcher_apps/magcore-core-ministra/3.8.4/app/?config=http%3A%2F%2F192.168.88.111%3A80%2F%2Fstalker_portal%2F22Fserver% 2Fapi% 2Flauncher_profile.php% 3Fuid% 3D2% 26language% 3Dru% 26_% 3D1551515374435 "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 /533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 43 +0300] "GET /stalker_launcher_apps/plugins/magcore-plugin-playback/1.3.4/app/lang/ru.json HTTP / 1.0" 200 3116 "http://192.168.88.111:80/stalker_launcher_apps/magcore-core-ministra/3.8.4/app/?config=http%3A%2F%2F192.168.88.111%3A80%2F%2Fstalker_portal%2F22Fserver% 2Fapi% 2Flauncher_profile.php% 3Fuid% 3D2% 26language% 3Dru% 26_% 3D1551515374435 "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 /533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 43 +0300] "GET /stalker_launcher_apps/plugins/magcore-plugin-settings-apd/0.0.11/app/lang/ru.json HTTP / 1.0" 200 1206 "http://192.168.88.111:80/stalker_launcher_apps/magcore-core-ministra/3.8.4/app/?config=http%3A%2F%2F192.168.88.111%3A80%2F%2Fstalker_portal%2F% 2Fserver% 2Fapi% 2Flauncher_profile. Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 43 +0300] "GET /stalker_launcher_apps/plugins/magcore-plugin-settings-hdmi-reaction/0.0.13/app/lang/ru.json HTTP / 1.0 "200 913" http://192.168.88.111:80/stalker_launcher_apps/magcore-core-ministra/3.8.4/app/?config=http%3A%2F%2F192.168.88.111%3A80%2F%2Fstalker_portal% 2F% 2Fserver% 2Fapi% 2Flauncher_profile.php% 3Fuid% 3D2% 26language% 3Dru% 26_% 3D1551515374435 Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG. : 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 43 +0300] "GET /stalker_launcher_apps/magcore-app-auth-stalker/3.6.6/app/lang/ru.json HTTP / 1.0" 200 4343 "http://192.168.88.111:80/stalker_launcher_apps/magcore-app-auth-stalker/3.6.6/app/index.html" "Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 43 +0300] "GET /stalker_launcher_apps/plugins/magcore-plugin-settings-network-speedtest/0.0.13/app/lang/ru.json HTTP / 1.0 "200 760" http://192.168.88.111:80/stalker_launcher_apps/magcore-core-ministra/3.8.4/app/?config=http%3A%2F%2F192.168.88.111%3A80%2F%2Fstalker_portal% 2F% 2Fserver% 2Fapi% 2Flauncher_profile.php% 3Fuid% 3D2% 26language% 3Dru% 26_% 3D1551515374435 Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG. : 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 43 +0300] "GET /stalker_portal/server/api/sap.php?version=1.0.1 HTTP / 1.0" 200 6444 "http: //192.168 .88.111: 80 / stalker_launcher_apps / magcore-app-auth-stalker / 3.6.6 / app / index.html "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver : 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 44 +0300] "GET / stalker_portal / api / v3 / users / 2 / ping HTTP / 1.0" 200 289 "http://192.168.88.111:80 /stalker_launcher_apps/magcore-app-auth-stalker/3.6.6/app/index.html "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 44 +0300] "GET / stalker_portal / api / v3 / storage / applications / storage HTTP / 1.0" 200 306 "http://192.168.88.111:80 /stalker_launcher_apps/magcore-app-auth-stalker/3.6.6/app/index.html "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 44 +0300] "GET /stalker_portal/server/api/launcher_profile.php?language=en&uid=2 HTTP / 1.0" 200 33113 "http: //192.168 .88.111: 80 / stalker_launcher_apps / magcore-app-auth-stalker / 3.6.6 / app / index.html "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver : 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 44 +0300] "GET / stalker_portal / api / v3 / users / 2 / settings HTTP / 1.0" 200 3496 "http://192.168.88.111:80 /stalker_launcher_apps/magcore-app-auth-stalker/3.6.6/app/index.html "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 44 +0300] "GET /stalker_portal/server/api/theme_css.php?uid=2&_=1551515378623&resolution=720 HTTP / 1.0" 307 321 "http: / /192.168.88.111:80/stalker_launcher_apps/magcore-app-auth-stalker/3.6.6/app/index.html "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 44 +0300] "GET /stalker_portal/api/v3/tv-channels?limit=500&t=1551515378.877 HTTP / 1.0" 200 840 "http: //192.168 .88.111: 80 / stalker_launcher_apps / magcore-app-auth-stalker / 3.6.6 / app / index.html "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver : 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 45 +0300] "GET / stalker_portal / c / HTTP / 1.0" 200 2662 "http://192.168.88.111:80/stalker_launcher_apps/magcore-core- ministra / 3.8.4 / app /? config = http% 3A% 2F% 2F192.168.88.111% 3A80% 2F% 2Fstalker_portal% 2F% 2Fserver% 2Fapi% 2Flauncher_profile.php% 3Fid% 3D2% 26language% 3Dru% 26_% 3D15151515 "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 45 +0300] "GET /stalker_portal/server/api/load_js.php HTTP / 1.0" 200 707 "http://192.168.88.111:80/stalker_portal / c / "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 47 +0300] "GET /stalker_portal/server/load.php?type=stb&action=handshake&token=&prehash=false&JsHttpRequest=1-xml HTTP / 1.0" 200 594 "http://192.168.88.111:80/stalker_portal/c/" "Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "
192.168.88.3 - - [02 / Mar / 2019: 11: 29: 47 +0300] "GET /stalker_portal/server/load.php?type=stb&action=get_profile&hd=1&ver=ImageDescription:%200.2.18-r23-250; % 20ImageDate:% 20Thu% 20Sep% 2013% 2011: 31: 16% 20EEST% 202018;% 20PORTAL% 20version:% 205.5.0;% 20API% 20Version:% 20JS% 20API% 20version:% 20343;% 20STB% 20API% 20version:% 20146;% 20Player% 20Engine% 20version:% 200x58c & num_banks = 2 & sn = 122011A005768 & stb_type = MAG250 & client_type = STB & image_version = 218 & video_out = hdmi & device_id = 210FFC44C3AAFCC994476AD369ECB4BE54CE88B5F08D995EAB7FD3B75102DC7D & device_id2 = 56A7BDE51056CA14C3627EC7DF134B0BF23EE0E3FB9B3710F6218E3865548FDA & signature = 6723CF8A5BF2041E58FF0F96A05BDC021F3C1DF814E07637F4C8CF96BC5CDBA3 & auth_second_step = 0 & hw_version = 1.5-BD-00¬_valid_token = 0 & metrics =% 7B% 22mac% 22% 3A% 2200% 3A1A% 3A79% 3A02% 3A9E% 3A76% 22% 2C% 22sn% 22% 3A% 22122011A005768% 22% 2C% 22model% 22% 3A% 22MAG250% 22% 2C% 22type% 22% 3A% 22STB% 22% 2C% 22uid% 22% 3A% 2256A7BDE51056CA14C3627EC7DF134B0BF23EE0E3FB9B3710F6218E3865548FDA% 22% 2C% 22random% 22% 3A% 22a5140852de2a1dd1cf5db fecdfc41e55d9ccee5aec4319c99b5b0483% 22% 7D & hw_version_2 = 5c252c5e0cdf34c6af0ba4c497ededa6d03b1706 × tamp = 1551515381 & api_signature = 236 & prehash = false & JsHttpRequest = 1-xml HTTP / 1.0 "200 5261" http://192.168.88.111:80/stalker_portal/c/ "" Mozilla / 5.0 (QtEmbedded; U; Linux; C) AppleWebKit / 533.3 (KHTML, like Gecko) MAG200 stbapp ver: 6 rev: 1a90f4f Mobile Safari / 533.3 "

When installing conventional themes, everything works in the normal way.

Post has been editedl.dee - 02.03.19, 12:17
Dina20
Message#786
03.03.19, 00:49
Novice
***
[offline]

Group: Active users
Messages 35
Check in: 25.11.15
Huawei Y600

Reputation:-  1  +

Where can I get plex-name now?
tw1ng
Message#787
05.03.19, 11:48
User
****
[offline]

Group: Friendssavagemessiahzine.com
Messages 88
Check in: 19.03.13

Reputation:-  1  +

Guys who can help with setting up storage? I did the instructions both from infomir and from 4pd. After setting up and saving on the channel, I get the error "Whoops, looks like something went wrong.". Help ...
Dina20
Message#788
05.03.19, 12:53
Novice
***
[offline]

Group: Active users
Messages 35
Check in: 25.11.15
Huawei Y600

Reputation:-  1  +

Where can I get plex-name now?
Someone tell me?
https://github.com/plexname/plex-name
No longer works
xAnder79
Message#789
05.03.19, 15:32
User
****
[offline]

Group: Friendssavagemessiahzine.com
Messages 88
Check in: 01.05.08
Xiaomi Redmi Note 3 Pro Special Edition

Reputation:-  9  +

Dina20 @ 03/05/2019, 11:53*
Where can I get plex-name now?
Someone tell me?
https://github.com/plexname/plex-name
No longer works



Keep link to plex
https://github.com/betamaster2/multiplex
Dina20
Message#790
08.03.19, 02:36
Novice
***
[offline]

Group: Active users
Messages 35
Check in: 25.11.15
Huawei Y600

Reputation:-  1  +

xAnder79 @ 03/05/19, 14:32*


Does not work
l.dee
Message#791
09.03.19, 17:51
a guest
*
[offline]

Group: Users
Messages 3
Check in: 25.05.16

Reputation:-  0  +

Someone tell me, turn on the tariff plans, after which the console does not enter the smart launcher, tries to log in for a long time, that's all. Someone met with such a problem?
kirzxc
Message#792
10.03.19, 00:05
a guest
*
[offline]

Group: Users
Messages 3
Check in: 07.03.16

Reputation:-  0  +

Stalker Middleware 4.9.35 where to download ???
siropchik1980
Message#793
14.03.19, 23:10
Novice
***
[offline]

Group: Active users
Messages 46
Check in: 18.04.10
Qtek S200

Reputation:-  0  +

Goodnight! Please tell me where to dig? The problem with adding video, the first three stages are normal, and at the fourth stage the error gets out:
Screenshot
Attached Image

... a link with my external IP is visible there, but it is not registered anywhere in the files, all the more I doubt a good connection without a registered port after IP ... everything was normal before, I don’t even know at what stage it all started ...
Can anyone come across this?

Post has been editedsiropchik1980 - 14.03.19, 23:13
nikod
Message#794
18.03.19, 22:42
Local
*****
[offline]

Group: Friendssavagemessiahzine.com
Messages 122
Check in: 27.12.09
Xiaomi Redmi Note 6 Pro 3/32

Reputation:-  13  +

* kirzxc, https://cloud.mail.ru/public/GHBf/dKpksiZv7


--------------------
LeeCO X626, Meizu MX5, Xiaomi Redmi Note 6 Pro
net_spy
Message#795
18.03.19, 23:57
Visitor
**
[offline]

Group: Active users
Messages 16
Check in: 29.12.13
Xiaomi Redmi Note 4X Snapdragon 3/32

Reputation:-  2  +

Dina20 @ 03/08/19, 01:36*
Does not work

for a classic or smart launcher do you need a plex?
ForzaDynamo
Message#796
21.03.19, 20:14
a guest
*
[offline]

Group: Users
Messages 1
Check in: 21.03.19

Reputation:-  0  +

Prompt such a nuance. Started using MAG 410.
IPTV launched through the Ministra player, the Ministra shell is launched there.
How do I get out of this shell back on Android TV? Nothing helps, only reboot the console.
Thank!
Cyb3rM4n
Message#797
25.03.19, 02:39
Visitor
**
[offline]

Group: Active users
Messages 29
Check in: 28.02.14
Lenovo A1000

Reputation:-  1  +

At the last installation of the ministers, I see this in the exhaust of the installation report:

[exec] Executing command: cd / home / site / stalker_portal / server / tools /; php ./init_apps.php; chown -R www-data: www-data /home/site/stalker_portal/../stalker_launcher_apps/ 2>&1
PHP Fatal error: Class 'Stalker \ Lib \ Core \ Config' not found in /home/site/stalker_portal/server/common.php on line 24
PHP Stack trace:
PHP 1. {main} () /home/site/stalker_portal/server/tools/init_apps.php dat
PHP 2. include () /home/site/stalker_portal/server/tools/init_apps.php:7

What is not installed in my system?
grobagol
Message#798
27.03.19, 21:28
Visitor
**
[offline]

Group: Users
Messages 10
Check in: 22.05.09

Reputation:-  0  +

Made step by step installation. In the admin panel messageFor correct operation, install npm: 2.15.11
Installed, but the message is not lost.
Completed recommended
npm cache clear
and reinstall
npm install [email protected] -g
Did not help.
The client part also does not start the messageFirmware of your STB is outdated. Please update it.
The Kodi Stalker client says Authentication is not possible.
grobagol
Message#799
29.03.19, 01:16
Visitor
**
[offline]

Group: Users
Messages 10
Check in: 22.05.09

Reputation:-  0    +

Foundansweron the authentication issue.
Can I somehow correctly roll back the version without demolishing the entire server?

Post has been editedgrobagol - 29.03.19, 01:19
noskainych
Message#800
29.03.19, 05:24
Local
*****
[online]

Group: Friendssavagemessiahzine.com
Messages 387
Check in: 28.09.10
Motorola Moto M

Reputation:-  78  +

Grobagol @ 03/29/2019 08:16*
You can somehow correctly roll back the version

Similar to the update.


--------------------
Chinese iPhone is a racially incorrect version of the phone from one fruit company. The names of this miracle vary depending on the imagination of the Chinese manufacturer. Enjoys demand and is the subject of pride of rogue, hachey and some strange geeks.
ugc
Message#801
02.04.19, 10:37
Local
*****
[offline]

Group: Friendssavagemessiahzine.com
Messages 237
Check in: 05.11.11

Reputation:-  8  +

Tell me, is it possible to put Ministra 5.5 on Ubuntu 14.04?

43 pagesV  « < 38 39 40 41 42 43 > » 


 mobile version    Now: 05/27/19, 02:28