08
Sep
2019

update drupal 8 core

Posted by hamu
  1. Backup files: Compress the directory that contains our 'CORE' directory (typically 'public_html' ) and download it to local directory
  2. Backup DB: GO to phpMyAdmin choose the relevant DB, click 'export' on the top right horizontal menu. use 'custom' to compress it or just click 'go' to download it as it is. save it to the same directory you saved the compressed file system
  3. Put site in maintenance mode Configuration > Development > Maintenance mode
Tags: 
10
Feb
2016

Watchdog Log

Posted by hamu

For debugging: Add a call to watchdog in the module or template.php, and set the type to the module or theme name:
watchdog($type, $message)

To view the messages you added using the watchdog, go to Administration >> Reports >> Recent log messages

Tags: 
09
Feb
2016

things I learned about color module

Posted by hamu

Problem:

Changing theme colors using the admin area failed.

Solution:

The logo.png file was missing from the theme's root folder, probably causing a uncaught exception that caused the bug. After locating the image file in thr correct place (root folder), the problem ceased.

Pre-defined color schemes

Pre-defined color schemes are declared in 'color.inc' file, as an array inside 'schemes' array, and are executed in 'preview.js'. So we can use these 2 files to add color definitions to the theme.

Pages