Danielunan / perkedel

this project for practice using yii2 framework

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

#SCREENSHOTS Alt text

Alt text

Alt text

Alt text

Alt text

#Instructions

edit your hosts file in windows/systems32/drivers/etc/hosts and add 127.0.0.1 [your name url ex:babangtamvvan.flash.backend.id]

edit your vhosts C:\xampp\apache\conf\extra\httpd-vhosts.conf and edit like this

 <VirtualHost *:80>
   ServerName babangtamvvan.flash.backend.id
   DocumentRoot "E:/xampp/htdocs/erp/kim/web/"

   <Directory "E:/xampp/htdocs/erp/kim/web/">
    # use mod_rewrite for pretty URL support
    RewriteEngine on
    # If a directory or a file exists, use the request directly
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    # Otherwise forward the request to index.php
    RewriteRule . index.php

    # use index.php as index file
    DirectoryIndex index.php

    # ...other settings...
   </Directory>
</VirtualHost>

and restart your xampp, and viola !

Latest Stable Version Total Downloads Build Status

DIRECTORY STRUCTURE

common
    config/              contains shared configurations
    mail/                contains view files for e-mails
    models/              contains model classes used in both backend and frontend
    tests/               contains tests for common classes    
console
    config/              contains console configurations
    controllers/         contains console controllers (commands)
    migrations/          contains database migrations
    models/              contains console-specific model classes
    runtime/             contains files generated during runtime
backend
    assets/              contains application assets such as JavaScript and CSS
    config/              contains backend configurations
    controllers/         contains Web controller classes
    models/              contains backend-specific model classes
    runtime/             contains files generated during runtime
    tests/               contains tests for backend application    
    views/               contains view files for the Web application
    web/                 contains the entry script and Web resources
frontend
    assets/              contains application assets such as JavaScript and CSS
    config/              contains frontend configurations
    controllers/         contains Web controller classes
    models/              contains frontend-specific model classes
    runtime/             contains files generated during runtime
    tests/               contains tests for frontend application
    views/               contains view files for the Web application
    web/                 contains the entry script and Web resources
    widgets/             contains frontend widgets
vendor/                  contains dependent 3rd-party packages
environments/            contains environment-based overrides

About

this project for practice using yii2 framework

License:Other


Languages

Language:PHP 71.6%Language:CSS 26.6%Language:Shell 1.4%Language:Batchfile 0.4%