This file contains hidden or 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
Install Redis extension on your pc | |
Download the CORRECT version the DDL from the following link | |
https://pecl.php.net/package/redis/4.1.0/windows | |
Put the dll in the correct folder | |
Wamp -> C:\wamp\bin\php\php-XXXX\ext | |
Laragon -> C:\laragon\bin\php\php-XXX\ext | |
Edit the php.ini file adding |
This file contains hidden or 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
/* | |
LES CUENTO QUE ESTUVE COMO 2 DÍAS BUSCANDO LA SOLUCIÓN A ESTE PROBLEMA. | |
EN MI CASO ME PASABA CUANDO INTENTABA SUBIR MI PROYECTO CASI TERMINADO A UN SERVER COMPARTIDO. | |
PROBÉ DESDE LA SOLUCIÓN MAS FACIL A LA MAS DIFÍCIL Y NADA LO ARREGLABA. | |
INSTALÉ 2 VECES DESDE 0 EL PROYECTO... COPIÉ UNO A UNO CADA ARCHIVO QUE HICE... Y NADA |
This file contains hidden or 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
Luego de llevar a cabo los pasos del otro | |
tutorial de cómo instalar Lamp y configurar | |
los virtualhost procedemos a instalar laravel | |
sobre esa intalación. | |
0. Chequeamos estos requisitos necesarios para que funcione Laravel. | |
PHP> = 5.5.9 | |
OpenSSL PHP Extensión | |
DOP PHP Extensión |
This file contains hidden or 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
############################################# | |
# Push de la rama actual | |
git push origin $rama_actual | |
############################################# | |
# Volver a un commit anterior, descartando los cambios | |
git reset --HARD $SHA1 | |
############################################# | |
# Ver y descargar Ramas remotas |
This file contains hidden or 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
Generando tu clave pública SSH | |
PASO 1 | |
$ cd ~/.ssh | |
$ ls | |
authorized_keys2 id_dsa known_hosts | |
config | |
This file contains hidden or 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
1) Sync de files: | |
#entramos en la carpeta que deseamos sincronizar | |
$ cd /public_html/sites/ | |
#sincronizamos la carpeta con la de origen en el repo o servidor por ejemplo. | |
$ rsync -avz [email protected]:/home/www/sites/ . | |
## Si tenemos hostgator u otro servidor que necesita incluir el puerto por ssh haríamos esto. |
This file contains hidden or 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
// Previamente crear y configurar tu app desde facebook developers. | |
//insertá este código en tu página y agregá tu APP ID y listo!.. Lee los comentarios para mas detalles. | |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Document</title> | |
</head> | |
<body> |
NewerOlder