Home > CMS Tutorial > DEDECMS > body text

What should I do if 404 appears in dedecms5.7 ask module?

藏色散人
Release: 2019-12-10 10:31:22
Original
2314 people have browsed it

What should I do if 404 appears in dedecms5.7 ask module?

dedecms5.7 What should I do if the ask module gets a 404 error?

dedecms5.7 The solution to the 404 error in question management and answer management of the ask module

Recommended learning: 梦Weavercms

After dedecms was placed in the Wanwang space, I found that the question management and answer management of the background ask module had 404 errors, but it was fine locally. I checked the source files, and there were quite a few. Later I thought that the current virtual host is a Linux system. It may be because the file is case-sensitive.

After a while, it’s really like this, evil dedecms, can’t you be more serious?

Make the following modifications and it will run correctly:

1. Problem management page:

The code is as follows: Change the lurd of

askcontroladminissue.php 的 $this->lurd = new lurd(<a href="mailto:&#39;dede_ask&#39;">&#39;dede_ask&#39;</a>, $this->temp, $this->temp.&#39;/lurd&#39;);
Copy after login

to Lurd that is

The code is as follows:

$this->lurd = new Lurd(<a href="mailto:&#39;dede_ask&#39;">&#39;dede_ask&#39;</a>, $this->temp, $this->temp.&#39;/lurd&#39;);;
Copy after login

2. Answer management page: Similarly

The code is as follows:

askcontroladminanswer.php 的 $this->lurd = new lurd(<a href="mailto:&#39;dede_ask&#39;">&#39;dede_ask&#39;</a>, $this->temp, $this->temp.&#39;/lurd&#39;);
Copy after login

’s lurd is changed to Lurd, which is the

code As follows:

$this->lurd = new lurd(<a href="mailto:&#39;dede_ask&#39;">&#39;dede_ask&#39;</a>, $this->temp, $this->temp.&#39;/lurd&#39;);。
Copy after login

The above is the detailed content of What should I do if 404 appears in dedecms5.7 ask module?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!