Giter Club home page Giter Club logo

capella56's Introduction

capella5.6

Capella ERP Indonesia v5.6

Kebutuhan :

  1. Yii Framework versi 1.1 versi terakhir (https://yiiframework.com/download)
  2. MariaDB / MySQL
  3. PHP 7.3 FPM (web server nginx) atau PHP 7.3 (Apache)
  4. Web Server Apache / Nginx, keduanya dengan module standard yang dibutuhkan (rewrite, pdo mysql, mysqli, )
  5. Jasper Report untuk aplikasi report

Kalau tidak mau repot, install saja Xampp (Apache + PHP 7.3 + MySQL) atau Winnmp (Nginx + PHP 7.3-FPM + MariaDB)

Instalasi :

  1. Letakkan file framework di folder htdocs (apache) atau folder www (nginx)
  2. Buat folder capella56 dan Letakkan di folder htdocs (apache) atau folder www (nginx)
  3. Buat file .htaccess (apache) atau update nginx.conf, buat domain (nginx)

Isi domain server { listen *:80; server_name capella56my.test; root "c:/winnmp/www/capella56my"; #disesuaikan dengan folder allow all; #index index.php; autoindex on;

location ~ \.php$ {
	try_files $uri =404;
	include		nginx.fastcgi.conf;
	include		nginx.redis.conf;
	fastcgi_pass	php_farm;
	fastcgi_hide_header X-Powered-By;
}

location / {
	rewrite ^/(.*)$ /index.php?url=$1 last;
set $page_to_view "/index.php";
try_files $uri $uri/ @rewrites;
proxy_set_header  Host $host;
proxy_set_header  X-Real-IP $remote_addr;
proxy_set_header  X-Forwarded-Proto https;
proxy_set_header  X-Forwarded-For $remote_addr;
proxy_set_header  X-Forwarded-Host $remote_addr;
}

location ~ \.(js|css|png|jpg|gif|swf|ico|pdf|mov|fla|zip|rar|woff|woff2|ttf|map|mp4)$ {
try_files $uri =404;
access_log off;
log_not_found off;
expires 365d;

} location ~ /.ht { access_log off; log_not_found off; deny all; } location @rewrites { if ($uri ~* ^/([a-z]+)$) { set $page_to_view "/$1.php"; rewrite ^/([a-z]+)$ /$1.php last; } }

}

  1. edit system32/drivers/etc/hosts , tambahkan capella56my.test

  2. Buat Database capellafive + import file capellafive.sql

  3. Edit file config/main.php bagian DB, sesuaikan dengan user, password dan host

  4. Panggil aplikasi ERP di http://capella56my.test

Jika masih error, ulangi dan cek langkah sebelumnya atau improvisasi sendiri hahaha

capella56's People

Contributors

romyandre79 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.