Drupal 7 blocks external frame due to X-Frame-Options

As documented (https://www.drupal.org/node/2735873) Drupal comunity removed the possibility to embedd a Drupal site into an external frame to avoid clickjacking. The problem Basically you can not put an external Drupal website into an iFrame anymore, if you try to embedd a website with X-Frame-Options restrictions you will get a browser console error stating something like this because it...

> read more ...

Requisiti pubblicazione app su Android store

Di seguito una raccolta delle immagini e info necessarie a sottoporre un'app Android nell'Android store. Occorrono i seguenti testi Titolo (max 30 caratteri) Descrizione breve (max 80 caratteri) Descrizione completa (max 4000 caratteri) Occorrono le seguenti immagini tenendo conto delle indicazioni di Google a riguardo, che riporto di seguito: Predefinita: Italiano – it-IT JPEG o PNG a...

> read more ...

List directories with php and compare them

Sometimes it's important to quickly highlight differences between two folders structure. It could happen expecially when you are obliged to work on cheap environments, without console and you need to understand if there are differences among your local filesystem and the remote one. <?php $dir = __DIR__; $scan_result = scandir( $dir ); foreach ( $scan_result...

> read more ...