1. Which file is the database configuration file of version 7.0?
7.0 version database configuration file:/e/config/config.php
6.6 and below version database configuration file:/e/class/config.php
2. Forgot background login What to do with the authentication code?
View the contents of the "$ecms_config['esafe']['loginauth']" variable in the /e/config/config.php file.
3. If you don’t want to display the “Mall” menu in the background, how do you do this?
Answer: Backend>System>System Parameter Settings>Model Settings: Just check "Mall" for the "Close Backend Menu" item.
4. After changing the column directory address, why is the information page address not updated?
Answer: Because 7.0 directly stores the address in the database, after changing the directory rules, you need to go to: Backend>System>Data Update>Update Information Page Address: Update the content page address in the data table. (Note: Look at the menu on the left, not in the "Data Update Center" page)
5. How to turn off online modification of dynamic page templates
Answer: If you do not want to enable modification of dynamic page templates in the background, you can modify/ The value of the "$ecms_config['esafe']['openeditdttemp']" variable in the e/config/config.php file is 0.
6. Topic comment form
Answer: The topic comment access address /e/pl/?doaction=dozt&classid=topic ID
The topic comment form needs to add:
7. Why does the "Update Topic" page not display the topic? ?
Answer: Because the "Update Topic" page is a separate topic management function designed for users who do not have permission to manage topics. Administrators can set "users who can update topics" when adding a topic, so that even if they do not have permission to manage topics, they can manage and update topics on the topic update page. Authorization is more convenient.
8. Why can’t the rating function on the comment page be used?
Answer: If you want to use the scoring function of the model, you need to add two fields "infopfen" (number of ratings) and "infopfennum" (number of ratings) to the model data table. Detailed steps:
Backstage > System >Manage data table>Manage fields>Add field:
Score field: fill in "infopfen" for the field name, fill in "score" for the field identifier, select "Large Numerical Type (INT)" for the field type, and default for other fields , click submit;
Number of raters field: fill in "infopfennum" for the field name, "number of raters" for the field identifier, select "Large Numerical Type (INT)" for the field type, and default to other fields, click submit;
Two fields After adding, the model can use the scoring function.
Recommended to study "Empire cms tutorial"
9. How to call the topic information in version 7.0?
Answer: To call the topic information, use the "index smart tag" (e:indexloop) instead.
[e:indexloop={index category ID, number of displayed items, operation type, column ID, system model ID, additional SQL conditions}]
Template code content
[/e:indexloop]
10. How to call the recommended information of the topic?
Answer: "Additional SQL conditions" setting of "Index Smart Label":
All recommended information use: 'isgood>0'
Use second-level recommended information: 'isgood=2'
11. What should I do if the number of information in the column is incorrect?
Answer: You can go to the backend>System>Data Update>Data Update Center> to update the number of column information.
12. How to call multi-value fields?
Answer: Multi-value field storage method: multiple values are separated by "||||||", and each option in the value is separated by "::::::". The following is an example of displaying multi-valued fields in a content template:
<?php $morefr=explode('||||||',$navinfor[字段名]); $mfcount=count($morefr); for($mfi=0;$mfi<$mfcount;$mfi++) { $morefrf=explode('::::::',$morefr[$mfi]); ?> 选项1:<?=$morefrf[0]?> 选项2:<?=$morefrf[1]?> 选项3:<?=$morefrf[2]?> 选项4:<?=$morefrf[3]?> ...... <?php } ?>
13. Where is the setting of "Feedback of information processing results to members"?
Answer: You can see the setting options by modifying the information.
14. Why can’t you add the “checked=1” condition when calling with SQL?
Answer: Because the information to be reviewed and the release information in version 7.0 are stored in separate tables, calling the foreground information no longer requires the checked=1 condition, which is more efficient. Just remove this SQL condition.
15. What are the PHP variables on the topic page?
Answer: The current topic ID or current topic subclass ID variable is "$GLOBALS['navclassid']".
When it is a topic subcategory page, the topic ID variable is "$GLOBALS['navinfor']['ecmsbid']". When it is equal to 0, it is a topic page. It is easier to identify the topic page and the topic subcategory page. .
16. When refreshing all information content pages, it prompts "Table '*.phome_ecms_news_data_' doesn't exist"
Answer: The reason is that there is a problem with the data itself. Does the information index table phome_ecms_table name_index have an ID? record of.
Solution: Enter the database and delete the ID records that do not exist in the index table. You can also clean up at the bottom of the data update
The above is the detailed content of Summarize the frequently asked questions about the use of Imperial CMS7.0. For more information, please follow other related articles on the PHP Chinese website!

管理员表有:1、phome_enewsuser,是管理员记录表;2、phome_enewsdolog,是管理员操作记录表;3、phome_enewsgroup,是管理员用户组数据记录表;4、phome_enewslog,是管理员登陆日志;5、phome_enewsloginfail,是管理员登陆失败记录表;6、phome_enewserrorclass,是管理员错误报告记录表。

帝国cms把静态改成伪静态的方法:1、创建.htaccess文件;2、修改网站配置文件;3、重新生成所有页面;4、配置伪静态规则;5、保存并关闭文件即可。

帝国cms404页面的设置步骤为:1、登录到帝国CMS的后台管理界面;2、导航到"内容"或"站点管理"等相关菜单选项;3、找到和选择"404页面"或"错误页面"选项;4、选择使用已有页面或者创建一个新页面作为404页面;5、在新页面编辑器中,编写404页面的内容;6、保存页面并将其设置为404页面;7、更新网站设置;8、保存设置并测试404页面即可。

帝国cms可以删除模块。删除模块的方法:1、登录帝国CMS后台,依次点击“系统”-“系统设置”-“系统参数设置”-“关闭相关功能”,根据自己网站的需求,自行勾选设置来关闭对应的模块功能;2、关闭功能后,删除对应模块的在e目录下的子目录;3、修改e目录下的php文件,在文件第二行加上代码“exit();<?php exit()”,并保存修改即可。

帝国cms留言板是“phome_enewsgbook”表;帝国cms留言分类表是“phome_enewsgbookclass”;帝国cms会员空间留言表是“phome_enewsmembergbook”。

在帝国cms中,封面模板是指网站频道页面使用的模板,可以制作跟首页一模一样的封面页面;封面模板共使用在两个地方:非终极栏目和专题。封面模板的使用,一般是该栏目为父级栏目(非终级栏目),封面模板的目的就是调用各个子栏目(终级栏目)文章。

帝国cms连接不上数据库的解决办法:1、打开帝国CMS数据文件的根目录;2、找到并打开“/e/config/config.php”文件;3、将数据库名称以及数据库用户名即数据库密码修改保存后替换空间文件即可。

帝国cms是一个基于B/S结构且功能强大的网站管理系统;该系统是由帝国开发工作组独立开发,是一个经过完善设计的适用于Linux/windows引/Unix等环境下高效的网站解决方案。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Linux new version
SublimeText3 Linux latest version
