| 开发者 | dominopress |
|---|---|
| 更新时间 | 2025年11月4日 02:11 |
| PHP版本: | 7.4 及以上 |
| WordPress版本: | 6.8 |
| 版权: | GPL v2 or later |
| 版权网址: | 版权信息 |
php.ini or .htaccess.
Take control of crucial PHP settings directly from your WordPress admin area.
MaxLimits allows you to adjust:
upload_max_filesize): Upload larger images, videos, and files.post_max_size): Ensure large form submissions or page builder saves work correctly.memory_limit): Provide more resources for demanding plugins like WooCommerce or page builders.max_execution_time): Allow longer processes like imports, exports, or backups to complete without timing out.max_input_time): Give scripts more time to parse input data, especially important during large uploads.max_input_vars): Increase the limit for complex menus, theme options, or page builder saves.
Why Choose MaxLimits?ini_set()) and provides an optional, automated .htaccess file-writing method for restrictive hosts.ini_set() is blocked, you can enable a feature to write rules directly to your .htaccess file, just like a caching plugin..user.ini and .htaccess code snippets for you to apply manually.maxlimits-increase-maximum-limits folder to your /wp-content/plugins/ directory via FTP or WordPress admin ('Plugins' > 'Add New' > 'Upload Plugin').Settings > MaxLimits in your WordPress admin dashboard.= I saved new values, but "Current Server Values" didn't change.
Why? =
This is common. It means your web hosting provider has locked these specific PHP settings at the server level, preventing the default ini_set() function from working.
Solution:
Settings > MaxLimits..htaccess file. You should see a "Settings saved" notice and a blue notice saying ".htaccess file updated successfully.".htaccess changes.
The plugin provides inline, context-aware recommendations.
Generally:
256MB is okay for basic sites, but 512MB or 1024MB is often better for sites using WooCommerce, page builders (Elementor, Divi, etc.), or many plugins.
64MB or 128MB is usually sufficient unless you need to upload very large video files.
Ensure post_max_size is equal to or greater than upload_max_filesize.300 or 600 seconds is often needed for tasks like large imports, exports, or backups that take longer to run.3000 is a good baseline, but page builders or complex menus often require 5000 or more.
= What data is collected if I allow usage tracking?If you opt-in, the plugin sends anonymous, non-sensitive data one time: your site URL, admin email (used only for potential support context if needed, not stored long-term), site name, site language, WordPress version, plugin version, and the timestamp.
No personal data, site content, or specific settings are ever collected.
This helps us understand usage patterns (like WP versions) and prioritize improvements.
Yes.
It uses the standard WordPress Settings API and follows security best practices.
The default method only attempts to modify PHP settings temporarily at runtime using ini_set().
The optional "Direct .htaccess Writing" feature is off by default and only uses the official insert_with_markers() WordPress function, which is the safest way to modify the file.
max_input_vars..user.ini and .htaccess code generator.