aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install
Commit message (Collapse)AuthorAgeFilesLines
* [prep-release-3.0.9] Bump database version to RC3 too.Andreas Fischer2011-06-261-1/+1
|
* [prep-release-3.0.9] Bumping version number for 3.0.9-RC3.Andreas Fischer2011-06-262-1/+7
|
* [ticket/10223] Make definition of phpbb_require_updated conditionalNils Adermann2011-06-201-11/+14
| | | | | | | The automatic updater defines it too and includes database_update.php for updating which causes an error otherwise. PHPBB3-10223
* [ticket/10223] Replace spaces with tabsNils Adermann2011-06-192-26/+26
| | | | PHPBB3-10223
* [ticket/10223] Check optional before file_exists and correct require pathNils Adermann2011-06-182-4/+4
| | | | PHPBB3-10223
* [ticket/10223] requiring the new startup.php file conditionally.Nils Adermann2011-06-182-10/+38
| | | | | | | Added a function for this which we can potentially apply to more of the files in the installer and database updater. PHPBB3-10223
* [prep-release-3.0.9] Bumping version number for 3.0.9-RC2.Andreas Fischer2011-06-152-2/+8
|
* [ticket/10218] Moving global deregistration, etc. to startup.phpYuriy Rusko2011-06-142-121/+14
| | | | | | | Because startup.php deletes all variables, the constants in database_update are used to preserve settings at the top. PHPBB3-10218
* [ticket/10214] Correct Oracle create table query syntax in db_toolsNils Adermann2011-06-131-2/+2
| | | | | | | | Removes the semicolon at end of oracle CREATE TABLE queries and adds a semicolon to the end of a SELECT query inside of the trigger for a new table's auto increment column before the end keyword PHPBB3-10214
* [ticket/10213] Update install schema with shorter index names.Nils Adermann2011-06-137-21/+21
| | | | PHPBB3-10213
* Merge remote-tracking branch 'naderman/ticket/9892' into develop-olympusAndreas Fischer2011-06-131-2/+2
|\ | | | | | | | | * naderman/ticket/9892: [ticket/9892] _sql in the updater needs to return the transaction results
| * [ticket/9892] _sql in the updater needs to return the transaction resultsNils Adermann2011-06-121-2/+2
| | | | | | | | PHPBB3-9892
* | Merge remote-tracking branch 'naderman/ticket/9992' into develop-olympusAndreas Fischer2011-06-121-0/+7
|\ \ | | | | | | | | | | | | * naderman/ticket/9992: [ticket/9992] The table name constant needs to be defined in the updater
| * | [ticket/9992] The table name constant needs to be defined in the updaterNils Adermann2011-06-121-0/+7
| | | | | | | | | | | | | | | | | | | | | When the database update is run before updating the files the constant is not yet defined. PHPBB3-9992
* | | [develop-olympus] Bumping version number for 3.0.9-RC1.Andreas Fischer2011-06-122-2/+2
| | |
* | | [develop-olympus] Bumping version number for 3.0.9-RC1 and 3.0.9 releases.Andreas Fischer2011-06-121-1/+1
| |/ |/|
* | [ticket/9892] Transaction support for database update sql execution functionNils Adermann2011-06-121-5/+16
| | | | | | | | | | | | | | Updates would fail before because 'begin' as generated by db_tools::sql_create_table would be executed literally. PHPBB3-9892
* | [ticket/9892] Q&A CAPTCHA did not work on firebird, so no need to change configNils Adermann2011-06-121-6/+3
| | | | | | | | PHPBB3-9892
* | [ticket/9892] Shorten login_attempt key names to avoid firebird length problemsNils Adermann2011-06-121-3/+3
| | | | | | | | PHPBB3-9892
* | [ticket/9892] Drop Q&A CAPTCHA tables if left in inconsistent stateNils Adermann2011-06-121-0/+24
| | | | | | | | PHPBB3-9892
* | [ticket/9892] Table prefix lengths influence index lengths in db_toolsNils Adermann2011-06-121-5/+9
| | | | | | | | PHPBB3-9892
* | [ticket/9892] column & index name limits, firebird auto increment in db_toolsNils Adermann2011-06-121-1/+27
|/ | | | | | | | | | | | | | - Column names are limited to 30 characters - Index names are limited to 31 characters. On some dbms the index name contains both table name and actual index name so the limit applies to the sum of the lenghts of table name and index name. - Auto incremented column names are limited to 26 characters to provide an additional 4 characters for sequence names The code for firebird auto increment support using generators/sequences with triggers was copied from create_schema_files.php PHPBB3-9892
* [ticket/9992] Adding a limit on login attempts per IP.Nils Adermann2011-06-109-8/+230
| | | | | | | | | | | | | A new table was created to save all failed login attempts with corresponding information on username, ip and useragent. By default the limit is 50 login attempts within 6 hours per IP. The limit is relatively high to avoid big problems on sites behind a reverse proxy that don't receive the forwarded-for value as REMOTE_ADDR but see all users as coming from the same IP address. But if these users run into problems a special forwarded-for option is available to limit logins by forwarded-for value instead of ip. PHPBB3-9992
* [ticket/9992] Make sql_create_table and sql_table_exists available in updaterNils Adermann2011-06-101-0/+254
| | | | | | | These are defined the same way in db_tools. This duplicated code should be removed together with the rest of the db_tools duplication at some point. PHPBB3-9992
* [ticket/10039] Added mssqlnative cases to phpBB 2.0 converter.Patrick Webster2011-05-131-0/+3
| | | | PHPBB3-10039
* [ticket/10126] Use binary "and not" instead of binary "xor" in error_reporting.Andreas Fischer2011-05-112-2/+2
| | | | | | Make what we want to achieve clear by using "and not" instead of "xor". PHPBB3-10126
* Merge remote-tracking branch 'erikfrerejean/ticket/9954' into develop-olympusOleg Pudeyev2011-05-031-1/+1
|\ | | | | | | | | * erikfrerejean/ticket/9954: [ticket/9954] Remove unneeded never permission
| * [ticket/9954] Remove unneeded never permissionErik Frèrejean2010-12-211-1/+1
| | | | | | | | | | | | | | | | | | The `ROLE_USER_NOAVATAR` role gets a *never* permission assigned for the two "u_masspm*" permissions. Due to this, this role changes behaviour it isn't intended to change. It should assign "no" as is done in the `ROLE_USER_LIMITED` role. PHPBB3-9954
* | [ticket/10059] Fix two misspellings of consistent.Oleg Pudeyev2011-03-011-1/+1
| | | | | | | | PHPBB3-10059
* | Merge branch 'ticket/p/10056' into develop-olympusAndreas Fischer2011-02-241-1/+1
|\ \ | | | | | | | | | | | | * ticket/p/10056: [ticket/10056] Corrected a typo in Firebird name.
| * | [ticket/10056] Corrected a typo in Firebird name.Oleg Pudeyev2011-02-231-1/+1
| | | | | | | | | | | | PHPBB3-10056
* | | [ticket/7778] Update all the schema filesErik Frèrejean2011-02-235-5/+5
| | | | | | | | | | | | | | | | | | Correct all the schema files to contain the new field type PHPBB3-7778
* | | [ticket/7778] BBCode single limitErik Frèrejean2011-02-231-2/+9
|/ / | | | | | | | | | | | | | | | | | | | | | | | | There are currently two hard limits for the number of BBCodes allowed. One is enforced by the type of the `bbcode_id` column, the other by an hard limit in `acp/acp_bbcode.php`. However this limit can never be reached due to the size of the database column. Suggested fix involves adding a new constant to define the max. number of BBCodes (as with smilies) and chaning the database column from a tinyint to a smallint to actually allow 1511 BBCodes PHPBB3-7778
* | [ticket/9944] Add empty line before the while() so you can better read the codeJoas Schilling2011-02-141-0/+1
| | | | | | | | PHPBB3-9944
* | [ticket/9944] Extension groups naming don't use users' language in ACPJoas Schilling2011-01-272-9/+34
| | | | | | | | | | | | Only happens on boards which were installed with 3.0.8 PHPBB3-9944
* | [ticket/9859] Remove years in credit line from some more files.Andreas Fischer2011-01-162-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | Standard HTML output now includes: Powered by <a href="http://www.phpbb.com/">phpBB</a> &copy; phpBB Group Print output now includes: Powered by phpBB &copy; phpBB Group<br />http://www.phpbb.com/ This also fixes an inconsistency where "phpBB Group" was linked instead of "phpBB". PHPBB3-9859
* | [ticket/9348] Call phpbb_set_encoding() on config value 'default_dateformat'.Richard Foote2010-12-281-1/+1
|/ | | | | | | | | Call phpbb_set_encoding() on 'default_dateformat' to properly re-encode non-ascii characters that might be in default_dateformat. E.g. "d M Y à H:i" PHPBB3-9348
* Merge branch 'prep-release-3.0.8' into develop-olympusNils Adermann2010-11-201-1/+7
|\ | | | | | | | | | | | | | | | | | | | | | | | | * prep-release-3.0.8: [prep-release-3.0.8] Incrementing version number to 3.0.8 and update changelog [ticket/9903] Script for detecting potentially malicious flash bbcodes [ticket/9904] Update WebPI Parameters.xml to work with WebMatrix. [ticket/9903] Fix XSS in BBcode-parser's Flash-BBcode. Conflicts: phpBB/includes/constants.php phpBB/install/database_update.php phpBB/install/schemas/schema_data.sql
| * [prep-release-3.0.8] Incrementing version number to 3.0.8 and update changelogNils Adermann2010-11-192-6/+12
| |
* | [develop-olympus] Revert accidental revert of db update lang fix and versionNils Adermann2010-11-111-2/+2
| | | | | | | | Really not my day, is it?
* | [develop-olympus] Remove accidentally added trailing newlines.Nils Adermann2010-11-111-7/+7
| |
* | [develop-olympus] Incrementing the version number to 3.0.9-dev.Nils Adermann2010-11-112-3/+3
|/
* Merge branch 'ticket/nickvergessen/9140' into develop-olympusNils Adermann2010-11-101-2/+2
|\ | | | | | | | | * ticket/nickvergessen/9140: [ticket/9140] Check current board version in incremental update packages
| * [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
* | [ticket/9891] Updater drops language-selection after database-updateJoas Schilling2010-11-101-1/+1
|/ | | | PHPBB3-9891
* Merge branch 'ticket/nickvergessen/9886' into develop-olympusNils Adermann2010-11-101-2/+1
|\ | | | | | | | | * ticket/nickvergessen/9886: [ticket/9886] Update fails on PostgreSQL because of an error in _add_module
| * [ticket/9886] Update fails on PostgreSQL because of an error in _add_moduleJoas Schilling2010-11-091-2/+1
| | | | | | | | PHPBB3-9886
* | [ticket/9884] Reduce queue interval to 60 seconds, email package size to 20Igor Wiedler2010-11-102-2/+13
| | | | | | | | PHPBB3-9884
* | Merge branch 'ticket/nickvergessen/9888' into develop-olympusAndreas Fischer2010-11-081-40/+51
|\ \ | | | | | | | | | | | | * ticket/nickvergessen/9888: [ticket/9888] Update fails when Bing [Bot] was already added to the users table
| * | [ticket/9888] Update fails when Bing [Bot] was already added to the users tableJoas Schilling2010-11-081-40/+51
| |/ | | | | | | | | | | Added a check whether the user already exists before we try to add it. PHPBB3-9888