Issue collection for PHP version of discuzX3.2 deployment

Source: Internet
Author: User

1, login backstage always automatically quit what is going on?

WORKAROUND: Use the FTP online download file under the/config/config_global.php to the $_config[' ADMINCP ' [' checkip '] = 1;
Change 1 to 0.

Cause: The problem of the network, especially a few telephone lines composed of soft routes, the occurrence of random IP switching!

2,discuz! x3.* background ucenter User Admin Center captcha Error Unable to log in

Workaround: Locate the file according to the directory: Ucenter (the new version is Uc_server) model/base.php
Find:
$this->onlineip = $match [0]? $match [0]: ' Unknown ';
Insert a piece of code after this code:
$isonlineIP = isset ($_cookie[' ONLINEIPD ')) &&!empty ($_cookie[' ONLINEIPD ']);
if ($isonlineIP) {
$this->onlineip = $_cookie[' ONLINEIPD ');
}else{
Setcookie ("ONLINEIPD", $this->onlineip, Time () +3600, "/");
}
Unset ($isonlineIP);
The upload overlay issue is resolved after saving.

3,ucenter login does not go to jump

Workaround: Open uc_server/model/admin.php
Find the 22nd line.
$this->cookie_status = 0;
Change into
$this->cookie_status = isset ($_cookie[' Sid ')? 1:0;

Issue collection for PHP version of discuzX3.2 deployment

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.