𧬠PHP Settings
WC Studio gives you direct access to essential PHP configuration values for your store β no server access required. These settings help you adjust performance, file upload limits, and script behavior.π Go to: WC Studio β Stores β Select a Store β Settings β PHP
π§ Current PHP Version
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.
βοΈ PHP Configuration Values
Below are the configurable values available in your dashboard: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). |
π‘ Tips for Store Owners
- β Increase upload size limits if youβre uploading large images, videos, or product files.
- β Use a higher memory limit if youβre running multiple heavy plugins or page builders.
- β
Set
max_execution_time
higher if youβre importing large product catalogs. - β
Leave
allow_url_fopen
enabled if youβre using external API integrations.