Download the application here: MWI Application
Upload the files to your webserver.
Make sure to set full permissions on the Mwi storage directory
chmod -R 777 storage
Also set full permissions to `application.php` and `bundles.php` files
chmod 777 application/config/application.php
chmod 777 application/bundles.php
Upload the contents of the Mwi public directory to your webserver public directory.
Some host providers it's called public_html, httdocs, etc.
All the other folders MUST be outside your server public directory.
Visit your domain name to start the installation
http://yourdomain.com/install
Here is a video with the installation process:
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',
'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',
),
),
return array(
'install' => array(
'auto' => true,
'handles' => 'install',
),
);
to
return array(
'settings' => array(
'auto' => true,
'handles' => 'settings',
),
'modules' => array(
'auto' => true,
'handles' => 'modules',
),
);
© Myopengrid 2012 - Powered by Myopengrid MWI