WordPress database error: [Can't create/write to file '/tmp/#sql-temptable-3e34b3-16b10c-38299.MAI' (Errcode: 13 "Permission denied")]
SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_SCHEMA = DATABASE() AND TABLE_NAME = 'wpia_aioseo_cache' AND COLUMN_NAME = 'name'

WordPress database error: [Can't create/write to file '/tmp/#sql-temptable-3e34b3-16b10c-3829a.MAI' (Errcode: 13 "Permission denied")]
SELECT TABLE_NAME, COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_SCHEMA = DATABASE();

WordPress database error: [Can't create/write to file '/tmp/#sql-temptable-3e34b3-16b10c-3829b.MAI' (Errcode: 13 "Permission denied")]
SHOW FULL COLUMNS FROM `wpia_options`

WordPress database error: [Can't create/write to file '/tmp/#sql-temptable-3e34b3-16b10c-3829c.MAI' (Errcode: 13 "Permission denied")]
SELECT TABLE_NAME, COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_SCHEMA = DATABASE();

WordPress database error: [Can't create/write to file '/tmp/#sql-temptable-3e34b3-16b10c-3829d.MAI' (Errcode: 13 "Permission denied")]
SHOW FULL COLUMNS FROM `wpia_options`

WordPress database error: [Can't create/write to file '/tmp/#sql-temptable-3e34b3-16b10c-3829e.MAI' (Errcode: 13 "Permission denied")]
SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_SCHEMA = DATABASE() AND TABLE_NAME = 'wpia_aioseo_cache'

WordPress database error: [Table 'wpia_aioseo_cache' already exists]
CREATE TABLE wpia_aioseo_cache ( id bigint(20) unsigned NOT NULL AUTO_INCREMENT, name varchar(80) NOT NULL, value longtext NOT NULL, is_object TINYINT(1) DEFAULT 0, expiration datetime DEFAULT NULL, created datetime NOT NULL, updated datetime NOT NULL, PRIMARY KEY (id), UNIQUE KEY ndx_aioseo_cache_name (name), KEY ndx_aioseo_cache_expiration (expiration) ) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci

nisan250 | Nisan Sabag

WordPress database error: [Can't create/write to file '/tmp/#sql-temptable-3e34b3-16b10c-382a1.MAI' (Errcode: 13 "Permission denied")]
SELECT TABLE_NAME, COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_SCHEMA = DATABASE();

WordPress database error: [Can't create/write to file '/tmp/#sql-temptable-3e34b3-16b10c-382a2.MAI' (Errcode: 13 "Permission denied")]
SHOW FULL COLUMNS FROM `wpia_options`

WordPress database error: [Can't create/write to file '/tmp/#sql-temptable-3e34b3-16b10c-382a3.MAI' (Errcode: 13 "Permission denied")]
SELECT TABLE_NAME, COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_SCHEMA = DATABASE();

WordPress database error: [Can't create/write to file '/tmp/#sql-temptable-3e34b3-16b10c-382a4.MAI' (Errcode: 13 "Permission denied")]
SHOW FULL COLUMNS FROM `wpia_options`

Promises Deep Dive

Before promises, we handled asynchronous code with callbacks which were hard to handle well. besides being an unreadable code (pyramid of doom), trying to handle multiple callbacks to run after an asynchronous operation ended or handle a completed process later in the code was hard to handle. There was a need for a better coding approach for handling asynchronous events.

Continue reading “Promises Deep Dive”

Composition Over Inheritance

Before we start to understand the limitations of inheritance and how you can solve them with composition it will be good to point out that prototypal inheritance is for object-oriented programming paradigms as closures are for functional programming paradigms and that inheritance is when you design your types around what they are while the composition is when you design your types around what they do.

Continue reading “Composition Over Inheritance”

WordPress database error: [Can't create/write to file '/tmp/#sql-temptable-3e34b3-16b10c-382a7.MAI' (Errcode: 13 "Permission denied")]
SHOW FULL COLUMNS FROM `wpia_options`