Did you modify the index.php file? If yes use the original file, if no in the index.php file:
error_reporting(0);
replace with:
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);
Thank you Land Of Bitcoin.
After making these changes I get the following errors when logging in.
Warning: session_start(): open(/var/lib/php/session/sess_pq0pjs8tvk569m8h3dfa8sl0h1, O_RDWR) failed: No such file or directory (2) in /server/root/faucet/index.php on line 302
Notice: Undefined index: logged_in in /server/root/faucet/index.php on line 303
You are not logged in.
Login here.
Warning: Unknown: open(/var/lib/php/session/sess_pq0pjs8tvk569m8h3dfa8sl0h1, O_RDWR) failed: No such file or directory (2) in Unknown on line 0
Warning: Unknown: Failed to write session data (files). Please verify that the current setting of session.save_path is correct (/var/lib/php/session) in Unknown on line 0
When I check my phpinfo.php i see:
session.save_path /var/lib/php/session
I have also manually created this directory with 777 permissions on all folders and subfolders.
I'd still like to get this set up, and I know you aren't necessarily tech support over here, but If anyone has any ideas, they'd be appreciated. I may just end up scratching the faucet idea altogether. But I do appreciate the script you have released, so thanks anyway
