All Projects → taosir → Wtcms

taosir / Wtcms

Licence: lgpl-3.0
基于thinkphp的内容管理系统,可快速搭建个人博客、公司学校官网、新闻类站点。

Projects that are alternatives of or similar to Wtcms

Nonecms
基于thinkphp5.1 的内容管理系统,可快速搭建博客、企业站;并且增加了实时聊天室
Stars: ✭ 261 (+248%)
Mutual labels:  blog, cms, thinkphp
Elefant
Elefant, the refreshingly simple PHP CMS and web framework.
Stars: ✭ 188 (+150.67%)
Mutual labels:  blog, cms, mysql
Wondercms
WonderCMS - fast and small flat file CMS (5 files)
Stars: ✭ 330 (+340%)
Mutual labels:  blog, cms, bootstrap
Emlog
Emlog是一款基于PHP和MySQL的功能强大的博客及CMS建站系统,追求快速、稳定、简单、舒适的建站体验 (emlog is a fast, stable and easy-to-use blog and CMS website building system based on PHP and MySQL)。
Stars: ✭ 244 (+225.33%)
Mutual labels:  blog, cms, mysql
E107
e107 Bootstrap CMS (Content Management System) v2 with PHP, MySQL, HTML5, jQuery and Twitter Bootstrap. Issue Discussion Room: https://gitter.im/e107inc/e107
Stars: ✭ 272 (+262.67%)
Mutual labels:  cms, mysql, bootstrap
Yclas
Yclas Self Hosted is a powerful script that can transform any domain into a fully customizable classifieds site within a few seconds.
Stars: ✭ 276 (+268%)
Mutual labels:  cms, mysql, bootstrap
Zblogphp
Z-BlogPHP博客程序
Stars: ✭ 527 (+602.67%)
Mutual labels:  blog, cms, mysql
Bludit
Simple, Fast, Secure, Flat-File CMS
Stars: ✭ 824 (+998.67%)
Mutual labels:  blog, cms
Nodepress
😎 RESTful API service for Blog/CMS, powered by @nestjs
Stars: ✭ 829 (+1005.33%)
Mutual labels:  blog, cms
Auto App
Crie um aplicativo com todas as tabelas de um dos seus bancos sem uma linha de código.
Stars: ✭ 18 (-76%)
Mutual labels:  mysql, bootstrap
Teanblog
📄 Simple blog platform based on Egg.js
Stars: ✭ 29 (-61.33%)
Mutual labels:  blog, mysql
Hospital Management System
"Health Care hospital" Management System is designed for manage details about hospital patient,employee and rooms(10). Designed by using HTML / CSS / JS / JQUERY/ PHP (procedural php) / MYSQL.
Stars: ✭ 5 (-93.33%)
Mutual labels:  mysql, bootstrap
Izone
django+bootstrap4 个人博客
Stars: ✭ 757 (+909.33%)
Mutual labels:  blog, bootstrap
Codeigniter Smartgrid
A simple PHP datagrid control for CodeIgniter framework with Bootstrap
Stars: ✭ 16 (-78.67%)
Mutual labels:  mysql, bootstrap
Weapsy
ASP.NET Core CMS
Stars: ✭ 748 (+897.33%)
Mutual labels:  cms, mysql
Essay
A blog system based on Nuxt.js
Stars: ✭ 913 (+1117.33%)
Mutual labels:  blog, cms
Bootstrap 5 Templates
A collection of free Bootstrap 5 templates designed with Material Design 2.0. Admin dashboard, e-commerce, landing pages & much more.
Stars: ✭ 722 (+862.67%)
Mutual labels:  blog, bootstrap
E Commerce 2 django
Guest register, user register, user login, user logout, account home page, product view history, change password, reset password, change name, send activation email when register, resend activation email, add shipping address, add billing address, add nickname to the addresses, edit shipping address, edit billing address, view list of your addresses, reuse shipping addresses when order products, reuse billing addresses when ordeer products, show sales analytics if staff or admin only using -chart.js-, get analytics data with Ajax, receive marketing email, change if user will receive marketing email or not by admin, send contact message with Ajax, products list, product detail, download product detail as a PDF file, download digital product files -if the user purchased that digital product only-, orders list, list of digital products files, order detail, download order detail as a PDF file, verify order ownership with Ajax -to secure order detail page-, show cart products, add or remove product from cart, checkout page, thanks page when order placed successfully, add or reuse payment method, add or reuse payment method with Ajax, search products by title, search products by description, search products by price, search products by tag title, write tags for products -by admin only-, auto fill contact email, full name if user logged in.
Stars: ✭ 20 (-73.33%)
Mutual labels:  mysql, bootstrap
Hugo Bootstrap
This is a simple Hugo theme using Bootstrap v4.
Stars: ✭ 74 (-1.33%)
Mutual labels:  blog, bootstrap
Grocery Cms Php Restful Api
Grocery-CMS-PHP-Restful-API is an online grocery shop. The project is developed by using PHP/MySQL/Slim Restful API. The project has powerful backend cms to manage grocery shop online. it has features like add items, remove items, update price, manage orders etc. Restful API ready to embed in Application using JSON data.
Stars: ✭ 36 (-52%)
Mutual labels:  cms, mysql

wtcms

wtcms 是基于ThinkPHP框架的一套CMS系统,方便用户快速建立企业网站,门户网站,个人博客或其他系统的内容管理系统。

一、主页

home_view

二、功能特色

  • 基于ueditor的内容编辑器;
  • 基于bootstrap的前端框架开发;
  • 文章搜索功能;
  • 内容自定义灵活;
  • 基于thinkphp和thinkcmf,内容精简,二次开发方便。

三、运行环境

  • 操作系统:Windows/Mac/Linux
  • php:>= 5.4
  • mysql:>= 5.5
  • rewrite on

四、安装部署

1、配置好LAMP/WAMP环境
2、新建一个数据库storage
3、将wtcms.sql文件内容导入storage数据库中
4、将整个项目文件放入到WWW文件夹下
5、修改/data/conf/db.php

return array(
    'DB_TYPE' => 'mysqli', 
    'DB_HOST' => 'localhost', //数据库ip
    'DB_NAME' => 'storage', //数据库名
    'DB_USER' => 'root', //数据库用户名
    'DB_PWD'  => 'root', //数据库密码
    'DB_PORT' => '3306', //数据库端口号
    'DB_PREFIX' => 'wt_', //数据表前缀
    'AUTHCODE'  => 'AdvwqCzyPFsdSweDsd', //密钥
    'COOKIE_PREFIX' => 'wt_', //cookies前缀
);

五、目录结构

wtcms 根目录
|-- admin   后台文件夹
|-- application  应用目录
|    |-- Admin    管理员模块
|    |-- Api      手机客户端API模块
|    |-- Asset    Ueditor模块
|    |-- Comment  文章评论模块
|    |-- Common   通用基础模块
|    |-- Home     主模块
|    |-- Install  安装程序模块        
|    |-- Portal   门户应用模块 
|-- data    数据目录
|    |-- conf        动态配置目录
|    |    |-- db.php  数据库配置文件
|    |    |-- config.php 全局配置文件
|    |    |...
|    |-- runtime     应用的运行时目录(可写)
|    |-- upload      上传文件存储路径
|    |...
|-- plugins 插件目录
|    |-- comment     评论插件目录
|-- public  公共静态文件存放
|-- themes  主题目录
|    |-- default     默认主题
|    |    |-- Comment 评论页面
|    |    |-- Portal  模板页面
|    |    |-- Public  公共模板
|    |    |-- User    用户页面模板
|-- thinkphp    thinkphp核心文件夹
|-- index.php   入口文件
|-- wtcms.sql   数据文件

六、后台管理

  • 登录地址:'/admin'
  • 登录账号: admin
  • 登录密码为: 123456

七、其他

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].