![]() 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/domains/soundstudiopro.com/public_html/ |
<?php
// Simple 404 error page to prevent redirect loops
http_response_code(404);
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 - Page Not Found | SoundStudioPro</title>
<style>
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
color: white;
margin: 0;
padding: 0;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
}
.container {
max-width: 600px;
padding: 2rem;
}
.error-code {
font-size: 8rem;
font-weight: 900;
color: #667eea;
margin-bottom: 1rem;
text-shadow: 0 0 30px rgba(102, 126, 234, 0.5);
}
.error-title {
font-size: 2.4rem;
font-weight: 700;
margin-bottom: 1rem;
}
.error-message {
font-size: 1.6rem;
color: #a0aec0;
margin-bottom: 3rem;
line-height: 1.6;
}
.btn {
display: inline-block;
background: linear-gradient(135deg, #667eea, #764ba2);
color: white;
padding: 1.5rem 3rem;
border-radius: 12px;
text-decoration: none;
font-weight: 600;
font-size: 1.6rem;
transition: all 0.3s ease;
margin: 0 1rem;
}
.btn:hover {
transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}
.home-link {
margin-top: 2rem;
}
.home-link a {
color: #667eea;
text-decoration: none;
font-weight: 600;
}
.home-link a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<div class="error-code">404</div>
<h1 class="error-title">Page Not Found</h1>
<p class="error-message">
Oops! The page you're looking for doesn't exist.
It might have been moved, deleted, or you entered the wrong URL.
</p>
<div>
<a href="/" class="btn">🎵 Go Home</a>
<a href="/community_fixed.php" class="btn">🎼 Browse Music</a>
</div>
<div class="home-link">
<a href="/">← Back to SoundStudioPro</a>
</div>
</div>
</body>
</html>