wudimeicom/wudimeimvc

wudimei php framework for web mvc development

Installs: 0

Dependents: 0

Suggesters: 0

Security: 0

Stars: 2

Watchers: 1

Forks: 0

Open Issues: 0

Language:CSS

Type:project

dev-main 2022-06-01 03:00 UTC

This package is auto-updated.

Last update: 2025-05-29 01:55:45 UTC


README

http://wudimei.com

requirement

  1. php 7/8

installation 1

  1. composer install
 php composer.phar install
  1. please import /wudimei_mvc.sql to mariadb/mysql

  2. please edit files in /config folder

  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

user: yqr2

password:123456

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