Home php教程 php手册 易贝后台开发框架1.5正式版发布。

易贝后台开发框架1.5正式版发布。

Jun 07, 2016 am 11:36 AM

1.5正式版发布
EBCORE是基于ThinkPHP框架开发的一套后台开发框架。我们的宗旨是给客户提供一套持久更新、底层功能全面、操作便捷的供开发者使用的后台开发框架,我们希望我们的产品能够让你从繁琐的、重复的、低效的产品开发中解脱出来

1.5版本主要是集成了一些网站开发常用的一些功能。

更新日志

2015-12-9 V1.5 正式版发布

新增 自定义字段
新增 文章管理 友情链接 留言中心 导航菜单
新增 推荐位管理(广告模块)
新增 会员管理(AUTH权限)
新增 前台展示
修复 已知BUG
改进 前端和后端封装的底层函数

2015-10-30 V1.2 正式版发布

新增 定时任务
新增 行为绑定
改进 配置功能
改进 权限控制
修复 编辑器 附件上传等若干小bug
。。。

2015-09-20 V1.1 正式版发布

更新tp框架至最新版本
改进前台性能(不用加载不必要的后台函数)
改进配置方式,配置分为核心配置和基本配置,核心配置会生成配置文件,基本配置不会写入配置文件,在需要的地方通过FC函数从缓存文件中调用
增强模板编辑安全性
去除开发者模式,去除node,menu、config、configcate。等的system字段,核心配置和基本配置仅供开发这使用(用户反映这两个地方较难理解),增加便捷配置,便捷配置供大众使用
优化附件管理操作
改进tp系统的RBAC类的bug
优化后台主表面板的排序、操作等
改进数据备份及还原操作
改进编辑器,附件上传等组件的封装函数
操作日志、调试日志等存储由json格式改为序列化格式
后台的一些样式修复及美化
封装筛选函数,开发筛选功能更加方便
改进后台登录操作
。。。
这一版本较上一版本做了大量改进,远不止上面描述的这些。

2015-08-05 V1.0.1 修正版发布

修复安装模块的少量逻辑bug
其他常规更新

2015-08-01 V1.0 正式版发布

RBAC权限管理
功能菜单权限管理
安装模块
配置管理
模板管理
操作日志
调试日志
数据备份
EXCEL导出
邮件功能
多文件上传
百度编辑器深度整合

演示地址:http://ebcore.ebcms.com/admin
账号 admin 密码 ****** (超级账户)
账号 工程师 密码 123456 (权限较高)
账号 管理员 密码 123456 (普通权限)
账号 编辑 密码 123456(较小权限)

全部开源,免费使用
商业授权,更新无忧
交流群:45⑦911526(群共享下载)

另附 EBCORE 2.0开发版供预览
演示地址:http://beta.ebcms.com/admin
账号 admin 密码 123456 (超级账户)
2.0是一个大版本,比较有特色的是编写表单的时候,不用写代码了,可以直接在表单管理那里配置即可,另后台权限管理也由RBAC改为了AUTH方式.......等等

附件 ebcore_v1.0.1.zip ( 6.95 MB 下载:223 次 )

AD:真正免费,域名+虚机+企业邮箱=0元

Statement of this Website
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

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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Learn about introductory code examples for Python programming Learn about introductory code examples for Python programming Jan 04, 2024 am 10:50 AM

Learn about Python programming with introductory code examples Python is an easy-to-learn, yet powerful programming language. For beginners, it is very important to understand the introductory code examples of Python programming. This article will provide you with some concrete code examples to help you get started quickly. Print HelloWorldprint("HelloWorld") This is the simplest code example in Python. The print() function is used to output the specified content

PHP variables in action: 10 real-life examples of use PHP variables in action: 10 real-life examples of use Feb 19, 2024 pm 03:00 PM

PHP variables store values ​​during program runtime and are crucial for building dynamic and interactive WEB applications. This article takes an in-depth look at PHP variables and shows them in action with 10 real-life examples. 1. Store user input $username=$_POST["username"];$passWord=$_POST["password"]; This example extracts the username and password from the form submission and stores them in variables for further processing. 2. Set the configuration value $database_host="localhost";$database_username="username";$database_pa

From beginner to proficient: Code implementation of commonly used data structures in Go language From beginner to proficient: Code implementation of commonly used data structures in Go language Mar 04, 2024 pm 03:09 PM

Title: From Beginner to Mastery: Code Implementation of Commonly Used Data Structures in Go Language Data structures play a vital role in programming and are the basis of programming. In the Go language, there are many commonly used data structures, and mastering the implementation of these data structures is crucial to becoming a good programmer. This article will introduce the commonly used data structures in the Go language and give corresponding code examples to help readers from getting started to becoming proficient in these data structures. 1. Array Array is a basic data structure, a group of the same type

How to use PHP to write inventory management function code in the inventory management system How to use PHP to write inventory management function code in the inventory management system Aug 06, 2023 pm 04:49 PM

How to use PHP to write the inventory management function code in the inventory management system. Inventory management is an indispensable part of many enterprises. For companies with multiple warehouses, the inventory management function is particularly important. By properly managing and tracking inventory, companies can allocate inventory between different warehouses, optimize operating costs, and improve collaboration efficiency. This article will introduce how to use PHP to write code for inventory warehouse management functions, and provide you with relevant code examples. 1. Establish the database before starting to write the code for the inventory warehouse management function.

Java implements simple bubble sort code Java implements simple bubble sort code Jan 30, 2024 am 09:34 AM

The simplest code example of Java bubble sort Bubble sort is a common sorting algorithm. Its basic idea is to gradually adjust the sequence to be sorted into an ordered sequence through the comparison and exchange of adjacent elements. Here is a simple Java code example that demonstrates how to implement bubble sort: publicclassBubbleSort{publicstaticvoidbubbleSort(int[]arr){int

Go language programming examples: code examples in web development Go language programming examples: code examples in web development Mar 04, 2024 pm 04:54 PM

"Go Language Programming Examples: Code Examples in Web Development" With the rapid development of the Internet, Web development has become an indispensable part of various industries. As a programming language with powerful functions and superior performance, Go language is increasingly favored by developers in web development. This article will introduce how to use Go language for Web development through specific code examples, so that readers can better understand and use Go language to build their own Web applications. 1. Simple HTTP Server First, let’s start with a

Huawei Cloud Edge Computing Interconnection Guide: Java code examples to quickly implement interfaces Huawei Cloud Edge Computing Interconnection Guide: Java code examples to quickly implement interfaces Jul 05, 2023 pm 09:57 PM

Huawei Cloud Edge Computing Interconnection Guide: Java Code Samples to Quickly Implement Interfaces With the rapid development of IoT technology and the rise of edge computing, more and more enterprises are beginning to pay attention to the application of edge computing. Huawei Cloud provides edge computing services, providing enterprises with highly reliable computing resources and a convenient development environment, making edge computing applications easier to implement. This article will introduce how to quickly implement the Huawei Cloud edge computing interface through Java code. First, we need to prepare the development environment. Make sure you have the Java Development Kit installed (

Java file operations and cloud storage integration: explore endless possibilities Java file operations and cloud storage integration: explore endless possibilities Feb 27, 2024 pm 04:55 PM

1. Basics of Java file operations In Java, file operations are a basic and important function. You can use the File class and related methods in the Java class library to create, read, write, and delete files. The File class provides a rich API that can meet most file operation needs. Create a file Filefile=newFile("sample.txt");file.createNewFile();Write a fileFileWriterwriter=newFileWriter(file);writer.write("Hello,World!");writer.close();Read a file Fi

See all articles