@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Remove setup check for "older MySQL external driver"

Summary:
rP23a49eb4 and rP7d8c84a7 bumped the required PHP version from 5.2.3 to 7.2.25.
The old, non-mysqlnd driver was removed in PHP 7.0.0 according to https://www.php.net/manual/en/intro.mysql.php.
Thus there is no need for this check anymore.

Refs T16235

Test Plan: Unknown.

Reviewers: O1 Blessed Committers, valerio.bozzolan

Reviewed By: O1 Blessed Committers, valerio.bozzolan

Subscribers: tobiaswiese, valerio.bozzolan, Matthew, Cigaryno

Maniphest Tasks: T16235

Differential Revision: https://we.phorge.it/D26282

-23
-23
src/applications/config/check/PhabricatorPHPConfigSetupCheck.php
··· 67 67 ->addPHPConfig('always_populate_raw_post_data'); 68 68 } 69 69 70 - if (!defined('MYSQLI_ASYNC')) { 71 - $summary = pht( 72 - 'Configure the MySQL Native Driver to improve database behavior.'); 73 - 74 - $message = pht( 75 - 'PHP is currently using the older MySQL external driver instead of '. 76 - 'the newer MySQL native driver. The older driver lacks options and '. 77 - 'features (like support for query timeouts) which allow this server '. 78 - 'to interact better with the database.'. 79 - "\n\n". 80 - 'This software will work with the older driver, but upgrading to the '. 81 - 'native driver is recommended.'. 82 - "\n\n". 83 - 'You may be able to install the native driver with a command like: %s', 84 - phutil_tag('tt', array(), 'sudo apt-get install php-mysqlnd')); 85 - 86 - 87 - $this->newIssue('php.myqlnd') 88 - ->setName(pht('MySQL Native Driver Not Available')) 89 - ->setSummary($summary) 90 - ->setMessage($message); 91 - } 92 - 93 70 if (ini_get('mysqli.allow_local_infile')) { 94 71 $summary = pht( 95 72 'Disable unsafe option "%s" in PHP configuration.',