开发者 |
khaledsaikat
sourov |
---|---|
更新时间 | 2024年3月24日 21:07 |
PHP版本: | 5.6.0 及以上 |
WordPress版本: | 6.4 |
版权: | GPLv2 |
版权网址: | 版权信息 |
user-meta.zip
to the /wp-content/plugins/
directory or add the plugin from Plugin >> Add New menuWordPress doesn't allow to register new user by default settings. To allow user to register, go to Settings >> General page in admin section. Checked the checkbox which is saying "Anyone can register" and Save Changes.
For very long form or lots of fields, you might encounter displaying 0 instead of saving,
If you ever have this issue, mostly it could be max_input_vars are exceeding.
To solve this problem increase max_input_vars in your .htaccess file.
php_value max_input_vars 3000
If you have suhosin installed, use following too.
php_value suhosin.post.max_vars 3000