> I host my website on my friends’ server. He and I were looking into PHP
> & PostNuke and we liked the features. He installed everything, listed
> in the subject, on his site and came up with bunch of warnings: Use of
> undefined constant… I have an almost exact same setup server at home so
> I tried installing everything myself with the same results. I am almost
> certain it is my install of PHP, but I am open to any suggestions.
Looks like different error_reporting settings.
Search for error_reporting in php.ini.
Try to you change the line to error_reporting = E_ALL & -E_NOTICE
The warnings you get are probably caused by arrays used like
$my_array[field] instead of $my_array['field'].
Hope that helps
Jens
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]