So, weird, things are working better and connections seem to be being made? Maybe my host updated the server responses? Anyway, I am now getting an error that is more specific:
Fatal error: Uncaught Error: Call to undefined function mysql_select_db() in /usr/www/users/jodenii/cbauer/weddingrings.php:94 Stack trace: #0 {main} thrown in /usr/www/users/jodenii/cbauer/weddingrings.php on line 94
This is line 94: mysql_select_db($database_jodenonline, $jodenonline);
These should be defined in the connection script and they are as:
$hostname_jodenonline_i = "db167.pair.com";
$database_jodenonline_i = "jodenii_jodenwr";
@session_start();
$jodenonline_i = mysqli_init();
if (defined("MYSQLI_OPT_INT_AND_FLOAT_NATIVE")) $jodenonline_i->options(MYSQLI_OPT_INT_AND_FLOAT_NATIVE, TRUE);
$jodenonline_i->real_connect($hostname_jodenonline_i, $username_jodenonline_i, $password_jodenonline_i, $database_jodenonline_i) or die("Connect Error: " . mysqli_connect_error());
$jodenonline_i->set_charset('UTF8');
This is old code perhaps ? Not sure where in WA it should be defined.... Also, I put up a simple page with the error detection and a connection script and there was no error displayed. I think we are getting somewhere?
And file directory gives this:
/usr/www/users/jodenii/cbauer