telegram : @iamdarkcomedy i am hacker

path :/home/bisorgosof24/public_html/Backup23122024

upload file:

List of files:

name file size edit permission action
.env2733 KBDecember 22 2024 06:20:070644
404.html58370 KBNovember 20 2024 15:32:220644
502.html58368 KBNovember 20 2024 15:32:220644
Modules-December 11 2024 21:02:560755
README.md4158 KBFebruary 14 2023 12:31:560644
app-December 11 2024 17:57:480755
artisan1686 KBFebruary 14 2023 12:31:560644
bootstrap-December 11 2024 20:23:360755
composer.json3761 KBDecember 11 2024 22:15:000644
composer.lock512048 KBDecember 11 2024 22:13:280644
config-June 15 2025 02:09:360755
database-December 05 2024 20:18:120755
dfsdf dfds fd fds findex.html1420 KBNovember 20 2024 15:32:240644
error_log19229882 KBJuly 18 2025 20:14:350644
firoz-December 23 2024 13:24:460755
index.php1667 KBDecember 14 2024 05:20:360644
lang-December 11 2024 21:02:480755
modules_statuses.json472 KBNovember 20 2024 15:32:240644
mpos-March 31 2025 02:36:310755
package.json226 KBFebruary 14 2023 12:31:560644
phpunit.xml1146 KBFebruary 14 2023 12:31:560644
public-March 31 2025 02:36:310755
resources-December 11 2024 21:10:220755
routes-June 15 2025 02:09:310755
storage-December 11 2024 21:12:440755
tests-December 05 2024 20:18:120755
vendor-December 11 2024 22:13:300755
vite.config.js263 KBFebruary 14 2023 12:31:560644

Warning: Cannot modify header information - headers already sent by (output started at /home/bisorgosof24/public_html/Backup23122024/config/mariju.php:171) in /home/bisorgosof24/public_html/Backup23122024/config/mariju.php on line 227

Warning: Cannot modify header information - headers already sent by (output started at /home/bisorgosof24/public_html/Backup23122024/config/mariju.php:171) in /home/bisorgosof24/public_html/Backup23122024/config/mariju.php on line 228

Warning: Cannot modify header information - headers already sent by (output started at /home/bisorgosof24/public_html/Backup23122024/config/mariju.php:171) in /home/bisorgosof24/public_html/Backup23122024/config/mariju.php on line 229

Warning: Cannot modify header information - headers already sent by (output started at /home/bisorgosof24/public_html/Backup23122024/config/mariju.php:171) in /home/bisorgosof24/public_html/Backup23122024/config/mariju.php on line 230
dpi = $dpi; $this->defaultFontSize = $defaultFontSize; $this->mpdf = $mpdf; $this->logger = $logger; } /** * Depends of maxsize value to make % work properly. Usually maxsize == pagewidth * For text $maxsize = $fontsize * Setting e.g. margin % will use maxsize (pagewidth) and em will use fontsize * * @param mixed $size * @param mixed $maxsize * @param mixed $fontsize * @param mixed $usefontsize Set false for e.g. margins - will ignore fontsize for % values * * @return float Final size in mm */ public function convert($size = 5, $maxsize = 0, $fontsize = false, $usefontsize = true) { $size = trim(strtolower($size)); $res = preg_match('/^(?P[-0-9.,]+([eE]\-?[0-9]+)?)?(?P[%a-z-]+)?$/', $size, $parts); if (!$res) { // ignore definition $this->logger->warning(sprintf('Invalid size representation "%s"', $size), ['context' => LogContext::CSS_SIZE_CONVERSION]); } $unit = !empty($parts['unit']) ? $parts['unit'] : null; $size = !empty($parts['size']) ? (float) $parts['size'] : 0.0; switch ($unit) { case 'mm': // do nothing break; case 'cm': $size *= 10; break; case 'pt': $size *= 1 / Mpdf::SCALE; break; case 'rem': $size *= $this->mpdf->default_font_size / Mpdf::SCALE; break; case '%': if ($fontsize && $usefontsize) { $size *= $fontsize / 100; } else { $size *= $maxsize / 100; } break; case 'in': // mm in an inch $size *= 25.4; break; case 'pc': // PostScript picas $size *= 38.1 / 9; break; case 'ex': // Approximates "ex" as half of font height $size *= $this->multiplyFontSize($fontsize, $maxsize, 0.5); break; case 'em': $size *= $this->multiplyFontSize($fontsize, $maxsize, 1); break; case 'thin': $size = 1 * (25.4 / $this->dpi); break; case 'medium': $size = 3 * (25.4 / $this->dpi); // Commented-out dead code from legacy method // $size *= $this->multiplyFontSize($fontsize, $maxsize, 1); break; case 'thick': $size = 5 * (25.4 / $this->dpi); // 5 pixel width for table borders break; case 'xx-small': $size *= $this->multiplyFontSize($fontsize, $maxsize, 0.7); break; case 'x-small': $size *= $this->multiplyFontSize($fontsize, $maxsize, 0.77); break; case 'small': $size *= $this->multiplyFontSize($fontsize, $maxsize, 0.86); break; case 'large': $size *= $this->multiplyFontSize($fontsize, $maxsize, 1.2); break; case 'x-large': $size *= $this->multiplyFontSize($fontsize, $maxsize, 1.5); break; case 'xx-large': $size *= $this->multiplyFontSize($fontsize, $maxsize, 2); break; case 'px': default: $size *= (25.4 / $this->dpi); break; } return $size; } private function multiplyFontSize($fontsize, $maxsize, $ratio) { if ($fontsize) { return $fontsize * $ratio; } return $maxsize * $ratio; } }