Senza categoria

Modern Event Calendar

RISOLVERE MANCATO INVIO HTML EMAIL

cercare wp_mail_content_type  location solita: /app/libraries/factory.php e commentare la linea

// HTML email
$this->filter('wp_mail_content_type', array($this->main, 'html_email_type'));

ELIMINARE CONFERME EMAIL, LASCIARE SOLO QUELLA DI  CONFERMA

cercare email_verification e booking_confirmation file /app/libraries/notifications.php
commentare il metodo wp_mail

 

MODIFICARE IL CICLO DI REPLICA DEGLI INDIRIZZI EMAIL

Il tutto è all’interno della cartella /app/modules/booking/steps
La gestione è demandata ad un ciclo foreach di un array

 

 

Senza categoria

cache web app

La parte fondamentale è aggiungere vicino le risorse “statiche” il seguente parametro:

?v=’.time().’  o comunque un equivalente in qualsiasi linguaggio in grado di generare una stringa random, possibilmente mai identica in modo tale da forzare il dispositivo ad eseguire un refresh della cache.

echo '

<script src="./framework/js/catalogoMobileInit.js?v='.time().'"></script>
<script src="./framework/js/loadingoverlay.min.js?v='.time().'"></script>

';

 

Senza categoria

imapsync

 ./imapsync \
   --host1 46.252.149.34 --user1 booking@pianotre.it --password1 dEXf0Li^-Rwi \
   --ssl2 --host2 107.6.166.154 --user2 booking@pianotre.it --password2 dEXf0Li^-Rwi \
   --nofoldersizes --useuid --automap

 

Senza categoria

Breakpoint CSS mobile

/*IPHONE 4/5*/
@media only screen and (max-width : 320px) {

}


/*IPHONE 6*/

@media only screen and (max-width : 375px) and (min-width: 321px) {

}

/*	IPHONE 6 PLUS*/
@media only screen and (min-width: 414px) and (max-height: 736px){
	

}

 

Senza categoria

configurazione VNC

sudo apt-get install –no-install-recommends ubuntu-desktop tightvncserver xfce4 xfce4-goodies
vncserver :1

// da eseguire sul terminale locale per attuare il tunnel ssh
ssh -L 5901:127.0.0.1:5901 -N -f -l root 51.254.143.69