![]() Server : Apache/2 System : Linux server-15-235-50-60 5.15.0-164-generic #174-Ubuntu SMP Fri Nov 14 20:25:16 UTC 2025 x86_64 User : gositeme ( 1004) PHP Version : 8.2.29 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname Directory : /home/gositeme/.cursor-server/data/User/History/-4a30c14b/ |
<!DOCTYPE html>
<html>
<head>
<title>Global Player Test</title>
<style>
body {
background: #1a1a1a;
color: white;
font-family: Arial, sans-serif;
margin: 0;
padding: 20px;
}
.test-content {
min-height: 100vh;
padding-bottom: 100px; /* Space for player */
}
</style>
</head>
<body>
<div class="test-content">
<h1>Global Player Test</h1>
<p>This page should show the global player at the bottom.</p>
<p>If you don't see it, there's an issue with the global player.</p>
</div>
<?php include 'includes/global_player.php'; ?>
<script>
console.log('Page loaded, checking for global player...');
setTimeout(() => {
const player = document.getElementById('globalMusicPlayer');
if (player) {
console.log('✅ Global player found:', player);
console.log('Player visibility:', window.getComputedStyle(player).display);
console.log('Player position:', window.getComputedStyle(player).position);
} else {
console.log('❌ Global player not found');
}
}, 1000);
</script>
</body>
</html>