Home > Article > CMS Tutorial > How to solve phpcms hash data verification failure
How to solve the problem of phpcms hash data verification failure
phpcms failed to save when modifying individual articles, prompting hash data verification failed. Let’s talk about how to solve it.
1. First find the php.ini file. Mine is placed in the (/usr/local/php/etc) directory
2. Then find the max_input_vars parameter and see if there is a semicolon (;) in front of the max_input_vars parameter. If so, remove the semicolon. The original value of the parameter max_input_vars should be 1000, change it to 10000 or 100000, which means changing max_input_vars to be larger than before and then saving it.
3. Finally, restart the php service or restart the apache service
service php-fpm restart service httpd restart
Refresh the page in the background and save it normally.
Recommended tutorial: phpcms tutorial
The above is the detailed content of How to solve phpcms hash data verification failure. For more information, please follow other related articles on the PHP Chinese website!