changes in php.ini file after the installation Redhat 8.0 php-4.2.2-8.0.5. To make old php application work, change in php.ini: [root@igloo 8.0]# diff /etc/php.ini /etc/php.ini.orig 71c71 < short_open_tag = On --- > short_open_tag = Off 201c201 < max_execution_time = 300 ; Maximum execution time of each script, in seconds --- > max_execution_time = 30 ; Maximum execution time of each script, in seconds 241c241 < error_reporting = E_ALL --- > error_reporting = E_ALL & ~E_NOTICE 253c253 < display_startup_errors = On --- > display_startup_errors = Off 258c258 < log_errors = On --- > log_errors = Off 312c312 < register_globals = On --- > register_globals = Off 329c329 < magic_quotes_gpc = Off --- > magic_quotes_gpc = On |