Setting PHP options

From ULYSSIS documentation
Revision as of 03:40, 9 July 2014 by Bert (talk | contribs) (Created page with "Just like PHP errors, you can set PHP options you would normally set in php.ini using .htaccess. You just add the option preceded by php_flag and follow by the value: php_va...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Just like PHP errors, you can set PHP options you would normally set in php.ini using .htaccess.

You just add the option preceded by php_flag and follow by the value:

php_value upload_max_filesize 20M
php_value post_max_size 25M
php_value memory_limit 32M

You can of course also use the [[1]] function.