All Collections
Wordify Help
How to modify the PHP Config (Vars & Settings)
How to modify the PHP Config (Vars & Settings)

This article describes which php settings and config options can be modified and how to modify them on the Wordify platform.

Nick avatar
Written by Nick
Updated over a week ago

How do I modify the PHP Config?

To modify the PHP config follow these steps:

  1. Click edit next to the site name you wish to change

  2. Goto Hosting > PHP

  3. Click the edit icon next to the config you wish to update


Which settings can be changed?

Wordify allows you to modify the following PHP settings:

  • display_errors - This determines whether errors should be printed to the screen as part of the output or if they should be hidden from the user.

  • max_execution_time - This sets the maximum time in seconds a script is allowed to run before it is terminated by the parser. This helps prevent poorly written scripts from tying up the server. The default setting is 30.

  • max_input_time - This sets the maximum time in seconds a script is allowed to parse input data, like POST, GET and file uploads.

  • max_input_vars - This sets the maximum number of input variables allowed per request and can be used to deter denial of service attacks involving hash collisions on the input variable names.

  • memory_limit - This sets the maximum amount of memory in bytes that a script is allowed to allocate. This helps prevent poorly written scripts from eating up all available memory on a server.

  • post_max_size - Sets max size of post data allowed. This setting also affects file upload. To upload large files, this value must be larger than upload_max_filesize. Generally speaking, memory_limit should be larger than post_max_size.

  • upload_max_filesize - The maximum size of an uploaded file.

Did this answer your question?