Setting PHP options: Difference between revisions

From ULYSSIS documentation
No edit summary
No edit summary
 
Line 1: Line 1:
You can set PHP options you would normally set in <code>php.ini</code> in <code>.user.ini</code>, .
You can set PHP options you would normally set in <code>php.ini</code> in <code>.user.ini</code>.


For example, to increase the maximum filesize of uploads, create a <code>.user.ini</code> file (for example: <code>~/www/.user.ini</code>)
For example, to increase the maximum filesize of uploads, create a <code>.user.ini</code> file (for example: <code>~/www/.user.ini</code>)

Latest revision as of 22:30, 8 July 2020

You can set PHP options you would normally set in php.ini in .user.ini.

For example, to increase the maximum filesize of uploads, create a .user.ini file (for example: ~/www/.user.ini)

upload_max_filesize = 20M
post_max_size = 25M ; post_max_size needs to be larger than upload_max_size

It is also possible to use the ini_set function, however this does not support all options.