summaryrefslogtreecommitdiff
path: root/installer/installer.php
AgeCommit message (Collapse)Author
2009-01-19mysql_create_db() might not existBharat Mediratta
2009-01-19Use mysqli_init() instead of mysqli() as our detector.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
2009-01-19Replace exec("mysql") call with directy mysql() calls.Bharat Mediratta
2009-01-19Get rid of the driver libaries. Use mysql calls directly in theBharat Mediratta
installer for now. If we detect mysqli, we can always use that as a driver instead, but we don't require it for the installer.
2009-01-18Move installer.php out of helpers and get rid of helpers.Bharat Mediratta