search
HomeBackend DevelopmentPHP TutorialGive you eight minutes to get dedeCMS (Dreamweaver Content Management System)_PHP Tutorial

Give you eight minutes to get dedeCMS (Dreamweaver Content Management System)_PHP Tutorial

Jul 20, 2016 am 11:14 AM
dedecmsbycontentpracticalOpen sourceSimplemanagement systemdream weaving

<span 第1分钟_dedeCMS概述</span>

DedeCms is famous for its simplicity, practicality and open source. It is the most famous PHP open source website management system in China and the PHP CMS system with the most users. After more than two years of development, The current version has made great progress in terms of functionality and ease of use. The main target users of the free version of DedeCms are individual webmasters, and its functions are more focused on the construction of personal websites or small and medium-sized portals. Of course, there are also There are enterprise users and schools using this system. DedeCms is based on the technical architecture of PHP+MySQL. It is completely open source and has a powerful and stable technical architecture, so that whether you are currently planning to build a small website or you want the website to continue to grow, it can still be used freely. Expansions are fully guaranteed.

More information: Dreamweaver content management system Dreamweaver_Encyclopedia

<span 第2分钟_dedeCMS安装</span>

Operating system: Windows 7

Download and install php running environment: WAMP5

Download dedeCMS: http://www.dedecms.com/products/dedecms/downloads/ What I downloaded is: dedeCMS V5.7

Unzip and place it under the www directory of wamp:

Run WAMP, open the browser and enter: http://localhost:2000/install/ to install

<span 第3分钟_进入CMS后台</span>

After successful installation, you can enter the background login interface to perform background management operations

What I want to say here is:

When I first looked at this interface, it was very unfamiliar. I just knew that the interface had many functions, but I didn’t quite know what they were used for...

I use dedeCMS to make an official website, so there are not many functions.

<span 第4分钟_核心</span>

The main purpose here is to generate the navigation of the website, and you can add articles to the navigation... (I particularly emphasize here because I like this idea very much... all the content in the navigation can be used as articles) Express it in the form)

This is the first step of the work, at least I think so..

<span 第5分钟_系统</span>

In the system column, what we need is to set some of our system variables. After setting the system variables here, it will be convenient for us to flexibly call these variables in the subsequent development process

<span 第6分钟_模板</span>

In dedeCMS, the most flexible thing should be the template provided by the system. Here, we can edit our page into a template and then be called....

More template tags: http://help.dedecms.com/v53/archives/tag/

<span 第7分钟_生成</span>

After we wrote our own templates in the last minute, we need to use these templates. We can call these templates in the navigation column and finally generate our page.

What I need to emphasize here is that this involves caching. We need to use: One-click update website -->Update all... Because when I was doing it, I encountered caching The problem is that I can’t believe where I went wrong...

<span 第8分钟_预览页面</span>

If there is nothing wrong with the above, you can browse your page now....

Written at the end: dedeCMS is a good thing, I would like to recommend it to everyone...

More help: http://help.dedecms.com

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/440282.htmlTechArticleDreamweaver content management system (DedeCms) is famous for its simplicity, practicality and open source. It is the most famous PHP open source in China The website management system is also the PHP CMS system with the most users. After experiencing two...
Statement
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
PHP Performance Tuning for High Traffic WebsitesPHP Performance Tuning for High Traffic WebsitesMay 14, 2025 am 12:13 AM

ThesecrettokeepingaPHP-poweredwebsiterunningsmoothlyunderheavyloadinvolvesseveralkeystrategies:1)ImplementopcodecachingwithOPcachetoreducescriptexecutiontime,2)UsedatabasequerycachingwithRedistolessendatabaseload,3)LeverageCDNslikeCloudflareforservin

Dependency Injection in PHP: Code Examples for BeginnersDependency Injection in PHP: Code Examples for BeginnersMay 14, 2025 am 12:08 AM

You should care about DependencyInjection(DI) because it makes your code clearer and easier to maintain. 1) DI makes it more modular by decoupling classes, 2) improves the convenience of testing and code flexibility, 3) Use DI containers to manage complex dependencies, but pay attention to performance impact and circular dependencies, 4) The best practice is to rely on abstract interfaces to achieve loose coupling.

PHP Performance: is it possible to optimize the application?PHP Performance: is it possible to optimize the application?May 14, 2025 am 12:04 AM

Yes,optimizingaPHPapplicationispossibleandessential.1)ImplementcachingusingAPCutoreducedatabaseload.2)Optimizedatabaseswithindexing,efficientqueries,andconnectionpooling.3)Enhancecodewithbuilt-infunctions,avoidingglobalvariables,andusingopcodecaching

PHP Performance Optimization: The Ultimate GuidePHP Performance Optimization: The Ultimate GuideMay 14, 2025 am 12:02 AM

ThekeystrategiestosignificantlyboostPHPapplicationperformanceare:1)UseopcodecachinglikeOPcachetoreduceexecutiontime,2)Optimizedatabaseinteractionswithpreparedstatementsandproperindexing,3)ConfigurewebserverslikeNginxwithPHP-FPMforbetterperformance,4)

PHP Dependency Injection Container: A Quick StartPHP Dependency Injection Container: A Quick StartMay 13, 2025 am 12:11 AM

APHPDependencyInjectionContainerisatoolthatmanagesclassdependencies,enhancingcodemodularity,testability,andmaintainability.Itactsasacentralhubforcreatingandinjectingdependencies,thusreducingtightcouplingandeasingunittesting.

Dependency Injection vs. Service Locator in PHPDependency Injection vs. Service Locator in PHPMay 13, 2025 am 12:10 AM

Select DependencyInjection (DI) for large applications, ServiceLocator is suitable for small projects or prototypes. 1) DI improves the testability and modularity of the code through constructor injection. 2) ServiceLocator obtains services through center registration, which is convenient but may lead to an increase in code coupling.

PHP performance optimization strategies.PHP performance optimization strategies.May 13, 2025 am 12:06 AM

PHPapplicationscanbeoptimizedforspeedandefficiencyby:1)enablingopcacheinphp.ini,2)usingpreparedstatementswithPDOfordatabasequeries,3)replacingloopswitharray_filterandarray_mapfordataprocessing,4)configuringNginxasareverseproxy,5)implementingcachingwi

PHP Email Validation: Ensuring Emails Are Sent CorrectlyPHP Email Validation: Ensuring Emails Are Sent CorrectlyMay 13, 2025 am 12:06 AM

PHPemailvalidationinvolvesthreesteps:1)Formatvalidationusingregularexpressionstochecktheemailformat;2)DNSvalidationtoensurethedomainhasavalidMXrecord;3)SMTPvalidation,themostthoroughmethod,whichchecksifthemailboxexistsbyconnectingtotheSMTPserver.Impl

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.