xeround is a MySQL web host, which works great. But when I try to call xeround from inside of my heliohost account, it doesn't work. I wrote a small script to test if xeround is up or not, and posted it on one of my servers, and heliohost servers. The code always reports good for my server, and always fails for yours. Could anyone give me a helping hand? (Hiliohost) http://expressivecomputing.com/testing/index.php (private server) http://expressivecomputing.homelinux.org:8080/sql/index.php The script, in case anyone cares:
<?php
$con = @mysql_connect("instance25706.db.xeround.com:16855","username","password");
if (!$con)
{
echo '<font color="red">Xeround Not Working</font><br /><br />';
}
else
{
echo '<font color="green">Xeround Working</font><br /><br />';
}
$con = @mysql_connect("expressivecomputing.homelinux.org","username","password");
if (!$con)
{
echo '<font color="red">Expressive Computing Internal Not Working</font><br /><br />';
}
else
{
echo '<font color="green">Expressive Computing Internal Working</font><br /><br />';
}
$con = @mysql_connect("direct.expressivecomputing.com","username","password"); // I use cloudflare, so don't mind the subdomain weirdness
if (!$con)
{
echo '<font color="red">Hilio Not Working</font><br /><br />';
}
else
{
echo '<font color="green">Hilio Working</font><br /><br />';
}
?>