On Friday 05 December 2003 20:43, Karam Chand wrote: > I have set the error reporting to full but nothing > happens. The PHP page loads up blank.
Put the following lines at the top of your program: error_reporting (E_ALL); ini_set('display_errors', 1); That will force ALL errors to be displayed. Now do you see any errors? Do you have any debugging code to confirm that your code is running? Eg: echo "Start"; exec ( "myapp \"Karam\""); echo "End"; > I dont have any idea about safe mode. My PHP is loaded > up in my Host's server. Can I change the settings? If > yes then what should I do? Before even contemplating changing the settings, read the relevant chapter in the manual then check its current settings by using phpinfo(). -- Jason Wong -> Gremlins Associates -> www.gremlins.biz Open Source Software Systems Integrators * Web Design & Hosting * Internet & Intranet Applications Development * ------------------------------------------ Search the list archives before you post http://marc.theaimsgroup.com/?l=php-general ------------------------------------------ /* Your mode of life will be changed to EBCDIC. */ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php