Do you think there might be configuration I'm missing?
I even created a raw php mysql php script to see if I could grab the data, the raw script was able to output data from the database.
Here's the raw script
<?php
$con = mysql_connect(“localhost”,”root”,””);
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db(“uloop_prod”, $con);
$result = mysql_query(“SELECT * FROM person limit 10”);
while($row = mysql_fetch_array($result))
{
echo $row['first_name'] . " " . $row['last_name'];
echo “\n”;
}
mysql_close($con);
?>