CMS

I recently used the WordPress plugin WP all import to import my articles from Drupal to WordPress in csv format. To export the content from Drupal I installed the module Entity Export CSV. It was important to me to keep the creation date. The above module allows that, but unfortunately WP all import on the
Read More

Recentemente mi è capitato di dover cambiare tutti i link di un certo sito, precedentemente scritti nei miei vari post. In pratica tutti i miei articoli o quasi contenevano all’interno un link del tipo http://xyz.com che dovevo modificare in https://abcxyz.com. Prima fatevi una copia del database, in caso qualcosa dovesse andare storto!! Utilizzando phpmyadmin o
Read More

Because often, despite the quick start procedure, Openshift isn’t able to correctly deploy a fresh Drupal 7 installation (for example doesn’t provide the default user and password), we can try to install drush (another missing feature). After logging in through ssh to your application, add to app-root/data/.bash_profile: PATH=”$HOME/.composer/vendor/bin:$PATH” Now we install drush through composer: composer
Read More

Il numero di collegamenti inseribili nella dashboard in alto in Drupal 7 è fissato a 7. Per modificare tale valore è necessario modificare il file modules/shortcut/shortcut.admin.inc, linea 16 da: return variable_get(‘shortcut_max_slots’, 7); A   return variable_get(‘shortcut_max_slots’, 10); In tal modo ho ora a disposizione 10 slot per i miei collegamenti. Per rendere effettive le modifiche, oltre
Read More

The following is the code which I’ve written to get a function like Twitter button, but for Plurk. It has been created (and works) on Drupal, but with some minor changes should work on any PHP page. The core point is the url where you’ll be redirected after clicking on the Plurk button. The code
Read More