日本综合一区二区|亚洲中文天堂综合|日韩欧美自拍一区|男女精品天堂一区|欧美自拍第6页亚洲成人精品一区|亚洲黄色天堂一区二区成人|超碰91偷拍第一页|日韩av夜夜嗨中文字幕|久久蜜综合视频官网|精美人妻一区二区三区

RELATEED CONSULTING
相關(guān)咨詢
選擇下列產(chǎn)品馬上在線溝通
服務(wù)時(shí)間:8:30-17:00
你可能遇到了下面的問(wèn)題
關(guān)閉右側(cè)工具欄

新聞中心

這里有您想知道的互聯(lián)網(wǎng)營(yíng)銷解決方案
dedecms如何使用教程

DedeCMS是一款開(kāi)源的內(nèi)容管理系統(tǒng)(CMS),使用PHP語(yǔ)言編寫,可以用于創(chuàng)建和管理網(wǎng)站,它提供了豐富的功能和靈活的擴(kuò)展性,適用于各種類型的網(wǎng)站,包括企業(yè)網(wǎng)站、個(gè)人博客、新聞門戶等,下面是關(guān)于如何使用DedeCMS的詳細(xì)教程。

成都創(chuàng)新互聯(lián)公司-專業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設(shè)、高性價(jià)比蓮池網(wǎng)站開(kāi)發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫(kù),直接使用。一站式蓮池網(wǎng)站制作公司更省心,省錢,快速模板網(wǎng)站建設(shè)找我們,業(yè)務(wù)覆蓋蓮池地區(qū)。費(fèi)用合理售后完善,十載實(shí)體公司更值得信賴。

1、下載和安裝DedeCMS

訪問(wèn)DedeCMS官方網(wǎng)站(http://www.dedecms.com/)下載最新版本的DedeCMS,根據(jù)你的服務(wù)器環(huán)境選擇合適的版本,有Windows和Linux兩個(gè)版本,下載完成后,將文件解壓到你的服務(wù)器上。

2、創(chuàng)建數(shù)據(jù)庫(kù)和數(shù)據(jù)表

在安裝DedeCMS之前,你需要先創(chuàng)建一個(gè)數(shù)據(jù)庫(kù)和數(shù)據(jù)表,登錄到你的服務(wù)器管理面板(如CPanel、Plesk等),找到MySQL數(shù)據(jù)庫(kù)管理工具,創(chuàng)建一個(gè)新的數(shù)據(jù)庫(kù),例如命名為“dedecms”。

接下來(lái),在MySQL命令行中執(zhí)行以下SQL語(yǔ)句,創(chuàng)建DedeCMS所需的數(shù)據(jù)表:

CREATE DATABASE IF NOT EXISTS dedecms DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
USE dedecms;
CREATE TABLE IF NOT EXISTS dede_admin (
  id int(11) NOT NULL auto_increment,
  userid varchar(255) NOT NULL default '',
  pwd varchar(255) NOT NULL default '',
  utype tinyint(1) NOT NULL default '0',
  PRIMARY KEY  (id),
  UNIQUE KEY userid (userid)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS dede_arctype (
  id int(11) NOT NULL auto_increment,
  typename varchar(255) NOT NULL default '',
  PRIMARY KEY  (id),
  UNIQUE KEY typename (typename)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS dede_archives (
  id int(11) NOT NULL auto_increment,
  aid int(11) NOT NULL default '0',
  title varchar(255) NOT NULL default '',
  mid smallint(6) NOT NULL default '0',
  typeid tinyint(1) NOT NULL default '0',
  checkinfo tinyint(1) NOT NULL default '0',
  ismake tinyint(1) NOT NULL default '0',
  toptime int(11) NOT NULL default '0',
  flag tinyint(1) NOT NULL default '0',
  totaldown int(11) NOT NULL default '0',
  scores int(11) NOT NULL default '0',
  uptime int(11) NOT NULL default '0',
  arcrank int(11) NOT NULL default '0',
  PRIMARY KEY  (id),
  KEY idx_mid (mid,typeid,checkinfo,ismake,toptime,flag,totaldown,scores,uptime,arcrank,aid)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS dede_addonarticle (
  aid int(11) NOT NULL auto_increment,
  content text NOT NULL,
  PRIMARY KEY  (aid),
  CONSTRAINT content FOREIGN KEY (aid) REFERENCES dede_archives (id) ON DELETE NORMAL ON UPDATE NORMAL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS dede_addonbookmark (
  id int(11) NOT NULL auto_increment,
  aid int(11) NOT NULL default '0',
  PRIMARY KEY  (id),
  CONSTRAINT aid FOREIGN KEY (aid) REFERENCES dede_archives (id) ON DELETE NORMAL ON UPDATE NORMAL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS dede_addonflink (
  id int(11) NOT NULL auto_increment,
  aid int(11) NOT NULL default '0',
  PRIMARY KEY  (id),
  CONSTRAINT aid FOREIGN KEY (aid) REFERENCES dede_archives (id) ON DELETE NORMAL ON UPDATE NORMAL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS dede_addonsgbookmarks (
  id int(11) NOT NULL auto_increment,
  aid int(11) NOT NULL default '0',
PRIMARY KEY (id),
CONSTRAINT aid FOREIGN KEY (aid) REFERENCES dede_archives (id) ON DELETE NORMAL ON UPDATE NORMAL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS dede_tagindexlists (
																								ID int(11) not null primary key auto_increment,
																						????TagId int(11),
										                                        Mid int(11),
                                INDEX tagid (TagId),INDEX mid (Mid),INDEX id (ID)??? ??? ??? ??? ??? ??? ??? ??? ??? ??? ??? ??? ??? ??? ??? ??? ??? ??? ???      unique (TagId,Mid,ID)??? ??? ??? ??? ??? ??? ??? ??? ??? ??? ??? ??? ??? ??? ???      type text,?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????FOREIGN key (TagId,Mid,ID) references dede_tagindexs(TagId,Mid,Id) on update no action on delete no action?????????????????????????? ???      type text,?????????FOREIGN key (TagId,Mid,ID) references dede_tagindexs(TagId,Mid,Id) on update no action on delete no action?????????FOREIGN key (TagId,Mid,ID) references dede_tagindexs(TagId,Mid,Id) on update no action on delete no action?????????FOREIGN key (TagId,Mid,ID) references dede_tagindexs(TagId,Mid,Id) on update no action on delete no action?????FOREIGN key (TagId,Mid,ID) references dede_tagindexs(TagId,Mid,Id) on update no action on delete no action?FOREIGN key (TagId,Mid,ID) references dede_tagindexs(TagId,Mid,Id) on update no action on delete no action?FOREIGN key (TagId,Mid,ID) references dede_tagindexs(TagId,Mid,Id) on update no action on delete no action?FOREIGN key (TagId,Mid,ID) references dede_tagindexs(TagId,Mid,Id) on update no action on delete no action?FOREIGN key (TagId,Mid,ID) references dede_tagindexs(TagId,Mid,Id) on update no action on delete no action?FOREIGN key (TagId,Mid,ID) references dede_tagindexs(TagId,Mid,Id) on update no action on delete no action?FOREIGN key (TagId,Mid,ID) references dede_tagindexs(TagId,Mid,Id) on update no action on delete no action?FOREIGN key (TagId,Mid,ID) references dede_tagindexs(TagId,Mid,Id) on update no action on delete noaction?FOREIGN key (TagId,Mid,ID) references dede_tagindexs(TagId,Mid,

文章題目:dedecms如何使用教程
URL地址:http://www.dlmjj.cn/article/ccohses.html