jueves, 30 de junio de 2016

own

imagen inicial

core/css/header.css

#header .logo {
        background-image: url(../img/logo.png);
        background-repeat: no-repeat;
        background-size: 200px;
        background-position: center 30px;
        width: 252px;
        height: 120px;
        margin: 0 auto;
}

leyenda

core/templates/layout.guest.php



                       
                                                        echo "TuxCursos by Franklinux"
                        //print_unescaped($theme->getLongFooter()); ?>

upload_max_filesize = 10G
post_max_size = 10G

                       
               



miércoles, 15 de junio de 2016

LAMP Centos7


Instalar Apache

yum install httpd httpd-devel

instalar mariadb (mysql)
yum install mariadb-server mariadb

Instalar PHP y librerias de conexion
yum install php php-mysql php-common php-gd php-mbstring php-mcrypt php-devel php-xml

iniciar Servicios


systemctl start httpd
systemctl start mariadb

habilitando servicios para inicio

systemctl enable httpd
systemctl enable mariadb

configurando mariadb

mysql_secure_installation

o bien 

mysql -u root -p
enter

mysql> USE mysql; 
mysql> UPDATE user SET Password=PASSWORD('tu nueva contraseña')
WHERE user='root'; 
mysql> FLUSH PRIVILEGES; 
mysql> quit

mysql -u root -p 
Enter Password: 

Instalar systemd y systemd-sysv

Instalar systemd y s ystemd-sysv Debian $apt-get update $apt-get upgrade  $apt-get install systemd  $apt-get install systemd-sysv  Este...