Home  >  Article  >  CMS Tutorial  >  What to do if the phpcms v9 operation fails

What to do if the phpcms v9 operation fails

藏色散人
藏色散人Original
2020-01-15 09:26:342176browse

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!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn