edel
Joined: 20 Mar 2005 Posts: 1
|
Posted: Sun Mar 20, 2005 10:12 am Post subject: How to fix "undefined" warnings |
|
|
I didn't have access to the php.ini file as suggested so here's how I eliminated all the "undefined" warnings.
On the top of L10FmX.php I added to <?php
<?php
// Turn off all error reporting
error_reporting(0); |
|