summaryrefslogtreecommitdiff
path: root/installer/index.php
AgeCommit message (Collapse)Author
2013-01-21Update copyright to 2013. Fixes #1953.Bharat Mediratta
2012-02-27Update copyright to 2012. #1822Bharat Mediratta
2011-01-21Update copyright to 2011.Bharat Mediratta
2011-01-08Turn off session.use_trans_sid -- that feature attempts to inject session idsBharat Mediratta
into generated URLs and forms, but it doesn't interoperate will with Gallery's Ajax code.
2010-03-03Update the copyright to 2010. It's only 3 months into the year :-)Bharat Mediratta
2009-06-28Get rid of references to vestigial check.html.php page.Bharat Mediratta
2009-06-01use PHP_SAPI instead of php_sapi_name()Bharat Mediratta
2009-05-13Suppress some warningsBharat Mediratta
2009-05-13Gee it's May already. Update copyright to 2009.Bharat Mediratta
2009-01-22Don't allow the installer to run if PHP < 5.2.3Bharat Mediratta
2009-01-20Update README with new install instructionsBharat Mediratta
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-19Pull the environment check out into a separate web page to simplifyBharat Mediratta
the CLI installer. Put a link to it in the footer of every web install page. Don't allow users to run it if Gallery 3 is already installed.
2009-01-19Stub of the web based installer.Bharat Mediratta
2009-01-19Only run the installer from the CLI for nowBharat Mediratta
2009-01-19Fix up various little things to get File_Structure_Test to pass.Bharat Mediratta
2009-01-19Remove -m flag.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-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
2009-01-18Remove the install.php file and move its contents intoTim Almdal
installer::command_line method. Create an index.php that is can be used to install Gallery3 from the web or command line. At this point all that works is the command line installer and if the web installer tries to run, it is redirected to the album main page.