Golo WordPress
  • Introduction
  • Getting Started
  • Changelog
  • Installation
    • Step 1 - Download Theme
    • Step 2 - Install Theme
    • Step 3 - Install Plugins
    • Step 4 - Import Demo Data
      • Import Demo V2
    • Step 5 - Create Pages
    • Step 6 - Permalink Setup
  • Update Theme
  • Theme Options
  • Listings
    • Country
    • Cities
    • Categories
    • Place Type
    • Amenities
    • Add a new place
    • Booking
  • Setup Menubar
  • Header/Footer Builder
  • Customize
  • Widget Sidebar
  • Woocommerce
  • Blog
  • Golo Core
    • Claim Listing
    • Custom Fields
  • FAq's
    • How to add new string in Polylang
    • How to use Google Reviews
    • Fixing Outdated WooCommerce Templates
    • Why don't i see the Claim Listing with the latest version?
    • Additional fields for the listing details
    • How to add a Search Tool to find an Articles on the Blog Page
    • How to create an API Key for Mapbox
    • How to create an API Key for OpenStreetMap
    • How to create Google Maps API For Free 2020
    • How to config URL Slug
    • How to setup Login via Facebook & Google
    • How to translate/edit texts/words?
    • How to edit footer?
    • Why the site lost footer after updated?
    • How to create/edit a pricing package?
    • Why Does Google PageSpeed Insights Show Such Low Scores?
    • How to Configure WordPress to Use SMTP For Sending Emails?
    • How to setup Open/Close Status of Places?
    • How to import/ export WordPress Site?
    • How to remove pages from frontend dashboard menu?
    • How to use Video Background, Slideshow on Homepage?
    • How to edit the Template Golo Framework?
    • Why is the pricing plan page not showing the table?
    • How to Increase PHP Time Limit for a WordPress Site?
    • How long time get Support?
    • Why lose sections in the Place detail after update version 1.4.6?
    • Cloudflare Auto Minify Feature
    • How To Submit Ticket?
    • Missing demo images
  • TIPS & TRICKS
    • WordPress Hosting
    • Support
    • Resource Credits
    • Theme License
Powered by GitBook
On this page

Was this helpful?

  1. FAq's

How to Increase PHP Time Limit for a WordPress Site?

PreviousWhy is the pricing plan page not showing the table?NextHow long time get Support?

Last updated 4 years ago

Was this helpful?

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 300

Method 2: Edit file wp-config.php:

Add the following to wp-config.php:

set_time_limit(300);

Method 3: Editing php.ini

Add the following to php.ini:

max_execution_time = 300

Read more about Maximum execution time exceeded on .

WordPress.org