Submitted by bert on Sat, 06/06/2020 - 17:13
When trying to use the Drupal 8 configuration manager you will get to a point where the config from your developemnt site will not import into the production site because the UUID of both sites is not the same.This safety is built in to avoid importing the configuration froim the completely wrong site screwing up the site completely. So as long as the UUID of both sites is not the same you can not synchronise the config of both versions. So the base question is : how to copy the UUID from one site to another?
Submitted by bert on Wed, 18/03/2015 - 13:49
This is a simplified example!
In your template file use the following code to set up the logo.
Submitted by bert on Fri, 13/03/2015 - 10:27
Add this to your theme template.php file.
/**
* adds templates for teasers
* @param string $vars
*/
function MYTHEME_preprocess_node(&$vars) {
if ($vars['view_mode'] == 'teaser') {
$vars['theme_hook_suggestions'][] = 'node__' . $vars['node']->type . '__teaser';
}
}
Now you can add a regular template file like node--basic-page--teaser.tpl.php to the templates of your theme. Just make sure the fields you want to use in your template are available in the view mode of the content type.
Submitted by bert on Mon, 15/12/2014 - 15:19
Submitted by bert on Thu, 30/10/2014 - 12:12
I am an avid Linux user at home. All systems in this house use Linux in one form or another. Even the laptops my 6 and 8 year old daughters use run this OS. It all works well.
Submitted by bert on Thu, 24/05/2012 - 21:22
Tomorrow, May 25th 2012 and the day after, I will be attending Drupal Camp Gent. This is a totally free conference totally dedicated to Drupal. When I say "free" I mean totally free. Even the coffee and the lunch is free. NICE!
Submitted by bert on Thu, 25/08/2011 - 22:55
The need for good passwords
"Why, of why, do I need a good password"you may ask. I may ask you "why. oh why, do you use security keys on your front door". The principle is the same: easy passwords are like old style keys: easy to hack. People with mall intent, also called black hat hackers or crackers, use automated systems to gain access to your computer, your password protected files, your wireless network or the web sites you visit. Most of these systems are based on lists of passwords, called rainbow tables. The less complex your password is, the easier it will be found in the list. These lists contain millions and millions of entries and are usually several gigabytes in size. More common passwords like 123456 and Passw0rd are at the top and are found super fast. 123456 is the most used password in Hotmail. How did somebody find out? They hacked thouseands and thousands of hotmail addresses and made a list of the most common used passwords. More info can be found here.
Submitted by bert on Thu, 25/08/2011 - 22:54
A USB key is a very practical thing for having data available to you everywhere you go. You want to have all kinds of data available to you at all times. Keeping that data safe is another matter. It's all too easy to loose a key or have it stolen from your person. Are you sure that all the data you put in the key is harmless, even when the data it contains is put on the internet for the whole world to see?
This series of articles will show you how I solved this problem.
Pages