What version of phpBB are you using? phpBB 3.1.5
What is your board's URL? http://goldwingdocs.com/forum
Who do you host your board with? Self
How did you install your board? I used the download package from phpBB.com
What is the most recent action performed on your board? Update from a previous version of phpBB3
Is registration required to reproduce this issue? No
Do you have any MODs installed? No
Do you have any extensions installed? No
What version of phpBB3 did you update from? phpBB 3.1.5
What styles do you currently have installed? Prosilver
What language(s) is your board currently using? English
Which database type/version are you using? MS SQL Server
What is your level of experience? Experienced with PHP and phpBB
What actions did you take (updating your board; installing a MOD, style or extension; etc.) prior to this problem becoming noticeable? Updating to 3.1.7
Please describe your problem.
When the database update script is run, it fails when running this update:
\phpbb\db\migration\data\v31x\increase_size_of_dateformat
The error it gives is:
Code: Select all
SQL ERROR [ mssqlnative ]
SQLSTATE: 42000 code: 102 message: [Microsoft][SQL Server Native Client 11.0][SQL Server]Incorrect syntax near 'd'. [102]
Code: Select all
ALTER TABLE [phpbb_users] ADD CONSTRAINT [DF_phpbb_users_user_dateformat_1] DEFAULT (''d M Y H:i'') FOR [user_dateformat]
The correct SQL should be:
Code: Select all
ALTER TABLE [phpbb_users] ADD CONSTRAINT [DF_phpbb_users_user_dateformat_1] DEFAULT ('d M Y H:i') FOR [user_dateformat]
Generated by SRT Generator