<?xml version="1.0"?>
<PHP-Config>
<last-modified>10-Mar-2001 10:00:00</last-modified>
<modified-by>Mike</modified-by>
<!-- dev-status - indicates if the resulting file is to be used in a development (dev) environment or a live environment, other environments could be added (for example live-staging) -->
<dev-status>dev</dev-status>
<server>Win32</server>
<!-- the active status will comment the entire section (for example with the java settings) if it is set to false (default is true and should normally be set to this) -->
<section name="general" active="true">
	<section-description>
	This is the section for general php configuration.
	</section-description>
	<!-- vartype = obvious, but i have noticed that there are different boolean types eg. 0/1 and On/Off are these equivilent or do they need to be seperated?
if commented is true, the setting will be commented in the resulting php.ini file
 -->
	<variable name="safe_mode" value="On" vartype="OnOff" commented="false">
	<!-- the warning will produce the message if the value of the variable matches the preg expression (eg with preg_match()) -->
			<warning envs="live,dev" preg="/Off/">
				You have chosen to not use safe mode, this is bad...
			</warning>
	</variable>
	<variable name="mysql_support" value="yes" vartype="YesNo" commented="false">
			<warning envs="live,dev" preg="/Off/">
				You have chosen to not use mysql support
			</warning>
	</variable>
</section>
<!-- this is a comment -->
<section name="mysql" active="false">
	<section-description>
	Fine tuning of mysql parameters - normally these do not need to be set.
	</section-description>
	<variable name="mysql.login" value="yes" vartype="YesNo" commented="false">
			<comments>The MySQL login name ** do not change this **</comments>
			<warning envs="live,dev" preg="/Off/">
				You have chosen to not use mysql support, php and MySQL love each other and it would be a shame to keep them apart
			</warning>
	</variable>
</section>
</PHP-Config>
