<?php
// This will tell you the exact absolute path of the current directory
echo "Current directory: " . getcwd() . "<br>";

// This will list all files in the current directory to verify bypass.so is there
echo "Files in this directory:<pre>";
print_r(scandir(getcwd()));
echo "</pre>";
?>