summaryrefslogtreecommitdiff
path: root/installer/database_config.php
AgeCommit message (Collapse)Author
2012-05-15Harden installer against bad characters in the database name or prefix. ↵Bharat Mediratta
Fixes #1866.
2009-12-21Updates for the latest version of Kohana 2.4:Bharat Mediratta
1) Controller::$input is gone -- use Input::instance() now 2) Handle new 'database.<default>.connection.params' parameter 3) Handle new 'cache.<default>.prefix' parameter
2009-11-12Initialize the database config with the port number if it is specified. Also ↵Tim Almdal
set it up so the mysqli constructor will split it into host and port for the call to the mysqli constructor. Fixes ticket: #780
2009-08-31Escape single quotes in the password so that we don't break our configBharat Mediratta
syntax. Related to (but unclear that it fixes) ticket #650.
2009-04-23Use single quotes so that user data containing $ doesn't sufferBharat Mediratta
variable interpolation. Fixes ticket #229.
2009-01-20Web based installer. It's still got some rough edges, but you can nowBharat Mediratta
do a complete CLI or web based install.
2009-01-19Fix up various little things to get File_Structure_Test to pass.Bharat Mediratta
2009-01-19Simplification pass over the installer:Bharat Mediratta
- Flattened the directory structure - Greatly simplified structure in installer; it now only reports environmental checks that fail. Simplified code that prints exceptions. Use only mysql calls for the installer, but select mysqli automatically if it's available. Drop the response file; that's easily replicated with flag support - Create a random password for the admin user - Delete unused controllers - Invert the form of the database config template to be mostly non-PHP with just a few PHP calls