Undefined Errors fixed

A

alan

Guest
Great code! but I get a lot of undefined errors on first run. Such as:

Warning: Undefined index: deleted_fields_ar in C:\Inetpub\wwwroot\dadabik\admin.php on line 50

Warning: Undefined index: field_to_change_name in C:\Inetpub\wwwroot\dadabik\admin.php on line 51


in Admin.php

Set the error reporting in Php.ini to this:

error_reporting = E_ALL & ~E_NOTICE
;
; - Show only errors
;
;error_reporting = E_COMPILE_ERROR|E_ERROR|E_CORE_ERROR
;
; - Show all errors except for notices
;
;error_reporting = E_ALL; display all errors, warnings and notices

and it fixed the all the displayed errors.


Thanks for the support forum, Hopes this helps someone out aslo
 
Top