DOWNLOAD XCIPTV V6 8.0.3 SkyGlassTV with working vpn and new brand panel (apk and panel file)

burstow84

Member
VIP Member
Joined
Sep 28, 2021
Messages
72
Awards
1
Offline
try taking the space out of the Header in the Sports Guide Section, i believe the default Header has a spacethank

try taking the space out of the Header in the Sports Guide Section, i believe the default Header has a space.
Ok bud cheers thanks I'll take a look at that as well everything else works @VisionDesigns I didn't think you were still in the app game haven't spoke to you in a while hope your keeping ok
 

AS Rebrands

Owner
Staff member
Admin
Joined
Apr 5, 2021
Messages
921
Awards
5
Offline
replace the tvsg.php with below if issues with sports page not working:


<?php

$sqlite3 = new SQLite3('../.cockpit-0001.db');
$result = $sqlite3->query('SELECT * FROM tvsg_settings;');
$tvsg_settings = $result->fetchArray();

$postData = array(
'heading' => $tvsg_settings['heading'],
'border_color' => 'custom',
'autoscroll' => $tvsg_settings['auto_scroll'],
'custom_colors' => substr($tvsg_settings['border_color'], 1) . ',' . substr($tvsg_settings['background_color'], 1) . ',' . substr($tvsg_settings['text_color'], 1)
);

$curl = curl_init();
curl_setopt($curl, CURLOPT_HEADER, 0);
curl_setopt($curl, CURLOPT_URL, 'https://www.tvsportguide.com/widget/' . $tvsg_settings['widget_id'] . '/');
curl_setopt($curl, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) curlrome/100.0.4896.127 Safari/537.36');
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, 10);
curl_setopt($curl, CURLOPT_TIMEOUT, 10);
curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($curl, CURLOPT_AUTOREFERER, true);
curl_setopt($curl, CURLOPT_POST, true);
curl_setopt($curl, CURLOPT_POSTFIELDS, http_build_query($postData));

$page = curl_exec($curl);
curl_close($curl);

echo $page;

?>


modified code as i had issues with long header
 

escwizard

New member
Joined
Mar 1, 2023
Messages
4
Offline
what are you using to edit the apk to point it to the panel as apk editor isnt working for me
 

asegura074

Well-known member
Joined
Oct 27, 2022
Messages
172
Awards
3
Offline
after editting the apk works on cellphones but not on Smartv with androidtv i did change the sdk to android 10 but gives me the same issue cannot install error on TV
 

Deekayz

Active member
Joined
Apr 12, 2022
Messages
121
Awards
3
Offline
Hello I have another question regarding moden.

Namely, I managed to get everything running that was not the problem.

The problem is when I replace the video then comes the error message that the video can not be played.

If I change that first with APK Editor Studio.
Then the video works. But the theme I can not change. As soon as I touch the graphics the app crashes.

So either I can have my theme. (APK Editor Ultra)
Or change the intro with the Sky Glass Theme (APK Editor Studio).

Now how can I have my theme with my intro ? Does anyone know a trick ?

Thanks in advance.
 

KingPegasus

Well-known member
Joined
Jun 18, 2021
Messages
714
Awards
3
Offline
Hello I have another question regarding moden.

Namely, I managed to get everything running that was not the problem.

The problem is when I replace the video then comes the error message that the video can not be played.

If I change that first with APK Editor Studio.
Then the video works. But the theme I can not change. As soon as I touch the graphics the app crashes.

So either I can have my theme. (APK Editor Ultra)
Or change the intro with the Sky Glass Theme (APK Editor Studio).

Now how can I have my theme with my intro ? Does anyone know a trick ?

Thanks in advance.
MT Manager.
 

FyahRas

Active member
VIP Member
Joined
Jul 31, 2021
Messages
154
Awards
3
Offline
does the intro video work on panel?
Tried changing but plays same sky glass intro
 

Stream Wizard

Active member
Joined
Jan 21, 2022
Messages
180
Awards
3
Offline
The video intro is hardcoded. Cant be changed from admin panel. Change it, edit it, or remove it on the app.
 

KikasDE

Member
Joined
May 13, 2021
Messages
60
Awards
1
Offline
after editting the apk works on cellphones but not on Smartv with androidtv i did change the sdk to android 10 but gives me the same issue cannot install error on TV
What is your AndroidTV version? 10 / 11 ??? My edited app work's well on all devices, included AndroidTV 10 and 11.
And i don't change anything on Manifest.
 

jorgepreis

Member
Joined
Jul 24, 2022
Messages
36
Awards
2
Offline

Tayluur82

Active member
Joined
Dec 11, 2021
Messages
182
Awards
2
Offline
Couldn't get the app to work. Got the panel up and my DNS in. App loads, video plays but just stops after.
 

KikasDE

Member
Joined
May 13, 2021
Messages
60
Awards
1
Offline
How can I remove completely remove/disable the intro video?
If this is the same as other versions 719 / 722 on Manifest search SplashVideoActivity and SplashActivity.

On AndoidManifest.xml

on line 46 you have this:
android:name="com.nathnetwork.worldwidemediaxc.SplashVideoActivity" change SplashVideoActivity to SplashActivity.

on line 58 you have this:
android:name="com.nathnetwork.worldwidemediaxc.SplashActivity" change SplashActivity to SplashVideoActivity.

Save and you remove forever the Intro Video.

If you later want to put intro video make the reverse!

Cheers.
 
Last edited:

KikasDE

Member
Joined
May 13, 2021
Messages
60
Awards
1
Offline
im have trouble with the dashboard, im gett tons of script errors, i got to be doing something wrong

Notice: Trying to access array offset on value of type null in /home/public_html/dashboard.php on line 43

Notice: Trying to access array offset on value of type null in /home/public_html/dashboard.php on line 43

()​

Notice: Trying to access array offset on value of type null in /home/public_html/dashboard.php on line 47

On all PHP files from panel search this:

if ($_ERRORS) {
error_reporting(E_ALL);
ini_set('display_errors', 1);

Change the value 1 to 0 and you well to go.

All errors gone!

Cheers!
 
Top