Entradas

JAVASCRIPT - DESHABILITAR RETROCESO, CONTROLAR REFRESH DE PÁGINA

<script type="text/javascript">             function deshabilitaRetroceso() {                     window.location.hash = "no-back-button";                     window.location.hash = "Again-No-back-button" //chrome                     window.onhashchange = function () {                     window.location.hash = "no-back-button";                 };             }             function control(evt) {                 if (a !== 1) {                     var msg = 'Si recarga la página perdera todos los datos ingresados.';                     evt.returnValue = msg;                     return msg;                 }             }             var a = 0;             function valor() {                 a = 1;             }             if ("url.pathname" === window.location.pathname) {                 window.addEventListener('beforeunload', control);             }         </script> Deshabil

ASIGNAR O CAMBIAR FUENTE SUSTITUTA EN WINDOWS

Imagen
Ejecutar regedit (Editor de Registro) Ingresar la fuente a la que se desee colocar una sustituta Ingresar nuevo valor de cadena, o modificar uno existente. En el ejemplo de asigna a SansSerif la fuente Arial Reiniciamos y listo

INTERNET WIFI CON ADAPTADOR WIFI USB

Imagen
COMPARTIR INTERNET CON UN ADAPTADOR WIFI DESDE UN RED CABLEADA EN WINDOWS 10 CREAR RED VIRTUAL: Abrir CMD en modo administrador, ejecutar los siguiente: netsh wlan set hostednetwork mode=allow ssid=mywifi key=1234567 netsh wlan start hostednetwork En la red con internet, seleccionar en uso compartido la red anterior Y listo. Si la conexión principal no tiene DHCP es necesario poner una ip de la red tanto en la red virtual creada (sin puerta de enlace) y en los terminales que se conecten (con puerta de enlace: la ip colocada en la red virtual).

LECTURA XML DESDE JAVA

Ejemplo de lectura de fichero XML usando DOM En el siguiente ejemplo se hace un recorrido por un fichero XML de nombre "empleados.xml" que contiene una lista con la siguiente estructura de empleados con algunos de sus datos: <?xml version = "1.0" encoding = "UTF-8" ?> <EMPLEADOS> <EMPLEADO> <NOMBRE> LUIS MIGUEL </NOMBRE> <APELLIDOS> GALLARDO LEON </APELLIDOS> <NIF> 5674179P </NIF> <EMPRESA> DATATONIC, S.A. </EMPRESA> <DIRECCION> HERMANOS ARAGON , CALLE </DIRECCION> <CP> 11690 </CP> <LOCALIDAD> OLVERA </LOCALIDAD> <TLF_FIJO> 95630316 </TLF_FIJO> <TLF_MOVIL> 69619915 </TLF_MOVIL> </EMPLEADO> <EMPLEADO> <NOMBRE> MIGUEL </NOMBRE> <APELLIDOS> BERENGUEL MARQUINA </APELLIDOS> <NIF> 6182669F </NIF&g

INSTALACIÓN DE SEAFILE EN WINDOWS

Descargar / Descomprimir Instalar Python 2.7.4 de 32 bits Descargar e instalar  Python 2.7.4 de 32 bits Agregar la ruta de instalación de python2.7 a la variable de entorno PATH del sistema.   Si ha instalado python 2.7 a  C:\Python27  agregar  C:\Python27  a la variable de entorno PATH Descargar / Descomprimir Seafile servidor Obtener la última versión del programa Seafile servidor Crear una nueva carpeta para almacenar programa seafile, como  C:\SeafileProgram\  .   Por favor, recuerde la ubicación de la carpeta, vamos a utilizar más tarde. Descomprimir  seafile-server_1.7.0_win32.tar.gz  a  C:\SeafileProgram\ Ahora tienes una carpeta como esto: C:\SeafileProgram |__ seafile-server- 1.7 . 0 Start / inicialización Iniciar Seafile servidor Vaya a la carpeta  C:\SeafileProgram\seafile-server-1.7.0\  , y haga doble clic para comenzar run.bat Seafile Server.   Usted debe notar un icono seafile aparece en la bandeja del sistema.   Elegir un disco para almacenar

OWNCLOUD EN UBUNTU 14

Step 1. First of all log in to your server as root and make sure that all packages are up to date. apt - get update apt - get upgrade Step 2. Instal Apache web server on your Ubuntu 14.04 VPS if it is not already installed. apt - get install apache2 Step 3. Next, install  PHP  on your server. apt - get install php5 php5 - mysql Once the installation is done add the following PHP modules required by OwnCloud: apt - get install php5 - gd php5 - json php5 - curl php5 - intl php5 - mcrypt php5 - imagick Step 4. Install  MySQL  database server. apt - get install mysql - server By default, MySQL is not hardened. You can secure MySQL using the mysql_secure_installation script. you should read and below each steps carefully which will set root password, remove anonymous users, disallow remote root login, and remove the test database and access to secure MySQL. mysql_secure_installation Step 5. Create a n