Skip to content

Commit

Permalink
Added PHP mysqli module in PHP module list to enable
Browse files Browse the repository at this point in the history
  • Loading branch information
nuxwin committed Dec 30, 2014
1 parent 2222516 commit bd7bae0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion autoinstaller/Adapter/DebianAdapter.pm
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ sub postBuild
# Make sure that PHP modules are enabled
if(-x '/usr/sbin/php5enmod') {
my($stdout, $stderr);
my $rs = execute('php5enmod gd imap intl json mcrypt mysql mysqlnd pdo pdo_mysql', \$stdout, \$stderr);
my $rs = execute('php5enmod gd imap intl json mcrypt mysql mysqli mysqlnd pdo pdo_mysql', \$stdout, \$stderr);
debug($stdout) if $stdout;
error($stderr) if $stderr && $rs;
return $rs if $rs;
Expand Down
2 changes: 1 addition & 1 deletion engine/PerlLib/Servers/httpd/apache_fcgid/installer.pm
Original file line number Diff line number Diff line change
Expand Up @@ -652,7 +652,7 @@ sub _buildFastCgiConfFiles
# Make sure that PHP modules are enabled
if(-x '/usr/sbin/php5enmod') {
my($stdout, $stderr);
$rs = execute('php5enmod gd imap intl json mcrypt mysql mysqlnd pdo pdo_mysql', \$stdout, \$stderr);
$rs = execute('php5enmod gd imap intl json mcrypt mysql mysqli mysqlnd pdo pdo_mysql', \$stdout, \$stderr);
debug($stdout) if $stdout;
error($stderr) if $stderr && $rs;
return $rs if $rs;
Expand Down
2 changes: 1 addition & 1 deletion engine/PerlLib/Servers/httpd/apache_itk/installer.pm
Original file line number Diff line number Diff line change
Expand Up @@ -571,7 +571,7 @@ sub _buildPhpConfFiles
# Make sure that PHP modules are enabled
if(-x '/usr/sbin/php5enmod') {
my($stdout, $stderr);
$rs = execute('php5enmod gd imap intl json mcrypt mysql mysqlnd pdo pdo_mysql', \$stdout, \$stderr);
$rs = execute('php5enmod gd imap intl json mcrypt mysql mysqli mysqlnd pdo pdo_mysql', \$stdout, \$stderr);
debug($stdout) if $stdout;
error($stderr) if $stderr && $rs;
return $rs if $rs;
Expand Down
2 changes: 1 addition & 1 deletion engine/PerlLib/Servers/httpd/apache_php_fpm/installer.pm
Original file line number Diff line number Diff line change
Expand Up @@ -672,7 +672,7 @@ sub _buildFastCgiConfFiles
# Make sure that PHP modules are enabled
if(-x '/usr/sbin/php5enmod') {
my($stdout, $stderr);
$rs = execute('php5enmod gd imap intl json mcrypt mysql mysqlnd pdo pdo_mysql', \$stdout, \$stderr);
$rs = execute('php5enmod gd imap intl json mcrypt mysql mysqli mysqlnd pdo pdo_mysql', \$stdout, \$stderr);
debug($stdout) if $stdout;
error($stderr) if $stderr && $rs;
return $rs if $rs;
Expand Down

0 comments on commit bd7bae0

Please sign in to comment.