HEX
Server: Apache
System: Linux pdx1-shared-a1-11 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64
User: mollywopper (10344313)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /home/mollywopper/mollywoppersnyb.com/bsb/index.php

<?php // Welcome to Opentape! // This file is kept intentionally simple. If you are seeing it in your web browser, you probably do not have PHP installed :( set_include_path(get_include_path() . PATH_SEPARATOR . "./code/"); // check if critical directories are writeable if ( !is_writeable('settings') || !is_writeable('songs') ) { include ("code/warning.php"); // Current version designed for PHP5+, though we may update to support 4.X.X } elseif (phpversion() < '5.0.0') { include ("code/warning.php"); // If no password is set, show password creation screen } elseif ( file_exists ('settings/.opentape_password.php') === false || filesize ('settings/.opentape_password.php') == 0) { include ("code/welcome.php"); // otherwise, all is well! } else { include("code/mixtape.php"); } ?>