Update php to 7.1.4
Details
- Reviewers
JoshStrobl - Group Reviewers
Triage Team - Commits
- R2424:fee4efbc7943: Update php to 7.1.4
Working fine for a week now
Diff Detail
- Repository
- R2424 php
- Lint
Lint Not Applicable - Unit
Tests Not Applicable
Event Timeline
Hey Josh, I replied to your inline comments. As I said the MySQLi extension is missing as well as some other useful extensions. But I thought it would be "cleaner" if I first do the upgrade and afterwards change the build flags.
| files/php.ini-production | ||
|---|---|---|
| 969–971 | Because it isn't present in the default php-production.ini shipped with PHP 7.1. I guess this is because the sqlite extension got replaced by the sqlite3 extension (see line 973). | |
| 1121–1178 | As with the sqlite extension I guess it is not present anymore. Instead you should use the MySQLi driver (see line 1179) oder the MySQL native driver (mysqlnd). | |
| files/php.ini-production | ||
|---|---|---|
| 1121–1178 | I guess you misunderstood me. There is no "MySQL" extension anymore, it's old and obsolete, so this part of the config is irrelevant - the same as with sqlite. The new and only extensions that should be used is "MySQLi" which still has a usable config located in line 1179 (right below our comments) and "mysqlnd" which can also be found a little down. | |
| files/php.ini-production | ||
|---|---|---|
| 1121–1178 | Ah, wasn't clear that the extension was dropped. LGTM. | |