2017 © Pedro Peláez
 

library wudimei-mvc

wudimei php framework for web mvc development

image

wudimei.com/wudimei-mvc

wudimei php framework for web mvc development

  • Monday, March 13, 2017
  • by wudimei
  • Repository
  • 1 Watchers
  • 2 Stars
  • 1 Installations
  • CSS
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

requirement

  1. php 7/8

installation 1

  1. composer install
 php composer.phar install
  1. please import /wudimei_mvc.sql to mariadb/mysql, (*1)

  2. please edit files in /config folder, (*2)

  3. nginx rewrite sample
server {
    listen       80;
    server_name  127.0.10.2;
    root   /www/open/WudimeiMVC/public;
    location / {
        index  index.php index.html index.htm;
        try_files $uri $uri/ /index.php?$query_string;
    }
    location ~ \.php$ {
        fastcgi_pass   127.0.0.1:9090;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
        include        fastcgi_params;
     }
}

backend

http://Your_ip_or_domain/backend_2016, (*3)

user: yqr2, (*4)

password:123456, (*5)

links

  1. wudimei template engine https://github.com/wudimei/template
  2. wudimei php https://github.com/wudimeicom/wudimeiphp
  3. IDE Content Assist for WudimeiPHP https://github.com/yangqingrong/WudimeiPHP_IDE_Content_Assist

The Versions

13/03 2017

dev-master

9999999-dev http://www.wudimei.com

wudimei php framework for web mvc development

  Sources   Download

MIT

The Requires