Take $g_file_upload_method as an example. Currently, it’s written like this where the default value is buried inside the whole paragrph:
What I suggest is something like this (the Values line is optional):$g_file_upload_method
- Specify the location for uploading attachments. This can be DISK, DATABASE, or FTP. In case of FTP, the files are saved on the webserver (same as disk) as well as on the specified FTP server. Default value is DATABASE. In case of DISK / FTP upload methods you need to provide the webserver with write access rights to the configured upload path (configured in the project) and temporary upload path (used by PHP).
$g_file_upload_method
- Values: DISK, DATABASE, FTP
Specify the location for uploading attachments. In case of FTP, the files are saved on the webserver (same as disk) as well as on the specified FTP server. In case of DISK / FTP upload methods you need to provide the webserver with write access rights to the configured upload path (configured in the project) and temporary upload path (used by PHP).
Default: DATABASE