I had the same problem but it occured while importing the theme-unit-test-data.xml along with its attachments. I am using WP 3.8.1. It’s a WordPress issue so editing the php.ini has no effect. WP uses a hardcoded value (60 secs) for http_request_timeout of WP_Http in class-http.php
.
To solve it, place this code in functions.php
of your currently active theme:
add_filter( 'http_request_timeout', 'mytheme_bump_request_timeout', 100 );
function mytheme_bump_request_timeout(){
return 300; //Change this to your desired timeout value in ms
}
Related Posts:
- Memory Leak in plugin action
- What is $tab in `install_plugins_{$tab}` hook?
- Multiple files in a plugin
- get 404 when accessing wp-admin/plugin-install.php
- Redirect to another page using contact form 7? [closed]
- Can plugin2 uninstall plugin1 at the very beginning of plugin2’s installation?
- Error with get_price (and others) in self-written plugin to show price
- Fatal error “Call to undefined function is_plugin_active” each time the plugin is activated
- Making a Custom Post Type Plugin – keep getting the white screen of death
- Hook into install email
- Plugin Breaking WordPress Login
- How to fix ‘Call to undefined function do_settings()’ error?
- WP Elementor Pro causing crtical failure on website
- Pass PHP variable to javascript
- Namespaces in WordPress – How do I initiate the main class?
- wordpress get meta value by meta key
- What areas to Unit test while building a plugin?
- Function to activate WordPress theme inside a plugin
- Custom Post Type Statuses
- How does wordpress distinguish a plugin’s main php file from other php files? [duplicate]
- Deleting images through upload folder, but not deleting from media library
- how to use ajax to display from database and load more in wordpress plugin
- Plugin: How should I handle deleting comments?
- wordpress plugin that show my reputation (points) in any stackexchange project in my wordpress blogs
- Why load_textdomain work but not load_plugin_textdomain?
- Passing select control value to block
- Create or Update thousands of woocommerce products via PHP
- send_headers don’t work on wordpress multisite
- Why was my plugin rejected from the WordPress.org repository?
- Adding content before the loop in category pages
- admin_notices hook show message all admin pages after plugin activate
- Update Option Error: Notice: Undefined index
- Why this global array is returning NULL from a callback function
- How to define WordPress plugin shortcode globally for multisite?
- how to Include json manifest file in wp plugin
- Why my Plugin keeps deactivating automatically?
- Self deactivate plugins after an action occurs
- How to get current post user id
- Input with spaces in Shortcode attributes overwritten by defaults
- Unable to override pluggable function wp_mail
- Avoid class name collision when using third party libraries in plugins?
- switched from query_posts to WP_query, not working now?
- How to find the origin of a file upload from within wp_handle_upload?
- Ajax contact form widget plugin data not insert in database
- Install Plugin via Code
- How to output CMB2 select options from repeated groups select elements?
- Homemade plugin while using Themify Ultra
- How to deal with WordPress and Pocket API to automate content curation on my hosted wordpress blog? [closed]
- WP All Import – Execute Imports
- How to set taxonomy in custom plugin?
- Plugin development: Buggy plugin preview
- do_action() hook into load-(page)
- Which file of wordpress manage plugins functionalities?
- How can i create page through plugin
- I should enable automatic updates?
- Check if variable is set in filter
- Custom license for WordPress plugin
- Does using `add_action( ‘init’…` cause performance issues?
- How to write “alt” tag in image for wordpress code?
- Different custom templates for product category [closed]
- How to create plugin/ page that reads from database
- Plugin not properly prepared for localization
- WordPress Active Plugins
- is it possible to hook every page style?
- Redirect logged in user to somepage on every page view?
- How to add filter for wordpress plugin?
- Adding a jQuery modal dialog to the admin area
- How to make a Product page without ordering and database
- wp_options not returning value for logged out users?
- How to upload large media file in chunks, without any plugin?
- How to store a secret for a plugin inside public_html
- Cannot run script properly with my custom plugin
- Cookie value changes back to previous value after changing
- Hide all Admin Notices and move on a separate page
- How to use functions found inside pluggable.php with my plugin files
- Is it okay to make a plugin to the WordPress repo, but limit it’s actions to maximum N events?
- Highlight admin menu items that are parent of existing core items
- Getting all woocommerce products from REST API call in plugin
- AJAX update fails for public/non-admin users
- WordPress Product Detail and catalog
- WordPress plugin changes not updating
- Create Database Tables on Plugin Activation hook
- Change page according to fetched GET Parameters
- Shortcode registered from a plugin not recognized
- How to change a specific page to custom page?
- No feedback when installing plugins or updating
- Plugin keeps saying needs to be updated and it’s in a constant loop [closed]
- How use Dynamic hyperlink on each wordpress post?
- Why do I get this “peer’s certificate issuer not recognised” error when trying to install a theme?
- _e in wordpress +
- WordPress Code Access to Restricted Content without Registration
- Activate plugin button do nothing [closed]
- How to add custom html to the Media > Attachment Details modal?
- Unable to access WPadmin, website down
- manage_{taxonomy}_custom_column not working
- Suitable hook when creating, updating and deleting posts programmatically
- How to be Variables and options must be escaped when echo’d?
- How to override plugin function in code snippets WordPress
- How can I gather forums posted by visitors from different sites in one place? [duplicate]
- How to make content as required in custom post type?