| 开发者 | dominopress |
|---|---|
| 更新时间 | 2026年2月15日 16:44 |
| PHP版本: | 7.4 及以上 |
| WordPress版本: | 6.9 |
| 版权: | 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.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.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..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.We believe in complete transparency. We take your privacy very seriously. We do NOT collect any sensitive data. No personal information, no site content, no passwords, and no specific settings are ever collected. To provide you with better service and develop more relevant features, we may collect some anonymous, non-sensitive usage data if you opt-in. This data serves a single purpose: Optimization & Improvement. What is collected (only if you opt-in):
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.