Warning: main(common/config_db.php): failed to open stream: No such file or directory in /home2/ianbr/public_html/inc/head.index.php on line 6
The error message tells you exactly whats wrong, it can't find the file you're trying to include. Possibly because common/config_db.php is in your root directory, and your trying to include it from the "inc" folder.
If thats the case you can do one of two things,
include("../common/config_db.php");
which tells include to go up a directory and then into the common folder.
OR
include($_SERVER['DOCUMENT_ROOT']."/common/config_db.php");
$_SERVER['DOCUMENT_ROOT'], is essentially just "/home2/ianbr/public_html/"