To avoid the possibility I might have overlooked something small ( entirely possible ), I tried adding this into the index.php
PHP Code:
<?php
$success = @include('arrays.php');
if ( !$success )
{
echo "Could not include the arrays file. Trying another method.";
}
$again = @include('/home/aww/public_html/tm/arrays.php');
if ( !$again )
{
echo "Could not include the arrays file again.";
}
$useroot = @include( $DOCUMENT_ROOT . 'arrays.php');
if ( !$useroot )
{
echo "Tried using the doc root that time. No go.";
}
?>
I received all three errors on page load.