reliv/rcm
最新稳定版本:1.84.1
Composer 安装命令:
composer require reliv/rcm
包简介
Reliv Content Management System
README 文档
README
If you don't already have the ZF2 skeleton app, download it from github
git clone https://github.com/zendframework/ZendSkeletonApplication.git
Add these entries to the "require" section inside "path-to-zf2-project-root/composer.json"
"require": { "rcm/core" : "dev-master" }
Tell Composer to download the required packages
php /path-to-zf2-project-root/composer.phar update
Run this to set the correct permissions for folders that Apache/PHP must be able to write to
mkdir /path-to-zf2-project-root/data mkdir /path-to-zf2-project-root/data/DoctrineORMModule mkdir /path-to-zf2-project-root/data/DoctrineORMModule/Proxy chmod 777 /path-to-zf2-project-root/data -R mkkdir /path-to-zf2-project-root/public/modules chmod 777 /path-to-zf2-project-root/public/modules
Add Rcm's modules and module paths in "path-to-zf2-project-root/config/application.config.php"
<?php return array( 'modules' => array( //Rcm Dependencies 'DoctrineModule', 'DoctrineORMModule', //RCM core and plugins 'Rcm', 'RcmInstanceConfig', 'RcmHtmlArea', 'RcmNavigation', 'RcmCallToActionBox', 'RcmPortalAnnouncementBox', 'RcmLogin', 'RcmSocialButtons', 'RcmRssFeed', 'RcmRotatingImage', //MUST BE AT BOTTOM OF DEFINITION 'ElFinder', ), 'module_listener_options' => array( 'config_glob_paths' => array( 'config/autoload/{,*.}{global,local}.php', ), 'module_paths' => array( './module', './vendor', './vendor/reliv', './vendor/reliv/RcmPlugins', ), ), );
Add this to "path-to-zf2-project-root/config/autoload/local.php"
<?php return array( 'doctrine' => array( 'connection' => array( 'orm_default' => array( 'driverClass' => 'Doctrine\DBAL\Driver\PDOMySql\Driver', 'params' => array( 'host' => 'localhost', 'port' => '3306', 'user' => 'DATABASE-USERNAME', 'password' => 'DATABASE-PASSWORD', 'dbname' => 'DATABASE-DBNAME', ) ) ), ), 'encryption' => array( 'cypher' => array( 'algo' => 'aes', 'key' => 'CHANGE THIS ENCRYPTION KEY!' ) ), );
To avoid issues with Doctrine, make sure "date.timezone" is set in your php.ini.
date.timezone="America/Chicago"
Navigate to this URL in a browser to run the installer. This loads data into your database and creates symlinks that allow zf2 modules to contain routable public asset folders.
http://localhost/rcm/install
Login with these credentials:
Email: admin@admin.com Password: admin
reliv/rcm 适用场景与选型建议
reliv/rcm 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 2.41k 次下载、GitHub Stars 达 3, 最近一次更新时间为 2015 年 04 月 23 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「manager」 「zf2」 「module」 「content」 「reliv」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 reliv/rcm 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 reliv/rcm 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 reliv/rcm 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
LosLog provides some log utility
The file manager intended for using Laravel with CKEditor / TinyMCE / Colorbox
EdpModuleLayouts is very simple Laminas module for making module-specific layouts insanely easy.
Zend Framework module to leverage the symfony dependency injection container
RCM User HTML views/pages
Builds a Bridge between Zend Expressive and Plugin Managers of Zend\MVC
统计信息
- 总下载量: 2.41k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 11
- 依赖项目数: 2
- 推荐数: 0
其他信息
- 授权协议: ISC
- 更新时间: 2015-04-23