How to solve the problem 'The link you came from does not exist' when the Empire CMS prompts?

藏色散人
Release: 2019-12-06 09:12:16
Original
5514 people have browsed it

How to solve the problem 'The link you came from does not exist' when the Empire CMS prompts?

How to solve the problem that "The link you came from does not exist" when Empire CMS prompts?

The example in this article describes the solution to the problem that "the link you came from does not exist" when the Empire CMS combination item prompts. Share it with everyone for your reference. The specific method is as follows:

It is recommended to study "Empire cms tutorial"

Open e/class/userfun.php

Change global $public_r; to global $public_r,$navclassid;

The code is as follows:

if($_GET['classid']) { $classid=RepPostVar($_GET['classid']); $urlcs.='&classid='.$classid; } 

if($_GET['classid']) { $classid=RepPostVar($_GET['classid']); $urlcs.='&classid='.$classid; } else { $urlcs.='&classid='.$navclassid; }

Copy after login

Tips: Combination tags can only be used in dynamic pages.

I hope this article will be helpful to everyone’s Imperial CMS Building a website helps.

The above is the detailed content of How to solve the problem 'The link you came from does not exist' when the Empire CMS prompts?. 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
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!