🧬 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

FieldDescription
PHP VersionCurrent 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 NameDefault ValueDescription
Max Execution Time (max_execution_time)30 secMaximum time a script is allowed to run before timeout.
Max Input Time (max_input_time)-1 secMaximum time a script can spend parsing input data. -1 = unlimited.
Max Input Vars (max_input_vars)1000Max number of input variables per request (form fields, query params).
Memory Limit (memory_limit)128 MBMaximum amount of memory a script can consume.
Post Max Size (post_max_size)8 MBMaximum size of POST data, including file uploads.
Upload Max Filesize (upload_max_filesize)2 MBMaximum allowed size for each uploaded file.
Session Max Lifetime (session.gc_maxlifetime)1440 secHow long session data is stored before being cleaned up.
Output Buffering (output_buffering)4096 bytesControls the amount of data that is buffered before being sent to the browser.
Allow URL fopen (allow_url_fopen)On or OffEnables 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.