DOWNLOAD IBO TMDB

ade2910

Active member
VIP Member
Joined
Aug 14, 2021
Messages
235
Awards
3
Offline
You won’t find anything helpful in the cache folder. But the answer is located in the api folder. Happy hunting
}
// Common API parameters
$language = "pt-ENGLISH";

// Define the cache folder and file path
$cache_folder = 'cache/';
$cache_file = $cache_folder . 'combined_cache.json';

// Create the cache folder if it doesn't exist
if (!file_exists($cache_folder)) {
mkdir($cache_folder, 0777, true);
}

// Cache validity duration (12 hours in seconds)
$cache_duration = 12 * 60 * 60;

// Check if cached data is still valid
if (file_exists($cache_file) && time() - filemtime($cache_file) < $cache_duration) {
// Use cached data
$cached_data = file_get_contents($cache_file);
$combined_data = json_decode($cached_data, true);
} else {
// Fetch movies data using cURL
$movies_url = "https://api.themoviedb.org/3/trending/movie/week?api_key=$api_key&language=$english";
$movies_curl = curl_init($movies_url);
curl_setopt($movies_curl, CURLOPT_RETURNTRANSFER, true);
$movies_response = curl_exec($movies_curl);
curl_close($movies_curl);

$movies_data = json_decode($movies_response, true);

// Fetch shows data using cURL
$shows_url = "https://api.themoviedb.org/3/trending/tv/week?api_key=$api_key&language=$english";


tried this but failed
 

SamChapman

Active member
VIP Member
Joined
Jan 18, 2024
Messages
169
Awards
2
Offline
}
// Common API parameters
$language = "pt-ENGLISH";

// Define the cache folder and file path
$cache_folder = 'cache/';
$cache_file = $cache_folder . 'combined_cache.json';

// Create the cache folder if it doesn't exist
if (!file_exists($cache_folder)) {
mkdir($cache_folder, 0777, true);
}

// Cache validity duration (12 hours in seconds)
$cache_duration = 12 * 60 * 60;

// Check if cached data is still valid
if (file_exists($cache_file) && time() - filemtime($cache_file) < $cache_duration) {
// Use cached data
$cached_data = file_get_contents($cache_file);
$combined_data = json_decode($cached_data, true);
} else {
// Fetch movies data using cURL
$movies_url = "https://api.themoviedb.org/3/trending/movie/week?api_key=$api_key&language=$english";
$movies_curl = curl_init($movies_url);
curl_setopt($movies_curl, CURLOPT_RETURNTRANSFER, true);
$movies_response = curl_exec($movies_curl);
curl_close($movies_curl);

$movies_data = json_decode($movies_response, true);

// Fetch shows data using cURL
$shows_url = "https://api.themoviedb.org/3/trending/tv/week?api_key=$api_key&language=$english";


tried this but failed
Change to en-US
 

SamChapman

Active member
VIP Member
Joined
Jan 18, 2024
Messages
169
Awards
2
Offline
Guys make sure you change all 3 urls in the app. For the tmdb part search iptvrebrandmx in home activity😀
 

Silencer

Well-known member
Joined
Jun 2, 2021
Messages
391
Awards
4
Offline
Ladies and Gentlemen. Will give you a hint. Add your key do language change and delet cache........
 

Deekayz

Active member
VIP Member
Joined
Apr 12, 2022
Messages
123
Awards
3
Offline
View attachment 8780
Don't forget to delete cache
Thats the Solution for the Langauges!!
1. Edit movies.php to your favourite language and upload it on Server.
2. Delete /api/.bet_tmdb.db on Server.
3. On Panel -> Delete the Cache, Enter your API Key and click on Save Settings!!
4. Enjoy
 
Last edited:

eonbry

Member
Joined
Sep 21, 2023
Messages
63
Awards
3
Offline
Good morning, I'm new here and I don't know if this is where I should post.
I go up the panel but it gives error 500, can someone help me?
 

Attachments

  • Sem título.png
    Sem título.png
    15.2 KB · Views: 19

Deekayz

Active member
VIP Member
Joined
Apr 12, 2022
Messages
123
Awards
3
Offline
Good morning, I'm new here and I don't know if this is where I should post.
I go up the panel but it gives error 500, can someone help me?
Hi... go to /api/ Folder and deleted all .db Files... and Refresh the Panel ;)
 

jony14

New member
VIP Member
Joined
Oct 31, 2023
Messages
9
Offline
Hi
Can anyone help me with editing Logo on home screen i would like to make it bigger
 

khalidsh

New member
Joined
Jun 14, 2021
Messages
21
Offline
How can I hide Add playlist
 

Attachments

  • IMG_20240215_234157_301.jpg
    IMG_20240215_234157_301.jpg
    40.5 KB · Views: 98
Top