WmZilla - Webmaster and Marketplace

The Next Generation Webmaster and Trade Forum

How to fix errors in Filemoon link parts

thirmo

New member

0

0%

Status

Offline

Posts

45

Likes

0

Rep

0

Bits

230

3

Months of Service

0%
Here is the rewritten content in English:

"Some parts of the filemoon link are causing issues
Video here

Here is the code:

<?php

$filelink="https://filemoon.sx/d/y5r9di46t7ia/Wza3q.aaa.mp4";
if (strpos($filelink,"filemoon.") !== false) {
if (preg_match('/(\/\/[\.\d\w\-\.\/\\\:\?\&\#\%\_\,]*(\.(srt|vtt)))/', $filelink, $s))
$srt="https:".$s[1];
require_once("JavaScriptUnpacker.php");
require_once ("tear.php");
$ua="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $filelink);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_USERAGENT, $ua);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION ,1);
curl_setopt($ch, CURLOPT_ENCODING,"");
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 15);
curl_setopt($ch, CURLOPT_TIMEOUT, 25);
$h = curl_exec($ch);
curl_close($ch);

$out="";
if (preg_match("/eval\(function\(p,a,c,k,e,[r|d]?/",$h)) {
$jsu = new JavaScriptUnpacker();
$out = $jsu->Unpack($h);
}

if (preg_match("/sources\:\[\{file\:\"([^\"]+)\"/",$out,$m))
$link=$m[1];
if ($link && $flash <> "flash")
$link=$link."";
}
echo $link;
?>

<style>
@keyframes fadeIn {
0% { opacity: 0; transform: translateY(-20px); }
100% { opacity: 1; transform: translateY(0); }
}

@keyframes letterAppear {
0% { opacity: 0; transform: translateY(-20px); }
100% { opacity: 1; transform: translateY(0); }
}

.loading-content {
font-size: 30px;
font-family: 'Netflix Sans', Arial, sans-serif;
color: #02cf32;
animation: fadeIn 1s ease forwards, repeatLetters 3s linear infinite;
opacity: 0;
}

.loading-content span {
display: inline-block;
opacity: 0;
animation: letterAppear 0.5s ease forwards;
animation-delay: calc(0.1s * var(--index));
}

@keyframes repeatLetters {
0% { opacity: 1; }
50% { opacity: 0; }
100% { opacity: 1; }
}
</style>
<!-- Loading section -->
<div class="loader_bg" id="loader_bg" style="position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.8); display: flex; justify-content: center; align-items: center; z-index: 9999;">
<div class="loader" style="display: flex; flex-direction: column; align-items: center;">
<div id="image-container" style="width: 300px;"></div>

<div class="loading-content">
<span data-text-preloader="C" style="--index: 1;">C</span>
<span data-text-preloader="A" style="--index: 2;">A</span>
<span data-text-preloader="R" style="--index: 3;">R</span>
<span data-text-preloader="G" style="--index: 4;">G</span>
<span data-text-preloader="A" style="--index: 5;">A</span>
<span data-text-preloader="N" style="--index: 6;">N</span>
<span data-text-preloader="D" style="--index: 7;">D</span>
 

249

6,622

6,642

Top