jueves, 24 de noviembre de 2016

lunes, 31 de octubre de 2016

lunes, 11 de julio de 2016

virtualhosy

https://es.godaddy.com/help/configure-apache-virtual-hosts-centos-7-17338

php5 Centos y RHEl 7

https://doc.owncloud.org/server/9.0/admin_manual/installation/php_55_installation.html#centos-7-upgrade-to-php-5-5

RHEL 7 Upgrade to PHP 5.5

To upgrade to PHP 5.5, you must use the Software Collections (SCL) repository to be in compliance with your RHEL support contract, and not any other third-party repository. Follow these steps to install PHP 5.5 from SCL. First you must use your Subscription Manager to enable SCL:
subscription-manager repos --enable rhel-server-rhscl-7-eus-rpms
Then install PHP 5.5 and these modules:
yum install php55 php55-php php55-php-gd php55-php-mbstring
You must also install the updated database module for your database. This installs the new PHP 5.5 module for MySQL/MariaDB:
yum install php55-php-mysqlnd
If you are using the ownCloud LDAP app, you need this module:
yum install php55-php-ldap
Disable loading the old PHP Apache modules by changing their names:
mv /etc/httpd/conf.d/php.conf /etc/httpd/conf.d/php54.off
mv /etc/httpd/conf.modules.d/10-php.conf /etc/httpd/conf.modules.d/10-php54.off
Copy the PHP 5.5 Apache modules into place:
cp /opt/rh/httpd24/root/etc/httpd/conf.d/php55-php.conf /etc/httpd/conf.d/
cp /opt/rh/httpd24/root/etc/httpd/conf.modules.d/10-php55-php.conf /etc/httpd/conf.modules.d/
cp /opt/rh/httpd24/root/etc/httpd/modules/libphp55-php5.so /etc/httpd/modules/
Then restart Apache:
service httpd restart
Verify with phpinfo that your Apache server is using PHP 5.5 and loading the correct modules; see PHP Version and Information to learn how to use phpinfo.

CentOS 7 Upgrade to PHP 5.5

To upgrade to PHP 5.5, use the Red Hat Software Collections (SCL) repository.
Before upgrading, evaluate all of your PHP apps for compatibility with PHP 5.5.
Follow these steps to install PHP 5.5 from SCL. First install the SCL repository:
yum install centos-release-scl
Then install PHP 5.5 and these modules:
yum install php55 php55-php php55-php-gd php55-php-mbstring
You must also install the updated database module for your database. This installs the new PHP 5.5 module for MySQL/MariaDB:
yum install php55-php-mysqlnd
If you are using the ownCloud LDAP app, you need this module:
yum install php55-php-ldap
Disable loading the old PHP Apache modules by changing their names:
mv /etc/httpd/conf.d/php.conf /etc/httpd/conf.d/php54.off
mv /etc/httpd/conf.modules.d/10-php.conf /etc/httpd/conf.modules.d/10-php54.off
Copy the PHP 5.5 Apache modules into place:
cp /opt/rh/httpd24/root/etc/httpd/conf.d/php55-php.conf /etc/httpd/conf.d/
cp /opt/rh/httpd24/root/etc/httpd/conf.modules.d/10-php55-php.conf /etc/httpdconf.modules.d/
cp /opt/rh/httpd24/root/etc/httpd/modules/libphp55-php5.so /etc/httpd/modules/
Then restart Apache:
service httpd restart
Verify with phpinfo that your Apache server is using PHP 5.5 and loading the correct modules; see PHP Version and Information to learn how to use phpinfo.

viernes, 1 de julio de 2016

OwnCloud Debian 8.4

Debian 8.4

echo 'deb http://download.opensuse.org/repositories/isv:/ownCloud:/community/Debian_8.0/ /' >> /etc/apt/sources.list.d/owncloud.list


wget http://download.opensuse.org/repositories/isv:ownCloud:community/Debian_8.0/Release.key

apt-key add - < Release.key

apt-get update

apt-cache search owncloud

apt-get install owncloud

mysql --defaults-file=/etc/mysql/debian.cnf

CREATE DATABASE owncloud;
CREATE USER owncloud@localhost IDENTIFIED BY 'mysecurepassword';
GRANT ALL PRIVILEGES ON owncloud.* TO owncloud@localhost;
flush privileges;
quit


mkdir /var/owncloud

chown www-data:www-data /var/owncloud

chmod 750 /var/owncloud


Habilitar https:

a2enmod ssl

a2ensite default-ssl

service apache2 restart

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...