PHPackages                             rudderrave/yii2-rave-cms-erp - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Framework](/categories/framework)
4. /
5. rudderrave/yii2-rave-cms-erp

ActiveProject[Framework](/categories/framework)

rudderrave/yii2-rave-cms-erp
============================

Rave CMS&amp;ERP Based on Yii 2 Advanced Project Template

01CSS

Since Sep 30Pushed 5y ago1 watchersCompare

[ Source](https://github.com/rudderrave/yii2-rave-cms-erp)[ Packagist](https://packagist.org/packages/rudderrave/yii2-rave-cms-erp)[ RSS](/packages/rudderrave-yii2-rave-cms-erp/feed)WikiDiscussions master Synced 3d ago

READMEChangelog (1)DependenciesVersions (1)Used By (0)

yii2-rave-cms-erp
=================

[](#yii2-rave-cms-erp)

RaveCMS&amp;ERP - Control Panel Based On Yii2 PHP Framework

Installation
------------

[](#installation)

### Installing Rave CMS&amp;ERP application.

[](#installing-rave-cmserp-application)

1. Installing (using Composer)

```
If you do not have [Composer](http://getcomposer.org/), follow the instructions in the
[Installing Yii](https://github.com/yiisoft/yii2/blob/master/docs/guide/start-installation.md#installing-via-composer) section of the definitive guide to install it.

With Composer installed, you can then install the application using the following commands:

```bash
cd /var/www/
php composer.phar global require "fxp/composer-asset-plugin:^1.2.0"
php composer.phar create-project --prefer-dist --stability=dev ravesoft/yii2-rave-cms-erp mysite.com
php composer.phar create-project --prefer-dist ravesoft/yii2-rave-cms-erp mysite.com
```

```

2. Initialize the installed application

    Execute the `init` command and select `dev` or `prod` as environment.

    ```
    cd /var/www/mysite.com/
    php init
    ```
3. Configurate your web server:

    For Apache config file could be the following:

    ```

      ServerName mysite.com
      ServerAlias www.mysite.com
      DocumentRoot "/var/www/mysite.com/"

        AllowOverride All

    ```

    For Nginx config file could be the following:

    ```
    server {
        charset      utf-8;
        client_max_body_size  200M;
        listen       80;

        server_name  mysite.com;
        root         /var/www/mysite.com;

        location / {
            root  /var/www/mysite.com/frontend/web;
            try_files  $uri /frontend/web/index.php?$args;

            # avoiding processing of calls to non-existing static files by Yii
            location ~ \.(js|css|png|jpg|gif|swf|ico|pdf|mov|fla|zip|rar)$ {
                access_log  off;
                expires  360d;
                try_files  $uri =404;
            }
        }

        location /admin {
            alias  /var/www/mysite.com/backend/web;
            rewrite  ^(/admin)/$ $1 permanent;
            try_files  $uri /backend/web/index.php?$args;
        }

        # avoiding processing of calls to non-existing static files by Yii
        location ~ ^/admin/(.+\.(js|css|png|jpg|gif|swf|ico|pdf|mov|fla|zip|rar))$ {
            access_log  off;
            expires  360d;

            rewrite  ^/admin/(.+)$ /backend/web/$1 break;
            rewrite  ^/admin/(.+)/(.+)$ /backend/web/$1/$2 break;
            try_files  $uri =404;
        }

        location ~ \.php$ {
            include  fastcgi_params;
            # check your /etc/php5/fpm/pool.d/www.conf to see if PHP-FPM is listening on a socket or port
            fastcgi_pass  unix:/var/run/php5-fpm.sock; ## listen for socket
            #fastcgi_pass  127.0.0.1:9000; ## listen for port
            fastcgi_param  SCRIPT_FILENAME $document_root$fastcgi_script_name;
            try_files  $uri =404;
        }
        #error_page  404 /404.html;

        location = /requirements.php {
            deny all;
        }

        location ~ \.(ht|svn|git) {
            deny all;
        }
    }
    ```
4. Create a new database and adjust the `components['db']` configuration in `common/config/main-local.php` accordingly.
5. Apply all migrations with console command `php yii migrate --migrationLookup=@ravesoft/yii2-rave-core-rest/migrations/,@ravesoft/yii2-rave-auth/migrations/,@ravesoft/yii2-rave-settings/migrations/,@ravesoft/yii2-rave-menu/migrations/,@ravesoft/yii2-rave-user/migrations/,@ravesoft/yii2-rave-translation/migrations/,@ravesoft/yii2-rave-media/migrations/,@ravesoft/yii2-rave-post/migrations/,@ravesoft/yii2-rave-page/migrations/,@ravesoft/yii2-comments/migrations/,@ravesoft/yii2-rave-comment/migrations/,@ravesoft/yii2-rave-seo/migrations/`.
6. Init root user with console command `php yii init-admin`.
7. Configurate your mailer `['components']['mailer']` in `common/config/main-local.php`.

\#####Your `Yee CMS` application is installed. Visit your site `mysite.com` or admin panel `mysite.com/admin`, the site should work and message *Congratulations! You have successfully created your Yii-powered application* should be displayed.

###  Health Score

16

—

LowBetter than 5% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity1

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity32

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://www.gravatar.com/avatar/0f15a9e9c994d08409d229b101895d0fd33359459e297163b043ca1e834c948b?d=identicon)[rudderrave](/maintainers/rudderrave)

---

Top Contributors

[![rudderrave](https://avatars.githubusercontent.com/u/30588400?v=4)](https://github.com/rudderrave "rudderrave (6 commits)")

### Embed Badge

![Health badge](/badges/rudderrave-yii2-rave-cms-erp/health.svg)

```
[![Health](https://phpackages.com/badges/rudderrave-yii2-rave-cms-erp/health.svg)](https://phpackages.com/packages/rudderrave-yii2-rave-cms-erp)
```

###  Alternatives

[laravel/telescope

An elegant debug assistant for the Laravel framework.

5.2k67.8M192](/packages/laravel-telescope)[spiral/roadrunner

RoadRunner: High-performance PHP application server and process manager written in Go and powered with plugins

8.4k12.2M84](/packages/spiral-roadrunner)[nolimits4web/swiper

Most modern mobile touch slider and framework with hardware accelerated transitions

41.8k177.2k1](/packages/nolimits4web-swiper)[laravel/dusk

Laravel Dusk provides simple end-to-end testing and browser automation.

1.9k36.7M259](/packages/laravel-dusk)[laravel/prompts

Add beautiful and user-friendly forms to your command-line applications.

708181.8M596](/packages/laravel-prompts)[cakephp/chronos

A simple API extension for DateTime.

1.4k47.7M121](/packages/cakephp-chronos)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
