databaseinstaller Easy database configuration from browser.

  1. Requirements
  2. Installation
  3. Usage
  4. Resources

This module provides an easy way to install database. Things you can configure are:

  • database username
  • database password
  • database name
  • sql file to run(either from upload or from data folder in module)
  • database driver

Once you enter this data, script will first create database if it is not already present, save configuration to config file inside module config folder and run the selected sql file.

I know this could easily be achieved by command line, but this is a nice way to allow non-technical users an easier install of database and it's configuration.

Requirements

Yii Framework 1.1.14
Sql file to create your database

Installation

First clone the repository on Github ~~~ git clone https://github.com/Pintar/yii-database-installer.git ~~~

Copy modules folder inside your projects protected folder.
Ensure that protected/modules/installer/config/params.php is writable. Add to protected/config/main.php the following:

'modules' => array(
    'installer' => array(
            'redirectUrl' => 'site/index', // controller action you want to redirect in case installation has been completed
            'allowSqlUpload' => true, // set this to true if you want to manually upload sql file to run. Otherwise script will look in data folder of the module.
    ),
),
'db' => require(dirname(__FILE__).'/../modules/installer/config/params.php'),

Usage

Once you have installed the module, go to installer/install on your web browser and fill out the form.

Resources

GitHub project page
Need Yii Help?

1 0
6 followers
353 downloads
Yii Version: Unknown
License: MIT
Category: Database
Developed by: PintarProgramming
Created on: Sep 11, 2013
Last updated: 10 years ago

Downloads

show all