March 9, 201411 yr We have managed to get our website to talk to Filemaker Pro 13 via FX.php. However the web pages keep displaying minor error messages such as Undefined variables. We have checked that the php.ini file has display_errors turned off and it does. The php.ini file was found on Filemaker Server in Web Publishing/publishing-engine/lib/php/php.ini I have attached 2 screenshots - one of the errors displaying on a web page and another of the php.ini code for display_errors. is there something else I need to do to hide these errors? All advice gratefully received. sorry forgot to attach the screenshots - here they are
March 10, 201411 yr Ideally, you would work out why those notices are appearing - they indicate an issue with the coding... That said in php.ini: error_reporting = E_ALL & ~E_NOTICE & ~E_WARNING Or on the offending page just after your opening php tag: error_reporting(0); Cheers Webko
Create an account or sign in to comment