July - WooCommerce WordPress Theme
  • Introduction
  • Getting Started
  • Changelog
  • Installation
    • Step 1 - Download Theme
    • Step 2 - Install Theme
    • Step 3 - Theme Setup
    • Step 4 - Select home page
  • Update Theme
  • Theme Options
  • Header/Footer Builder
  • Customize
    • General
    • Header
    • Blog
    • Portfolio
    • Shop
    • Page Title
    • Typography
    • Popup
    • Color
    • Layout
    • Page
    • 404 Page
    • Footer
    • Social Sharing
    • Notices
    • Button
    • Menus
  • Store Setup
    • WooCommerce
    • Product Catalog
      • Products Filter
      • Catalogs Elementor
      • Catalog Grid
    • Product Page
      • Color Swatches
      • Image Swatches
      • Time Countdown
      • Stock Countdown
      • Real Time Visitor
      • Trust Badge
      • Video / 3D / VR
      • Delivery Infomation
      • Size Guide
      • Buy more save more
      • Product Layout
      • Add To Cart
      • Product compare
      • Product wishlist
      • Product quick view
    • Size Guide
    • Delivery Return
  • Translation
    • Setup Multiple Language
    • Setup One Language
  • FAQ'S
    • How to fix the problem can't install a theme when using file.zip after downloading to Evanto
    • How to fix problems with the footer in mobile
    • Fixing Fonts appear as bold or do not load (Kirki issue)
    • How to import the template
    • How to import the missing page template
    • How to config currency?
    • How to create Google Maps API For Free
    • Site Speed
    • How to Increase PHP Time Limit for a WordPress Site?
    • Setup Menubar
    • How to create Mega Menu
    • Customizing header
    • Fixing Outdated WooCommerce Templates
    • How to create Woocomerce Pages
    • How to backup the theme
    • How to Configure WordPress to Use SMTP For Sending Emails?
Powered by GitBook
On this page
  1. FAQ'S

How to Increase PHP Time Limit for a WordPress Site?

PreviousSite SpeedNextSetup Menubar

Last updated 2 years ago

The PHP Time Limit is the amount of time that your site will spend on a single operation before timing out. When an operation reaches the time limit set, then it will return a fatal error that looks like this:

Fatal error: Maximum execution time of xx seconds exceeded...

The default value for PHP time limit on most hosts for the PHP Time Limit is 30 seconds. You can increase this limit by following any of the methods mentioned below.

Method 1: Edit file .htaccess:

Add the following to .htaccess (Make sure you back up .htaccess before you edit it):

php_value max_execution_time 3000

Method 2: Edit file wp-config.php:

Add the following to wp-config.php:

set_time_limit(3000);

Method 3: Editing php.ini

Add the following to php.ini:

max_execution_time = 3000

Read more about Maximum execution time exceeded on .

WordPress.org