Uploaded September 2017 | Updated September 2026, 3 weeks ago
build-your-website.co.uk/wordpress-backup-restore -In this tutorial you will learn how to backup WordPress files and databases using the Updraftplus plugin.
Wordpress stores data in a MYSQL database and also in the file system. Most WordPress backups concentrate on backing up the database but Updraftplus backs up all WordPress data.
To restore WordPress follow the instructions in this video
youtu.be/hX55sN0ToaI
Other videos that you may find useful
How to Update a WordPress Website or blog
youtu.be/Lq6oN4Y_wUQ
Website Hosting
bluehost.com/track/swcpublish/youtube
build-your-website.co.uk/wordpress-backup-restore -In this tutorial you will learn how to backup WordPress files and databases using the Updraftplus plugin.
Wordpress stores data in a MYSQL database and also in the file system. Most WordPress backups concentrate on backing up the database but Updraftplus backs up all WordPress data.
To restore WordPress follow the instructions in this video
youtu.be/hX55sN0ToaI
Other videos that you may find useful
How to Update a WordPress Website or blog
youtu.be/Lq6oN4Y_wUQ
Website Hosting
bluehost.com/track/swcpublish/youtube








![Store A Function in Global Context
In this video we will look at hoe to store an function in the global context so it can be used in the workspace by simply importing it like any other variable.
Site referenced in video
https://community.oh-lalabs.com/t/how-to-define-global-functions-and-libraries-in-nodered/2883
Code taken from flow
function log_data(message,node,flow) {
let d = new Date();
let now = d.getTime();
let logs = global.get(logs) || [];
let temp = {};
temp.timestamp = now;
temp.utctime = d.toLocaleString();
temp.flow = flow;
temp.node = node;
temp.message = message;
logs.push(temp);
global.set(logs, logs);
}
global.set(log_data,log_data);
//to use import it into the function node using
//let log_data=global.get(log_data);
//call it anywhere in the function using
//log_data(message, node, flow); Store A Function in Global Context](https://i.ytimg.com/vi/Kv0NIjKVV7k/mqdefault.jpg)

