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
Guía de instalación de laravel en Linux (Ubuntu) con Apache, MariaDB y PHP (LAMP) | |
/***** Actualizamos e instalamos algunos paquetes *****/ | |
sudo apt update | |
sudo apt install git zip | |
/***** Instalamos Apache2 *****/ | |
sudo apt install apache2 | |
sudo ufw app list | |
sudo ufw allow in "Apache" |
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
Guía de instalación de Wordpress en Ubuntu Server. | |
Instalar LAMP | |
sudo apt update | |
sudo apt install git zip | |
sudo apt install apache2 | |
sudo ufw app list | |
sudo ufw allow in "Apache" |
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
function Unidades(num){ | |
switch(num) | |
{ | |
case 1: return "UN"; | |
case 2: return "DOS"; | |
case 3: return "TRES"; | |
case 4: return "CUATRO"; | |
case 5: return "CINCO"; | |
case 6: return "SEIS"; |