Line 12 is the following:
12
require_once( dirname(__FILE__) . /wp-load.php );
You forgot the quotes (so it makes it a string):
require_once( dirname(__FILE__) . '/wp-load.php');