The subject about warnings was here and there a lot of times already.
---
http://www.boonex.com/forums/#topic/How-not-to-display-PHP-error-and-warnings.htm
In inc/header.inc.php about line 163 find:
error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED);
change to:
error_reporting(0);
Either that, or if you have an option on your server to have php files processed by php 4.3 .... choose it.
---
http://www.boonex.com/forums/#topic/To-site-owners-who-care-about-their-websites.htm
If everything works well, but you see some warning messages on some pages, just turn warnings off by writing "error_reporting(0);" in some of your files, like /etc/admin.inc.php.
---
....
Thank you boonexpert