Download the PHP package wulacms/cms without Composer

On this page you can find all versions of the php package wulacms/cms. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package cms

内容管理系统 - CMS

特性

  1. 防CC机制
  2. 防雪崩的缓存机制
  3. 页面版本控制
  4. 审核-发布控制
  5. 自定义内容模型功能
  6. 模板页支持(动态或静态)
  7. 牛逼的ctsctsp模板标签

缓存支持

  1. bootstrap.php文件中将APP_MODE设为pro
  2. 修改conf/cache_config.php配置缓存服务器。
  3. 在输出页面内容前定义EXPIRE常量值为缓存时间即可(单位秒)。

防雪崩机制

bootstrap.php文件中将ANTI_AVALANCHE设为true即可开启(需要redis支持)。

防CC支持

  1. bootstrap.php文件中将ANTI_CC设为单位时间内同一IP可访问次数开启防CC机制。

    • ANTI_CC 格式有两种:
      1. 直接配置访问次数,格式为:100。表示60秒内最多访问100次。
      2. 同时配置访问次数与单位时间,格式为:60/120。表示120秒内最多访问100次。
    • 通过定义ANTI_CC_WHITE常量设置白名单,以逗号分隔.
  2. conf/ccredis_config.php配置供防CC机制工作的redis。

文件存储器

wulacms内置了两个文件存储器:

  1. file - 基于本地文件系统
    • 配置参数: path - 存储路径
  2. ssdb - 基于SSDB数据库
    • 配置参数: host - 主机; port - 端口; timeout - 超时(单位秒)。

注: 各参数使用';'分隔.

例如使用ssdb做为存储,配置如下:

ssdb:host=127.0.0.1;port=8888;timeout=10


All versions of cms with dependencies

PHP Build Version
Package Version
Requires wula/wula-installer Version ^2.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package wulacms/cms contains the following files

Loading the files please wait ....