| 开发者 |
cyclonecode
freemius |
|---|---|
| 更新时间 | 2025年11月1日 15:40 |
| 捐献地址: | 去捐款 |
| PHP版本: | 5.6 及以上 |
| WordPress版本: | 6.8.3 |
| 版权: | GPLv2 or later |
| 版权网址: | 版权信息 |
.user.ini file is blocked by your webserver. If you are running NGINX this can be done by adding:
location ~ /\.user\.ini { deny all; }
to your server configuration. The same thing using Apache is done by adding the following to the configuration if not already done:
<Files .user.ini> order allow,deny deny from all </Files>
Available Settings
The settings table will display all non-system php settings that can be customized by the plugin. All modified settings will be displayed in red in this table.
Some settings might be displayed in red because they are changed somewhere else, perhaps through a customized php.ini file, by WordPress itself, a plugin or in some other way.
For instance if you have enabled WP_DEBUG in your wp-config.php file the error_reporting setting will turn red.
If you have questions or perhaps some idea on things that should be added you can also try slack.
Multiple Configurations
The premium version adds support for creating multiple named configurations which all can hold their own custom PHP settings.
You will then be able to easily switch between the different configurations entries applying them to you configuration file.
Environment Variables
In the premium version, when running PHP as an apache module and using an .htaccess file for configuration, you are able
to add custom environment variables. These will be accessible by using the super global $_SERVER array.
In order for this to work you will need to have the mod_env module enabled in your apache setup.
Resources
A complete list of settings that can be modified can be found here: List of php.ini directives
Notice that directives marked as PHP_INI_SYSTEM can not be modified.
Make sure so you have checked the Update configuration file checkbox beneath the editor.