aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/develop
Commit message (Collapse)AuthorAgeFilesLines
* [ticket/12582] Fix coding style.Andreas Fischer2014-05-271-1/+2
| | | | PHPBB3-12582
* [ticket/12582] Remove set -e due to exiftool not liking 0 byte files.Andreas Fischer2014-05-271-1/+0
| | | | PHPBB3-12582
* [ticket/12582] Change strip_icc_profiles.sh to only take a single file.Andreas Fischer2014-05-271-19/+12
| | | | PHPBB3-12582
* [ticket/12582] Overwrite inplace instead of creating _original files.Andreas Fischer2014-05-271-1/+1
| | | | PHPBB3-12582
* [ticket/12582] Add script for strippping ICC profiles from images.Andreas Fischer2014-05-271-0/+33
| | | | PHPBB3-12582
* [ticket/9725] Remove trailing spaces from MSSQL schemaPatrick Webster2014-03-281-2/+2
| | | | PHPBB3-9725
* [ticket/9725] Add dummy indexes for AzureHenry Sudhof2014-03-011-13/+14
| | | | | | | | | SQL Azure requires a primary AKA clustered key on every table. This adds a dummy INT column to act as key, avoiding possible duplicate entries. so that these columns can support bigger (speak: huge) tables PHPBB3-9725
* [ticket/9725] Create an Azure SQL compatible SchemaHenry Sudhof2014-03-011-4/+16
| | | | | | | | | | Two problems were encountered when installing on AzureSQL: -Azure SQL does not support the ON clause of T-SQL -Azure SQL requries a clustered index AKA primary key on all tables The fix is makeshift; it introduces questionable primary indices, which should be replaced with auto--increment columns. PHPBB3-9725
* Merge remote-tracking branch 'bantu/ticket/11753' into prep-release-3.0.12Joas Schilling2013-07-301-2/+19
|\ | | | | | | | | | | * bantu/ticket/11753: [ticket/11753] Remove ?> from MySQL Upgrader. [ticket/11753] Update MySQL upgrader schema data.
| * [ticket/11753] Remove ?> from MySQL Upgrader.Andreas Fischer2013-07-301-2/+0
| | | | | | | | PHPBB3-11753
| * [ticket/11753] Update MySQL upgrader schema data.Andreas Fischer2013-07-301-0/+19
| | | | | | | | PHPBB3-11753
* | [ticket/11524] Add another isset() to mitigate "Illegal string offset 'limit'"Andreas Fischer2013-07-301-1/+2
|/ | | | | | ... on PHP 5.4 or higher. PHPBB3-11524
* [ticket/11227] @return void -> @return null in develop-olympus.Oleg Pudeyev2012-11-294-4/+4
| | | | PHPBB3-11227
* Merge branch 'prep-release-3.0.11' into develop-olympusAndreas Fischer2012-07-231-0/+1
|\ | | | | | | | | | | * prep-release-3.0.11: [ticket/10965] Database update was referring to 3.0.5 instead of 3.0.11-RC1 [ticket/10965] Introduce a new profile field option to display no value
| * [ticket/10965] Introduce a new profile field option to display no valueNils Adermann2012-07-231-0/+1
| | | | | | | | | | | | | | | | By default the 3.0.10 behaviour is kept, profile fields will not show up if they have either not yet been selected or in case of an optional dropdown field if the novalue option was selected. PHPBB3-10965
* | [ticket/10850] Changed the fopen mode to wbBruno Ais2012-06-281-1/+1
|/ | | | | | | | Changed the fopen mode from "wt" to "wb" as requested in the PR. The objective behind this is to prevent writting stuff like "\r\r\n" in windows PHPBB3-10850
* [ticket/10881] Replace old (and unify) file headers in develop files.Andreas Fischer2012-05-109-94/+53
| | | | | | | | This especially also fixes the problem of the copyright symbol being represented using 0xA9, which is neither ASCII nor the appropriate UTF8 byte sequence for the copyright symbol. PHPBB3-10881
* [ticket/10691] Fixed the speed of creating search indexDhruv Goel2012-03-191-1/+1
| | | | | | | $time is now initialized after each batch iteration. Speed for each batch iteration of creating search index is fixed. PHPBB3-10691
* [ticket/9916] Changing header in non-distributed filesUnknown2012-01-0212-22/+8
| | | | PHPBB3-9916
* [ticket/10434] Add script for creating search index from CLI.Andreas Fischer2011-10-301-0/+137
| | | | PHPBB3-10434
* Merge remote-tracking branch 'igorw/ticket/10413' into develop-olympusAndreas Fischer2011-10-161-6/+2
|\ | | | | | | | | | | * igorw/ticket/10413: [ticket/10413] Fix CS [ticket/10413] Make create_schema_files usable
| * [ticket/10413] Fix CSIgor Wiedler2011-10-161-2/+2
| | | | | | | | PHPBB3-10413
| * [ticket/10413] Make create_schema_files usableIgor Wiedler2011-10-141-6/+2
| | | | | | | | PHPBB3-10413
* | [ticket/10189] Get rid of $id$ from schema filesIgor Wiedler2011-10-141-16/+1
| | | | | | | | PHPBB3-10189
* | [ticket/10189] Add "automatically generated" comment into schema-filesIgor Wiedler2011-10-141-0/+26
|/ | | | PHPBB3-10189
* [ticket/9859] Changing all phpBB footers to match the new credit lineYuriy Rusko2011-07-061-3/+3
| | | | PHPBB3-9859
* [ticket/10247] Remove unecessary attempt_id primary key columnNils Adermann2011-07-031-2/+0
| | | | | | | | The database update drops any key of the same name (potential primary key) and afterwards the column. This does not work on some of the supported DBMS and needs further changes. PHPBB3-10247
* [ticket/10213] Update install schema with shorter index names.Nils Adermann2011-06-131-4/+4
| | | | PHPBB3-10213
* [ticket/9892] Removing closing php tag from create_schema_filesNils Adermann2011-06-121-1/+0
| | | | PHPBB3-9892
* [ticket/9892] column & index name limits, firebird auto increment in db_toolsNils Adermann2011-06-121-1/+15
| | | | | | | | | | | | | | - 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-101-0/+20
| | | | | | | | | | | | | 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/10192] Add missing semicolonErik Frèrejean2011-05-231-1/+1
| | | | | | | if the index has to be recreated it will run into the private message table query. PHPBB3-10192
* [ticket/10058] Initialize $phpbb_root_path in mysql_upgrader.php.Oleg Pudeyev2011-02-241-0/+1
| | | | | | | | Since knowledge base instructions tell users to place this script in the root of the forum, use './' as phpbb root path. Actual initialization code copied from check_flash_bbcodes.php. PHPBB3-10058
* [ticket/7778] Add the column change to `mysql_upgrader.php`Erik Frèrejean2011-02-231-1/+1
| | | | PHPBB3-7778
* [ticket/7778] BBCode single limitErik Frèrejean2011-02-231-1/+1
| | | | | | | | | | | | | 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/9859] Remove years in credit line from some more files.Andreas Fischer2011-01-161-1/+1
| | | | | | | | | | | | | 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/9903] Script for detecting potentially malicious flash bbcodesIgor Wiedler2010-11-191-0/+163
| | | | PHPBB3-9903
* [task/set-permissions] shell script to set file permissionsIgor Wiedler2010-06-281-0/+9
| | | | PHPBB3-9689
* Merge branch 'ticket/aptx/9525' into develop-olympusNils Adermann2010-05-161-2/+3
|\ | | | | | | | | * ticket/aptx/9525: [ticket/9524] IPv6 regex does not match all valid IPv6 addresses starting with ::
| * [ticket/9524] IPv6 regex does not match all valid IPv6 addresses starting ↵Marek A. Ruszczyński2010-05-161-2/+3
| | | | | | | | | | | | | | | | with :: :: can replace 1 or more groups (not 2 or more) PHPBB3-9524
* | Merge branch 'master' into develop-olympusNils Adermann2010-03-061-1/+1
|\ \ | |/ |/|
| * exclude the image file with text in the name from having newlines fixedNils Adermann2010-03-051-1/+1
| |
* | Updating the create_schema_files.php file to reflect the minor mssql schema ↵Nils Adermann2010-02-271-2/+4
|/ | | | | | change introduced in r10489 (implementing mssql native driver support - Bug #57055) git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10548 89ea8834-ac86-4346-8a33-228a782c2dd0
* fix_files script must have been broken by svn:eol-style quite a while ago, ↵Nils Adermann2010-01-311-3/+3
| | | | | | now uses tr rather than sed to replace carriage returns git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10464 89ea8834-ac86-4346-8a33-228a782c2dd0
* Bug #56545 - Speed up topic move operation by adding an index for topic_id ↵Andreas Fischer2010-01-282-0/+2
| | | | | | on the topics track table. git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10462 89ea8834-ac86-4346-8a33-228a782c2dd0
* Revert r9564, Fix #54445, Related to #44665.Andreas Fischer2010-01-252-2/+0
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10445 89ea8834-ac86-4346-8a33-228a782c2dd0
* Just a little reminder for when we decide to update the confusables one dayNils Adermann2009-12-231-1/+5
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10365 89ea8834-ac86-4346-8a33-228a782c2dd0
* update mysql_upgrader to latest schemaMeik Sievertsen2009-10-111-0/+1
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10219 89ea8834-ac86-4346-8a33-228a782c2dd0
* Revert r10106 - Index usage is very unlikely because of WHERE IN (). :-|Andreas Fischer2009-09-041-1/+0
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10107 89ea8834-ac86-4346-8a33-228a782c2dd0
* Add INDEX on user_regdate because this is the default ORDER BY in ↵Andreas Fischer2009-09-041-0/+1
| | | | | | memberlist.php - thanks nickvergessen. git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10106 89ea8834-ac86-4346-8a33-228a782c2dd0