Wordpress Tutorials
- Wordpress
- Directory and file structure.
- Wordpress configuration
- Htaccess Configuration
- WP-CONTENT user playground
- Increase file size loading in phpmyadmin on localhost.
- Fatal error: Allowed memory size of x bytes
- wordpress Dashboard
- How to set local host domain or Virtual host
- Header, index and footer page.
- How to create wordpress Themes
- Html to wordpress themes
- Child Themes
- Increase Upload Max Filesize
- wp_enqueue_style & script
- How to make plugin
- Create Plugin
- Insert data into table using plugin.
- Show data from database
- Hook & Filter
- Template Or Custom page template
- Custom Login template
- How to show post on diffrent page.
- Custom widgit
- How to use contact form 7 plugin.
- Wordpress Database
- How to use Duplicator plugin
- How to fix Fatal Error: Maximum Execution Time Exceeded in WordPress
- How to debuggin mode on in wordpress
- Auto update plugin and themes
- How to Transfer WordPress
- How to change a WordPress site URL
- Top 10 issues in wordpress
- wordpress website link
Wordpress setting
Wordpress Function
wordpress top 10 problems
Important Links
How to increase the file size of uploading on localhost.
post_max_size=1280M
upload_max_filesize=1280M
max_execution_time = 300 //increase time as per your server requirement.
max_allowed_packet = 100M
Maximum execution time of 60 seconds exceeded in D:\xampp\htdocs\bimber\wp-includes\wp-db.php on line 1811
max_execution_time = 30 ; Maximum execution time of each script, in seconds
Another way is to add this code to your wp-config.php (might not work on all servers):
set_time_limit (60); // replace 60 with value in seconds, use 0 for unlimited script execution time
write this code in wp-config.php page of wordpress.
//set_time_limit(600); // above before given line /* That's all, stop editing! Happy blogging. */
Third way is to set this in your wp-config.php:
ini_set('max_execution_time', 300); //300 seconds = 5 minutes
@set_time_limit( 300 ); // set in deprecated.php in wp-include/deprecated.php
WP Maximum Execution Time Exceeded
WP Maximum Execution Time Exceeded is a very simple and effective plugin. If you're receiving the message "Maximum execution time of 30 seconds exceeded" or "Maximum execution time of 60 seconds exceeded," this plugin is for you.
download and install plugin for this issues. plugin name wp-maximum-execution-time-exceeded.1.0.1
only install and activate.
Download wp-maximum-execution-time-exceeded.1.0.1 plugin
the problem of maximum execution time exceeded, WordPress Codex offers two solutions. One, edit the .htaccess file and two, edit the php.ini file. This plugin uses the first of the two suggestions. WP Maximum Execution Time Exceeded will add and delete the necessary code to the .htaccess file. When WP Maximum Execution Time Exceeded is activated after installation, the plugin will write to the .htaccess file. To delete the code, simply deactivate the plugin. There is no administration page.
You set your PHP error level in the php.ini fi le. With WAMP, you can access this fi le through the WAMP control panel, under the PHP fl yout. Set your error reporting directive to be E_ALL and E_STRICT
error_reporting = E_ALL | E_STRICT