How to add VIP to Empire CMS
Proposal tutorial: Empire cms tutorial
Because of the Empire CMS background There is no function to add members, so I made this tutorial! Friends who need it, please back up the files and test the modifications!
The function of manually adding members in the background
Specifically modified two files, AddMember.php
and ListMember.php
( in e /admin/member/directory)
1. Modification method:
1. In ListMember. PHP add code
①、Look for " //Modify member" and add the following code above it:
//增加会员函数 function admin_AddMember($add,$logininid,$loginin){ global $empire,$dbtbpre; if(!trim($add[username])) { printerror("用户名不能为空","history.go(-1)",1,0,1); }else{ $num=$empire->gettotal("select count(*) as total from ".eReturnMemberTable()." where ".egetmf('username')."='$add[username]' limit 1"); if($num) { printerror("ReUsername","history.go(-1)"); } } if(!trim($add[password])) { printerror("密码不能为空","history.go(-1)",1,0,1); } else { $salt=eReturnMemberSalt(); $add[password]=eDoMemberPw($add[password],$salt); } if(!trim($add[email])) { printerror("邮箱不能为空","history.go(-1)",1,0,1); } CheckLevel($logininid,$loginin,$classid,"member");//验证权限 $checked=1; //变量 $add[groupid]=(int)$add[groupid]; //$registertime=time(); $registertime=eReturnAddMemberRegtime(); $rnd=make_password(20);//产生随机密码 $userkey=eReturnMemberUserKey(); //写入数据库 $sql=$empire->query("insert into {$dbtbpre}enewsmember(userid,username,password,rnd,email,registertime,groupid,checked,salt,userkey) values(NULL,'".addslashes($add[username])."','".addslashes($add[password])."','$rnd','".addslashes($add[email])."','$registertime','".addslashes($add[groupid])."','$checked','$salt','$userkey');"); if($sql) { insert_dolog("添加会员".$add[username]);//操作日志 printerror("添加会员成功","ListMember.php",1,0,1); }else { printerror("DbError","history.go(-1)"); } }
②、Find " //Delete member" Add the following code above it:
//增加会员 if($enews=="AddMember") { $add=$_POST['add']; admin_AddMember($add,$logininid,$loginin); }
③. Search for "Location". After finding it, continue to look down to see "Registered Member" or "Front Desk Member List"
<input type="button" name="Submit5" value="注册会员" onclick="window.open('../../member/register/');">
or
<input type="button" name="Submit5" value="前台会员列表" onclick="window.open('../../member/list/');">
Add the following code to either of the "Registered Members" or "Front Desk Member List":
<input type="button" name="Submit5" value="增加会员"onclick="self.location.href='AddMember.php?enews=AddMember';">
2. Add the code in AddMember.php
①Find "//Get the form" and add the following code
<?php if($enews=="EditMember") { ?>
②. Look for "
<?php } elseif($enews=="AddMember") { ?> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>增加会员</title> <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet"type="text/css"> </head> <body> <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1"> <tr> <td>位置:<?=$url?></td> </tr> </table> <form name="form1" method="post" action="ListMember.php" enctype="multipart/form-data"> <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1"class="tableborder"> <tr class="header"> <td height="25" colspan="2">增加会员 <input name="enews" type="hidden" id="enews" value="<?=$enews?>"> </td> </tr> <tr bgcolor="#FFFFFF"> <td width="25%" height="25">用户名</td> <td width="75%" height="25"><input name="add[username]" type=text id="add[username]"></td> </tr> <tr bgcolor="#FFFFFF"> <td height="25">密码</td> <td height="25"><input name="add[password]" type="password" id="add[password]"> </td> </tr> <tr bgcolor="#FFFFFF"> <td height="25" valign="top">所属会员组<br> <br> <input type="button" name="Submit3"value="管理会员组" onclick="window.open('ListMemberGroup.php');"> </td> <td height="25"><select name="add[groupid]" size="6" id="add[groupid]"onchange="self.location.href='AddMember.php?enews=AddMember&changegroupid='+this.options[this.selectedIndex].value;"> <?=$group?> </select></td> </tr> <tr bgcolor="#FFFFFF"> <td height="25">邮箱</td> <td height="25"><input name="add[email]" type="text" id="add[email]" size="35"></td> </tr> <tr bgcolor="#FFFFFF"> <td height="25"> </td> <td height="25"><input type="submit" name="Submit" value="提交"> <input type="reset"name="Submit2" value="重置"></td> </tr> </table> </form> </body> </html> <?php } ?>
二, Usage:
Backend--User--Member Management--Manage Member--Add Member
The above is the detailed content of How to add VIP to Empire CMS. For more information, please follow other related articles on the PHP Chinese website!

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

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

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



The mobile settings of Empire CMS are located in the "Mobile Template" of the "Template Management" module. The specific steps include: enabling the template, selecting the application channel, editing the template content, and saving the settings.

The Empire CMS sitemap can be found by accessing the config.inc.php file and checking the dositemap settings. If set to "on", sitemap is enabled. The sitemap path is located in the sitemapurl setting and can be accessed via a browser or downloaded via FTP.

The ideal location for the Empire CMS template file is /e/template/default/skin/default/. Secondly, it can also be placed in /e/data/skins/ and /e/skin/. You need to pay attention to maintaining the folder structure and setting file permissions. and regular backups.

The Imperial CMS database configuration file is located in the website root directory e/config/db.inc.php. It contains the following configuration information: $dbhost: database server address $dbuser: database user name $dbpass: database password $dbname: database name $dbport :Database port $dbcharset: Database character set

Empire CMS template download location: Official template download: https://www.phome.net/template/ Third-party template website: https://www.dedecms.com/diy/https://www.0978.com.cn /https://www.jiaocheng.com/Installation method: Download template Unzip template Upload template Select template

The automatic publishing interface of Empire CMS is located at /e/api/web/postinfo.php. The usage steps are as follows: visit /e/api/web/postinfo.php address and use HTTP POST to submit the article title, column ID, category ID, author and article The content and other data interfaces will return a response in JSON format, which contains the publishing results and article ID.

Yes, Empire CMS is a free and open source content management system (CMS). It is a lightweight CMS that is feature-rich and easy to use. Empire CMS is licensed under the GNU General Public License (GPL), which means it is free to download, install and use. For commercial use, it offers a paid version that offers additional features and support such as ad management, online payments, and premium technical support.

The imperial cms Baidu active push plug-in is located in the root directory /e/api/baidu/push.php. The specific configuration steps are as follows: 1. Upload the plug-in file to the specified path. 2. Configure the "Baidu Active Push" option in the Imperial CMS background, including push address, API Key and push interval. 3. Get Baidu push information: Push address: https://data.zz.baidu.com/urls?site=YOUR_SITE&token=YOUR_API_KEY, API Key: log in to Baidu search resource platform to obtain. 4. Update the API Key regularly and set a reasonable push interval.
