summaryrefslogtreecommitdiff
path: root/install.php
AgeCommit message (Collapse)Author
2009-10-03indent fixBrenda Wallace
2009-09-24Merge branch '0.9.x' of git@gitorious.org:statusnet/mainline into 0.9.xEvan Prodromou
Conflicts: install.php lib/noticeform.php
2009-09-24Merge remote branch 'statusnet/0.8.x' into 0.9.xCraig Andrews
Conflicts: EVENTS.txt actions/requesttoken.php classes/File.php install.php lib/action.php lib/noticeform.php
2009-09-23Merge branch '0.8.x' into 0.9.xEvan Prodromou
Conflicts: actions/requesttoken.php classes/File.php install.php lib/noticeform.php
2009-09-19Pear code styleBrenda Wallace
2009-09-16Updated csarven emails to csarven@status.net and removed dupesSarven Capadisli
2009-09-15dedupe evansEvan Prodromou
2009-09-15change all evans to evan@status.netEvan Prodromou
2009-09-15Fixed broken list items in installer outputZach Copley
2009-09-15Got rid of a bunch of ugly warningsZach Copley
2009-09-14pulled @author from git logsBrenda Wallace
Conflicts: install.php
2009-09-14most of code style errors goneBrenda Wallace
Conflicts: install.php
2009-09-14removed commented out code we no longer wantBrenda Wallace
2009-09-14fixed up curly brackets and spaces around for, if, elseBrenda Wallace
2009-09-14many doxygen comments addedBrenda Wallace
2009-09-14lotsa tabulation changed to 4 spacesBrenda Wallace
2009-09-14fixed missing semisolonBrenda Wallace
2009-09-14removed most of the <?php ?> that was making this hard to readBrenda Wallace
Conflicts: install.php
2009-09-14added doxygen for main()Brenda Wallace
2009-09-14changed curly bracks on if, else, foreach to match pear code stylesBrenda Wallace
2009-09-14added doxygen tagsBrenda Wallace
2009-09-14bug 1814: installer now only offers DB types which are available.Brion Vibber
Abstracted a couple of hardcoded lists of mysql/pgsql checks and radio button creation to use a nice little array of names, installer funcs, and modules to check. Only those DB types whose modules are present will be presented in the installer; if all are missing, we throw an error and list out all the possibilities we were looking for.
2009-09-13Avoid or suppress E_NOTICE and E_WARNING messages related to the checklibs ↵Brion Vibber
checks. * notice on main installer form checking for $_GET['checklibs'] * notices when seeing which module checks to run * warnings when attempting to load include files
2009-09-13Check that 'dl' function is available and usable before trying to call it ↵Brion Vibber
with error suppression; if it's disabled or unavailable we end up with mysterious failures during installation or loading of libraries. Fixed for StatusNet installer as well as some external libraries that should be fixed upstream if they haven't already been: * PEAR * Auth/OpenID * Auth/Yadis
2009-09-02Merge remote branch 'laconica/0.8.x' into 0.9.xCraig Andrews
Conflicts: lib/common.php lib/twitter.php
2009-09-02The 'tidy' extension is a requirementCraig Andrews
Fixes http://status.net/trac/ticket/1844
2009-08-28fix for postgres - was using a non-existent variable to work out if should ↵Brenda Wallace
write quote_identifiers=true
2009-08-27Merge branch '0.9.x' of git@gitorious.org:laconica/mainline into 0.9.xEvan Prodromou
Conflicts: classes/laconica.ini
2009-08-27Merge branch '0.8.x' of git@gitorious.org:laconica/mainline into 0.8.xEvan Prodromou
2009-08-27Merge branch '0.8.x' into 0.9.xEvan Prodromou
Conflicts: EVENTS.txt actions/finishremotesubscribe.php actions/postnotice.php actions/public.php actions/remotesubscribe.php actions/showstream.php actions/updateprofile.php actions/userauthorization.php classes/laconica.ini lib/common.php lib/oauthstore.php lib/omb.php
2009-08-27show SQL errors in the outputEvan Prodromou
2009-08-27don't show a warning when dl() disabledEvan Prodromou
2009-08-27Merge branch '0.8.x' into 0.9.xEvan Prodromou
2009-08-26Merge commit 'laconica/0.8.x' into 0.9.xCraig Andrews
2009-08-26Add library checking pageCraig Andrews
2009-08-26define LACONICA and accept LACONICA for backwards compatibilityEvan Prodromou
2009-08-25global search and replace for laconica -> statusnetEvan Prodromou
2009-08-25change LACONICA to STATUSNETEvan Prodromou
2009-08-25a distributed -> the distributedEvan Prodromou
2009-08-25change Laconica and Control Yourself to StatusNet in PHP filesEvan Prodromou
2009-08-21Include php-gettext 1.0.7 into extlibs; loading it up if native gettext ↵Brion Vibber
extension is not present. This provides a pure PHP implementation of the gettext functions. This should help get laconica running on shared hosting environments where PHP's gettext module may not be installed. Also gets us one step closer to running on Mac OS X 10.5 with Apple's preinstalled PHP, which doesn't provide an easy way to add modules. Source: http://savannah.nongnu.org/projects/php-gettext Copyright (c) 2005 Steven Armstrong <sa at c-area dot ch> GPLv2 or later
2009-08-21Merge branch '0.8.x' into 0.9.xEvan Prodromou
Conflicts: actions/updateprofile.php actions/userauthorization.php classes/User_group.php index.php install.php lib/accountsettingsaction.php lib/logingroupnav.php
2009-08-11fix for trac bug #1805:Brett Taylor
bug on line 381 referred to non existant variable, and caused a php notice and potentially would create a misconfigured config.php database type setting.
2009-08-11install.php: improved support for running Laconica in a sub folder and on a ↵Brett Taylor
non-standard port, tidyed up configuration file generation, removing duplication from db functions,
2009-08-06install.php: improved support for running Laconica in a sub folder and on a ↵Brett Taylor
non-standard port, tidyed up configuration file generation, removing duplication from db functions,
2009-08-05Switch DOCTYPE's to the XHTML 5 DOCTYPECraig Andrews
2009-08-04Use <?php echo instead of <?printTom Adams
2009-07-29Pass $fancy to *_db_installer.Tom Adams
2009-07-29Use <?php not <?.Tom Adams
2009-07-25If cannot connect, then stop the installationCraig Andrews