Posted by Jerry Stuckle on 08/06/06 21:25
Steve wrote:
>
>
> Benjamin Esham wrote:
>
>> As another poster suggested, try using "<?php" instead of just "<?".
>>
>
> Something must definitely be wrong in my PHP setup. As soon as I change
> "<?" to "<?php" at the beginning of functions.php, nothing is displayed
> at all - even the view source is completely blank.
>
> Why would phpinfo() work, but it doesn't read this file correctly?
>
> Thanks.
>
> Steve
Sounds like you might have a syntax error in your functions.php file.
First of all, enable all errors in your php.ini file:
error_reporting = E_ALL
Then either check your Apache error log file (if you're using the
default logging), or set
display_errors = On
in your php.ini file (not recommended for production systems) to see
what error you're getting.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
[Back to original message]
|