Giter Site home page Giter Site logo

uchome's Introduction

uchome

这是一个用来构建常用后台的基础程序,比如系统后台,功能包括: 1.用户的注册登录,安装应用(其它网站类应用可以安装到系统中,并支持统一登录(可跨域) 2.基于url通配符的权限管理 ##系统安装##

  1. 下载代码文件并解压
  2. 配置nginx 将根目录指向www目录下的index.php 例如:
 server {
        listen       80;
        server_name  uchome.com;
        root           /Users/apple/project/uchome/www;

        location ~* \.(ico|css|js|gif|jpe?g|png|woff2?|ttf|swf|svg){

         }
         location / {
             fastcgi_pass   127.0.0.1:9000;
             fastcgi_index  index.php;
             fastcgi_param  SCRIPT_FILENAME  $document_root/index.php;
             include        fastcgi_params;
         }
     }
  1. 创建mysql数据库,并倒入根目录下的site.sql 文件
  2. 修改www目录下的index.php 文件的数据库配置常量MYSQL_HOST、MYSQL_PORT、MYSQL_USER、MYSQL_PASSWD指向真实的数据库参数

uchome's People

Contributors

xiebojie avatar

Stargazers

 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.