Home > Article > CMS Tutorial > What to do if the phpcms v9 operation fails
What should I do if the phpcms v9 operation fails?
phpcms v9 user registration login operation failed bug handling
Step one:
Check database.php under phpsso_server\caches\configs Configuration of these two files and system.php
The second step
Check whether the fsockopen pfsockopen function is disabled
The third step
Place phpcms\ modules\member\classes\client.class.php Line 361
$fp = @fsockopen(($ip ? $ip : $host), $port, $errno, $errstr, $timeout);
was changed to
$fp = stream_socket_client("tcp://".($ip ? $ip : $host).":".$port, $errno, $errstr, $timeout);
After testing successfully, hehe
PHP Chinese website, a lot of free PHPCMS Tutorial, welcome to learn online!
The above is the detailed content of What to do if the phpcms v9 operation fails. For more information, please follow other related articles on the PHP Chinese website!