User tests: Successful: Unsuccessful:
Pull Request for Issue #13262 (comment)
In table #__redirect_links
column comment
does not have a default value.
On J4 mysql error should be visible.
On postgresql and sqlsrv error exists.
Install fresh joomla staging on postgresql or sqlsrv database.
Enable System - Redirect plugin
Go to not exists page like "index.php?option=sdfsdf"
Before patch:
Error 500 PLG_SYSTEM_REDIRECT_ERROR_UPDATING_DATABASE
After patch:
Error 404
ERROR 404
ERROR 500
None
Status | New | ⇒ | Pending |
Category | ⇒ | SQL Administration com_admin Postgresql MS SQL Installation |
Title |
|
I will fix it in a few moments
I have found that on 9.0 and older postgresql syntax is a little different:
https://www.postgresql.org/docs/9.0/static/sql-createtable.html
https://www.postgresql.org/docs/9.1/static/sql-createtable.html
Labels |
Added:
?
|
I have tested this item
Before the last change I got an installation error. Now it works fine. As I get no other errors everythings seems ok, at least at my side.
Status | Pending | ⇒ | Fixed in Code Base |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2017-02-22 10:39:46 |
Closed_By | ⇒ | wilsonge |
Works for mssql. For postgresql it works when I change the line to
"comment" varchar(255) DEFAULT '' NOT NULL,