Beskrivning
Detta tillägg kan användas för att anpassa PHP-inställningar för din WordPress-installation.
The plugin will modify either the .htaccess file or .user.ini file in order to change the current php settings directly from within the settings page.
Since the configuration file needs to be modified this file must be writable for this plugin to work as expected.
Looking for help
I am currently in the search for someone who would like to help me with something of the following:
- Create a dashboard icon which can be used in the admin menu.
- Create a banner that would be displayed on the plugins homepage at wordpress.org.
- Design a nicer and more intuitive admin interface.
- Create a solid looking icon that can be used on multiple places.
If you would like to help with anything of the above, please do not hesitate and contact me either on slack or by email.
Pro version
The pro version comes with extended features such as:
- Support to set environment variables in your .htaccess file.
- Support to enable/disable WP_DEBUG from the configuration page.
- Enable error logging and set path to log file.
- Hints for most of the configurable PHP settings.
- Support to backup your configuration file before applying any changes.
- Create multiple configurations that can be used to easily switch between different settings.
- Extended support.
You can get the premium version for only 15 EUR, or by buying me a couple of beers at buymeacoffee.
Do not forget to add your email address or other contact information, and I will send you a reply with instructions on how to get the premium version.
The Pro license is valid for a year and can be used on up to three sites.
Please contact me by e-mail at cyclonecode@gmail.com for further instructions on how to get the pro version.
Apache modul
When PHP is running as an Apache module the .htaccess file will be used to set customized settings; make sure so that this file exists and is writable by the webserver.
CGI/Fast-CGI
If instead PHP is running in CGI/Fast-CGI mode then a custom INI file will be used. The name of this file depends on the value of user_ini.filename in the php configuration, by default it is .user.ini.
You can check the name of you custom INI file in the PHP Information table. The custom INI file should be placed under the root folder and most be writable by the webserver.
Notice that there is also a User INI file cache TTL value in the information table, this value tells how long the custom INI file will be cached before it gets reloaded.
For instance, if this value is set to 300 then any changes to your custom INI file will not be reflected for up to 5 minutes. The name for this setting in the php configuration is user_ini.cache_ttl.
On important thing is to make sure that your .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>
Tillgängliga inställningar
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.
Resurser
En fullständig lista med vilka inställningar som kan redigeras hittar du här: Lista med php.ini direktiv
Observera att direktiv markerade med PHP_INI_SYSTEM
inte kan ändras.
Varning
Make sure you know how a value should be configured and what different settings do before changing anything.
This is important since some settings might render your page inaccessible, depending on what value you are using.
A good example of this is the variables_order configuration:
Sets the order of the EGPCS (Environment, Get, Post, Cookie, and Server) variable parsing. For example, if variables_order is set to ”SP” then PHP will create the superglobals $_SERVER and $_POST, but not create $_ENV, $_GET, and $_COOKIE. Setting to ”” means no superglobals will be set.
If this value would be configured to EPCS then no $_GET superglobal would be set which would make your page inaccessible.
Another example is setting the post_max_size to a very low value so that no form data is sent to the server, which in turn would result in that form data is never saved.
If you by mistake changed some value and your site is now inaccessible you could simply manually remove everything from between the plugin markers in your .htaccess file:
# BEGIN CUSTOM PHP SETTINGS
php_value variables_order EPCS <-- Remove
# END CUSTOM PHP SETTINGS
Hjälp
Om du stöter på problem, tveka inte att skapa ett nytt inlägg under i hjälp-sektionen:
https://wordpress.org/support/plugin/custom-php-settings/
You can also try contacting me on slack.
Skärmdumpar
Anpassa PHP-inställningar från WordPress-administrationen. En file .htaccess
med modifierade PHP-inställningar.En tabell med alla PHP-inställningar som kan anpassas. Tabell som visar information om den nuvarande PHP-miljön. Listning med alla aktiva PHP-utökningar. Alla $_SERVER-variabler. Alla $_COOKIE-variabler.
Installation
- Ladda upp custom-php-settings till katalogen /wp-content/plugins/.
- Aktivera tillägget från menyn Tillägg i WordPress.
- Du kan nu anpassa dina PHP-inställningar från inställningssidan som du hittar under wp-admin/tools.php?page=custom-php-settings.
Vanliga frågor
-
I have saved a setting in the editor but the PHP setting does not reflect this?
-
Make sure so you have checked the Update configuration file checkbox beneath the editor.
Recensioner
Bidragsgivare och utvecklare
”Custom PHP Settings” är programvara med öppen källkod. Följande personer har bidragit till detta tillägg.
Bidragande personer”Custom PHP Settings” har översatts till 1 språk. Tack till översättarna för deras bidrag.
Översätt ”Custom PHP Settings” till ditt språk.
Intresserad av programutveckling?
Läs programkoden, kika på SVN-filförvaret eller prenumerera på utvecklarloggen via RSS.
Ändringslogg
= 1.4.7
– Add support to search for settings.
– Add support to only show customized settings.
– Use filter FILTER_UNSAFE_RAW instead of FILTER_SANITIZE_STRING.
– Fix bug on status page where duplicate plugins was shown as enabled/disabled.