Coder Social home page Coder Social logo

mwi's Introduction

Myopengrid Website

If you are looking for Mwi Framework please checkout here: Mwi Framework

Build Status

Mwi is a web interface and content management system for opensim.

Installation

Set full permissions to files:

chmod 777 application/config/application.php
chmod 777 application/config/database.php
chmod 777 application/bundles.php

Set full permissions to directories:

chmod -R 777 storage
chmod -R 777 bundles
chmod -R 777 public/themes
chmod -R 777 public/bundles

Upload the contents of the Mwi public directory to your webserver public directory. In some host providers it's called public_html, httdocs, etc. All the other folders MUST be outside your server public directory.

Visit your domain to start the installation

http://yourdomain.com/install

Updating an Existing Installation

To update your application and keep all your data (database changes), keep the bundles directory and public directory, you can overwrite all the other files and directories, be aware if you did some customization to save them and re-apply after the updating process.

You also need to reset some settings on 3 files:

your_directory/application/config/application.php

'installed' => false,
to
'installed' => true,

'key' => '',
to
'key' => 'youroldkey',

your_directory/application/config/database.php

'connections' => array(

        'default' => array(
            'driver'   => 'mysql',
            'host'     => '127.0.0.1',
            'database' => 'your_database_name',
            'username' => 'your_database_username',
            'password' => 'your_database_password',
            'charset'  => 'utf8',
            'prefix'   => 'your_database_prefix', // default is _mwi
            'port'     => '3306',
        ),
    ),

your_directory/bundles.php

return array(
    'install' => array(
        'auto'    => true,
        'handles' => 'install',
    ),
);
to
return array(
    'settings' => array(
        'auto'    => true,
        'handles' => 'settings',
    ),
    'modules' => array(
        'auto'    => true,
        'handles' => 'modules',
    ),
);

mwi's People

Contributors

jeffcost avatar

Watchers

 avatar  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.