Field | Description |
---|---|
PHP Version | Current PHP runtime for your store (e.g. 8.4 ) |
β οΈ Note: PHP version is by default managed by WC Studio for stability and compatibility. You may choose custom PHP version, or you may contact support.
Setting Name | Default Value | Description |
---|---|---|
Max Execution Time (max_execution_time ) | 30 sec | Maximum time a script is allowed to run before timeout. |
Max Input Time (max_input_time ) | -1 sec | Maximum time a script can spend parsing input data. -1 = unlimited. |
Max Input Vars (max_input_vars ) | 1000 | Max number of input variables per request (form fields, query params). |
Memory Limit (memory_limit ) | 128 MB | Maximum amount of memory a script can consume. |
Post Max Size (post_max_size ) | 8 MB | Maximum size of POST data, including file uploads. |
Upload Max Filesize (upload_max_filesize ) | 2 MB | Maximum allowed size for each uploaded file. |
Session Max Lifetime (session.gc_maxlifetime ) | 1440 sec | How long session data is stored before being cleaned up. |
Output Buffering (output_buffering ) | 4096 bytes | Controls the amount of data that is buffered before being sent to the browser. |
Allow URL fopen (allow_url_fopen ) | On or Off | Enables file access via URL (e.g. using file_get_contents() on URLs). |
max_execution_time
higher if youβre importing large product catalogs.allow_url_fopen
enabled if youβre using external API integrations.