This plugin is pretty simple. Though for a PHP4 driven site, currently only FTP archiving
is available. It is highly recommended that to get the most out of this plugin & to
enable the best data protection; you use an FTP account that is truly remote, meaning
separate domain name (and more importantly, separate a IP address).
It's a good idea to store the following two items on your own, (in the same place as
wpTimeMachine-archive, which is the archive file generated by the plugin).
Your copy of WordPress:
Your copy of wp-config.php
For security purposes this file is not backed up!
Here's some relevant information to post to the WordPress forum,
if you need help:
Browser: ". $_SERVER['HTTP_USER_AGENT'] ."";
// PHP Version
echo "- PHP: version ". phpversion() ."
";
// cURL extension
if ( function_exists("curl_version") ) {
$cURL_version = curl_version();
echo "- cURL: version " . $cURL_version['version']."
";
} else {
echo "- cURL: no cURL extension About cURL requirement
";
}
// system command
if ( function_exists("system") ) {
echo "- system() command: yes
";
} else {
echo "- system() command: no
";
}
// shell_exec command
if ( function_exists("shell_exec") ) {
echo "- shell_exec() command: yes
";
} else {
echo "- shell_exec() command: no
";
}
// writable wp-content
if ( is_writeable($wpcontent_dir) ) {
echo "- wp-content writable: yes
";
} else {
echo "- wp-content writable: no
";
}
?>