Difference between revisions of "PHP Info"

From TheBestLinux.com
Jump to navigation Jump to search
(Created page with "= PHP - Miscellaneous Information = = PHP Configuration = System wide configuration on a Linux system is contained in the /etc/php.ini file. To turn off output buffering, add t...")
 
Line 5: Line 5:
  
 
To turn off output buffering, add this to the /etc/php.ini file:
 
To turn off output buffering, add this to the /etc/php.ini file:
<pre style"color:blue">
+
<pre "style=color:blue">
 
output_buffering = 0
 
output_buffering = 0
 
</pre>
 
</pre>
 
<br /><br />
 
<br /><br />

Revision as of 00:11, 14 June 2015

PHP - Miscellaneous Information

PHP Configuration

System wide configuration on a Linux system is contained in the /etc/php.ini file.

To turn off output buffering, add this to the /etc/php.ini file:

output_buffering = 0