aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/install_update.php
Commit message (Collapse)AuthorAgeFilesLines
* [ticket/10754] Changing $style to $phpbb_styleVjacheslav Trushkin2012-04-031-1/+1
| | | | | | Renaming global variable $style to $phpbb_style PHPBB3-10754
* [feature/merging-style-components] Updating style initializationVjacheslav Trushkin2012-03-151-2/+2
| | | | | | Changing template initialization to style initialization. PHPBB3-10632
* [feature/merging-style-components] Updating database and acp modulesVjacheslav Trushkin2012-03-141-54/+4
| | | | | | Removing theme and template tables, adding new columns to styles table, deleting acp modules, deleting code that updates theme in updater PHPBB3-10632
* [ticket/9916] Updating header license and removing Version $Id$Unknown2011-12-311-2/+1
| | | | PHPBB3-9916
* [feature/remove-db-styles] Removed database storage of style components.Chris Smith2011-09-201-3/+0
| | | | | | | | | | | | The bulk of database storage of templates is removed, rendering template stored in the database as useless. Theme database storage is reduced to a skeleton for full removal soon. This commit was cherry picked from the old feature/ascraeus-experiment branch the old commit hash is 0dbe7e3b6cd450342d3c566eb2caf36ca1b5db8e. PHPBB3-9741
* [task/config-class] Always specify the config table to use.Nils Adermann2011-01-121-1/+3
| | | | PHPBB3-9988
* [task/config-class] Implemented a config class to replace the global array.Nils Adermann2011-01-101-11/+2
| | | | | | | | | | | | | | | There is a phpbb_config class which simply holds an array and does not persist any data. It implements ArrayAccess, Countable and IteratorAggregate to allow regular use of configuration as if it was still an array. The phpbb_config_db class depends on an instance of the dbal and a cache driver. It obtains the configuration data from cache and database as necessary and persists data to the database. The functions set_config and set_config_count remain for backward compatability but they only call methods on the new config class now instead of directly manipulating the database and cache. PHPBB3-9988
* [ticket/9556] Drop php closing tags, add trailing newlineIgor Wiedler2010-11-111-2/+0
| | | | | | | | | | | | Closing tags converted using Oleg's script. remove-php-end-tags.py -a . Trailing newlines added using the following where $ext is file extension. find . -type f -name "*.$ext" -print | xargs printf "e %s\nw\n" | ed -s; Extensions: php, css, html, js, xml. PHPBB3-9556
* Merge branch 'develop-olympus' into developNils Adermann2010-11-101-2/+2
|\ | | | | | | | | | | | | * develop-olympus: [develop-olympus] Updating changelog for last minute 3.0.8-RC1 fixes. [ticket/9140] Check current board version in incremental update packages [ticket/9891] Updater drops language-selection after database-update
| * [ticket/9140] Check current board version in incremental update packagesJoas Schilling2010-11-101-2/+2
| | | | | | | | | | | | | | | | | | | | We need to use $this->current_version in this case instead of $config['version']. Otherwise the message will be displayed after the database got updated from database_update.php. Using PHPBB_VERSION from includes/constants.php is not the right selection either, because than the message is displayed after the files got updated and are checked one last time. PHPBB3-9140
* | [feature/request-class] Convert any direct access to $_* to use $requestIgor Wiedler2010-09-251-5/+6
|/ | | | PHPBB3-9716
* [ticket/9140] Check current board version in incremental update packagesGabriel Vazquez2010-07-121-0/+11
| | | | | | | | Since we do not want to limit the updater functionality we only display a prominent warning when the current board version does not match the version the update files are meant to update from. PHPBB3-9140
* [ticket/9119] Respect language selection on automated update.Joas Schilling2010-05-161-17/+35
| | | | PHPBB3-9119
* Update: Store expected resulting file contents in cache and do not suggest ↵Nils Adermann2010-02-231-25/+80
| | | | | | | | | | | | further merges if the contents match, also fixes infinite merge loop [Bug #54075] If you were trying to update from 3.0.5 to 3.0.6 but were presented with a dialogue suggesting to merge the same file over and over take the install/install_update.php from 3.0.7-RC2 or current svn, and replace your 3.0.5 one with it. It works fine in 3.0.5. git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10528 89ea8834-ac86-4346-8a33-228a782c2dd0
* Fix Bug #53965, Regression introduced in r9768 - Hardcode language for the ↵Andreas Fischer2009-11-151-1/+1
| | | | | | time being. git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10271 89ea8834-ac86-4346-8a33-228a782c2dd0
* correctly execute database update step (detect if the version the admin ↵Meik Sievertsen2009-10-091-0/+10
| | | | | | wants to update to is greater than the current version even if phpbb.com says the current version is lower than the update version) which correctly updates the database for those who forgot to enable the PHPBB_QA constant for release candidates. git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10218 89ea8834-ac86-4346-8a33-228a782c2dd0
* if preserve_cr is true and the file generated no conflict but is obviously ↵Meik Sievertsen2009-09-201-0/+7
| | | | | | not "empty" we tag it as modified because preserve_cr is the default mode for showing modifications (else the user gets a resolvable conflict and may wonder why ;)) git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10167 89ea8834-ac86-4346-8a33-228a782c2dd0
* Ok, after 20+ hours i think i fixed all grave issues with the updaterMeik Sievertsen2009-09-181-90/+106
| | | | | | | | | | | | | - smaller memory footprint - better checks for already updated files - even less conflicts - fixed automatic conflict resolving after successful merges - no more conflicts for $Id$ changes - fixed skip_whitespace_changes bug where code blocks were added to diff_op_add whereby the previous or next diff_op_copy already had the change - correctly display merged files in diff view (previously it happened that the old file was used for comparision, although the new file was different/newer/merged) git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10163 89ea8834-ac86-4346-8a33-228a782c2dd0
* Bugs #15809, #49215 - Allow updater to work correctly with PHP filename ↵Andreas Fischer2009-08-101-1/+7
| | | | | | | | extensions other than .php. Related revisions: r9935, r9936 git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9948 89ea8834-ac86-4346-8a33-228a782c2dd0
* Bug #49215 again.Andreas Fischer2009-08-071-1/+1
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9936 89ea8834-ac86-4346-8a33-228a782c2dd0
* Fix bug #49215 - Use $phpEx variable instead of hardcoded '.php'Andreas Fischer2009-08-071-2/+2
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9935 89ea8834-ac86-4346-8a33-228a782c2dd0
* Fix bugs #46615 & #46945 - Fail gracefully if store folder is not writable ↵Andreas Fischer2009-07-171-0/+5
| | | | | | during update. git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9768 89ea8834-ac86-4346-8a33-228a782c2dd0
* late fix for #45335 (incorrect log message for update if using old updater)Meik Sievertsen2009-05-191-1/+6
| | | | | | late fix committed because change does not effect update files or patch git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9517 89ea8834-ac86-4346-8a33-228a782c2dd0
* slight change for 3.0.5 for updating.Meik Sievertsen2009-05-061-14/+5
| | | | | | | - only return auth options having 2 or more columns (does not change the outcome, the script works fine) - purge the theme after a successful update the easy way to let style.php do the job git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9510 89ea8834-ac86-4346-8a33-228a782c2dd0
* - adjust db_tools again to not remove any schema (they may be required)Meik Sievertsen2009-02-281-0/+6
| | | | | | - fill dbms version if not yet filled git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9351 89ea8834-ac86-4346-8a33-228a782c2dd0
* TortoiseMerge seems to mess up the newlines... very very annoying bug.Meik Sievertsen2009-01-131-1/+1
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9254 89ea8834-ac86-4346-8a33-228a782c2dd0
* - Allow download of conflicting file for later reference in automatic updaterMeik Sievertsen2009-01-121-16/+34
| | | | | | | | - Default difference view is now 'inline' instead of 'side by side' - Added new option for merging differences to conflicting files in automatic updater git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9252 89ea8834-ac86-4346-8a33-228a782c2dd0
* Help the user if FTP update fails.Meik Sievertsen2008-10-251-2/+3
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9035 89ea8834-ac86-4346-8a33-228a782c2dd0
* PHP 5.3 compatibility.Marek A. R2008-08-151-10/+10
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8760 89ea8834-ac86-4346-8a33-228a782c2dd0
* One commit for those fixes having a very tiny impact (mostly only ↵Meik Sievertsen2008-01-301-3/+3
| | | | | | | | | | | | | | whitespaces or forgotten spans, etc.) Although i somehow mistakingly got #20445 and #15249 into it. :/ Removing s_watching_img from watch_topic_forum() function (Bug #20445) Changing order for post review if more than one post affected (Bug #15249) Language typos/fixes (Bug #20425, #15719, #15429, #14669, #13479) Style/Template fixes (Bug #20065, #19405, #19205, #15028, #14934, #14821, #14752, #14497, #13707, #14738) Tiny code fixes (Bug #20165, #20025, #19795, #14804) git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8350 89ea8834-ac86-4346-8a33-228a782c2dd0
* seems like there is an error within the udpater, skipping the first file ↵Meik Sievertsen2007-12-121-1/+1
| | | | | | changed. This is not good(tm). For Gold, we will provide update packages for going from RC7 -> gold and RC8 -> gold. git-svn-id: file:///svn/phpbb/trunk@8276 89ea8834-ac86-4346-8a33-228a782c2dd0
* lets start thinking about the futureMeik Sievertsen2007-11-191-1/+1
| | | | git-svn-id: file:///svn/phpbb/trunk@8249 89ea8834-ac86-4346-8a33-228a782c2dd0
* erm... i am very very sorry... but i think this one is responsible for the ↵Meik Sievertsen2007-10-151-1/+1
| | | | | | loops people still experience. :o git-svn-id: file:///svn/phpbb/trunk@8196 89ea8834-ac86-4346-8a33-228a782c2dd0
* ok, fought #14735 with the help from paul.Meik Sievertsen2007-10-141-6/+6
| | | | git-svn-id: file:///svn/phpbb/trunk@8189 89ea8834-ac86-4346-8a33-228a782c2dd0
* more fixes...Meik Sievertsen2007-10-141-1/+1
| | | | git-svn-id: file:///svn/phpbb/trunk@8183 89ea8834-ac86-4346-8a33-228a782c2dd0
* automatic updater supporting batch-processing diffMeik Sievertsen2007-10-061-134/+323
| | | | git-svn-id: file:///svn/phpbb/trunk@8152 89ea8834-ac86-4346-8a33-228a782c2dd0
* deregister globals to install tooMeik Sievertsen2007-10-041-4/+4
| | | | git-svn-id: file:///svn/phpbb/trunk@8130 89ea8834-ac86-4346-8a33-228a782c2dd0
* it has been decided amongst the team that using glob() is bad practice, ↵Meik Sievertsen2007-07-171-21/+7
| | | | | | after determining the overall usage among projects as well as the security history of the function. git-svn-id: file:///svn/phpbb/trunk@7900 89ea8834-ac86-4346-8a33-228a782c2dd0
* a bunch of fixesMeik Sievertsen2007-07-141-1/+1
| | | | git-svn-id: file:///svn/phpbb/trunk@7884 89ea8834-ac86-4346-8a33-228a782c2dd0
* allow what is stated within the changelog...Meik Sievertsen2007-07-121-6/+14
| | | | git-svn-id: file:///svn/phpbb/trunk@7874 89ea8834-ac86-4346-8a33-228a782c2dd0
* basically what is listed within the changelog. ;)Meik Sievertsen2007-07-121-0/+5
| | | | git-svn-id: file:///svn/phpbb/trunk@7872 89ea8834-ac86-4346-8a33-228a782c2dd0
* more failsafe "glob()" method.Meik Sievertsen2007-07-101-1/+20
| | | | git-svn-id: file:///svn/phpbb/trunk@7863 89ea8834-ac86-4346-8a33-228a782c2dd0
* #13207David M2007-07-101-0/+3
| | | | git-svn-id: file:///svn/phpbb/trunk@7861 89ea8834-ac86-4346-8a33-228a782c2dd0
* #13149David M2007-07-091-0/+1
| | | | git-svn-id: file:///svn/phpbb/trunk@7850 89ea8834-ac86-4346-8a33-228a782c2dd0
* - do not include if there are no files fetched with glob()Meik Sievertsen2007-07-091-6/+74
| | | | | | | - allow options for merged files on update (merge, new file, old file) git-svn-id: file:///svn/phpbb/trunk@7848 89ea8834-ac86-4346-8a33-228a782c2dd0
* changes...Meik Sievertsen2007-07-081-2/+2
| | | | git-svn-id: file:///svn/phpbb/trunk@7842 89ea8834-ac86-4346-8a33-228a782c2dd0
* some fixes... most importantly the ability to update the board with the ↵Meik Sievertsen2007-07-011-0/+67
| | | | | | automatic files while having fsockopen disabled (instead, the update file information will be used, which may be inaccurate if the admin did a mistake). git-svn-id: file:///svn/phpbb/trunk@7818 89ea8834-ac86-4346-8a33-228a782c2dd0
* fixing bugs within the updater...Meik Sievertsen2007-06-261-3/+35
| | | | git-svn-id: file:///svn/phpbb/trunk@7798 89ea8834-ac86-4346-8a33-228a782c2dd0
* a tiny fixMeik Sievertsen2007-06-171-6/+6
| | | | git-svn-id: file:///svn/phpbb/trunk@7771 89ea8834-ac86-4346-8a33-228a782c2dd0
* ok, mess around with the templates + fixing some bugs + adjusting headers ↵Meik Sievertsen2007-06-091-0/+3
| | | | | | for those files already modified to circumvent conflicts for those having their editor set to remove trailing spaces (not recommended!) git-svn-id: file:///svn/phpbb/trunk@7736 89ea8834-ac86-4346-8a33-228a782c2dd0