This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
echo "===============================" | |
echo "Installing PHP 7" | |
echo "===============================" | |
sudo yum install php70 | |
echo "===============================" | |
echo "Installing PHP 7 additional commonly used php packages" | |
echo "===============================" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Instalaci贸n de FreeTDS y dependencias: | |
yum install freetds freetds-devel -y | |
# Instalaci贸n del m贸dulo de PHP: | |
yum --enablerepo=remi install php-mssql -y | |
# Habilitar los siguientes booleanos: | |
setsebool -P httpd_can_network_connect 1 | |
setsebool -P httpd_can_network_connect_db 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*jshint asi:true, forin:true, noarg:true, noempty:true, eqeqeq:false, bitwise:true, undef:true, curly:true, browser:true, devel:true, smarttabs:true, maxerr:50 */ | |
/****************************************************************************** | |
* | |
* SOAP | |
* Author: Kerri Shotts | |
* | |
* This library includes simple SOAP functions. MIT license. | |
* | |
* | |
* Usage is pretty straightforward: |