Doesn't look like it..
DocumentRoot "/var/www/html"
short_open_tag is OFF.
This means that <? does not mark the beginnig of PHP code.
This:
<http://158.114.148.90/<? echo $sys_graphics .> " alt="Keystone 2" />
will result in this link:
http://158.114.148.90/<?
so the file is http://158.114.148.90/< (that's what the error log shows up) and ? marks start of query string.
SOLUTION: turn short_open_tag ON in php.ini or start using long open tags - <?php
HTH
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php