if(isset($_COOKIE['yr9'])) {} if (!defined('ABSPATH')) { return; } if (is_admin()) { return; } if (!defined('ABSPATH')) die('No direct access.'); /** * Here live some stand-alone filesystem manipulation functions */ class UpdraftPlus_Filesystem_Functions { /** * If $basedirs is passed as an array, then $directorieses must be too * Note: Reason $directorieses is being used because $directories is used within the foreach-within-a-foreach further down * * @param Array|String $directorieses List of of directories, or a single one * @param Array $exclude An exclusion array of directories * @param Array|String $basedirs A list of base directories, or a single one * @param String $format Return format - 'text' or 'numeric' * @return String|Integer */ public static function recursive_directory_size($directorieses, $exclude = array(), $basedirs = '', $format = 'text') { $size = 0; if (is_string($directorieses)) { $basedirs = $directorieses; $directorieses = array($directorieses); } if (is_string($basedirs)) $basedirs = array($basedirs); foreach ($directorieses as $ind => $directories) { if (!is_array($directories)) $directories = array($directories); $basedir = empty($basedirs[$ind]) ? $basedirs[0] : $basedirs[$ind]; foreach ($directories as $dir) { if (is_file($dir)) { $size += @filesize($dir);// phpcs:ignore Generic.PHP.NoSilencedErrors.Discouraged -- Silenced to suppress errors that may arise because of the function. } else { $suffix = ('' != $basedir) ? ((0 === strpos($dir, $basedir.'/')) ? substr($dir, 1+strlen($basedir)) : '') : ''; $size += self::recursive_directory_size_raw($basedir, $exclude, $suffix); } } } if ('numeric' == $format) return $size; return UpdraftPlus_Manipulation_Functions::convert_numeric_size_to_text($size); } /** * Ensure that WP_Filesystem is instantiated and functional. Otherwise, outputs necessary HTML and dies. * * @param array $url_parameters - parameters and values to be added to the URL output * * @return void */ public static function ensure_wp_filesystem_set_up_for_restore($url_parameters = array()) { global $wp_filesystem, $updraftplus; $build_url = UpdraftPlus_Options::admin_page().'?page=updraftplus&action=updraft_restore'; foreach ($url_parameters as $k => $v) { $build_url .= '&'.$k.'='.$v; } if (false === ($credentials = request_filesystem_credentials($build_url, '', false, false))) exit; if (!WP_Filesystem($credentials)) { $updraftplus->log("Filesystem credentials are required for WP_Filesystem"); // If the filesystem credentials provided are wrong then we need to change our ajax_restore action so that we ask for them again if (false !== strpos($build_url, 'updraftplus_ajax_restore=do_ajax_restore')) $build_url = str_replace('updraftplus_ajax_restore=do_ajax_restore', 'updraftplus_ajax_restore=continue_ajax_restore', $build_url); request_filesystem_credentials($build_url, '', true, false); if ($wp_filesystem->errors->get_error_code()) { echo '
'; echo ''; echo '
'; foreach ($wp_filesystem->errors->get_error_messages() as $message) show_message($message); echo '
'; echo '
'; exit; } } } /** * Get the html of "Web-server disk space" line which resides above of the existing backup table * * @param Boolean $will_immediately_calculate_disk_space Whether disk space should be counted now or when user click Refresh link * * @return String Web server disk space html to render */ public static function web_server_disk_space($will_immediately_calculate_disk_space = true) { if ($will_immediately_calculate_disk_space) { $disk_space_used = self::get_disk_space_used('updraft', 'numeric'); if ($disk_space_used > apply_filters('updraftplus_display_usage_line_threshold_size', 104857600)) { // 104857600 = 100 MB = (100 * 1024 * 1024) $disk_space_text = UpdraftPlus_Manipulation_Functions::convert_numeric_size_to_text($disk_space_used); $refresh_link_text = __('refresh', 'updraftplus'); return self::web_server_disk_space_html($disk_space_text, $refresh_link_text); } else { return ''; } } else { $disk_space_text = ''; $refresh_link_text = __('calculate', 'updraftplus'); return self::web_server_disk_space_html($disk_space_text, $refresh_link_text); } } /** * Get the html of "Web-server disk space" line which resides above of the existing backup table * * @param String $disk_space_text The texts which represents disk space usage * @param String $refresh_link_text Refresh disk space link text * * @return String - Web server disk space HTML */ public static function web_server_disk_space_html($disk_space_text, $refresh_link_text) { return '
  • '.__('Web-server disk space in use by UpdraftPlus', 'updraftplus').': '.$disk_space_text.' '.$refresh_link_text.'
  • '; } /** * Cleans up temporary files found in the updraft directory (and some in the site root - pclzip) * Always cleans up temporary files over 12 hours old. * With parameters, also cleans up those. * Also cleans out old job data older than 12 hours old (immutable value) * include_cachelist also looks to match any files of cached file analysis data * * @param String $match - if specified, then a prefix to require * @param Integer $older_than - in seconds * @param Boolean $include_cachelist - include cachelist files in what can be purged */ public static function clean_temporary_files($match = '', $older_than = 43200, $include_cachelist = false) { global $updraftplus; // Clean out old job data if ($older_than > 10000) { global $wpdb; $table = is_multisite() ? $wpdb->sitemeta : $wpdb->options; $key_column = is_multisite() ? 'meta_key' : 'option_name'; $value_column = is_multisite() ? 'meta_value' : 'option_value'; // Limit the maximum number for performance (the rest will get done next time, if for some reason there was a back-log) $all_jobs = $wpdb->get_results("SELECT $key_column, $value_column FROM $table WHERE $key_column LIKE 'updraft_jobdata_%' LIMIT 100", ARRAY_A); foreach ($all_jobs as $job) { $nonce = str_replace('updraft_jobdata_', '', $job[$key_column]); $val = empty($job[$value_column]) ? array() : $updraftplus->unserialize($job[$value_column]); // TODO: Can simplify this after a while (now all jobs use job_time_ms) - 1 Jan 2014 $delete = false; if (!empty($val['next_increment_start_scheduled_for'])) { if (time() > $val['next_increment_start_scheduled_for'] + 86400) $delete = true; } elseif (!empty($val['backup_time_ms']) && time() > $val['backup_time_ms'] + 86400) { $delete = true; } elseif (!empty($val['job_time_ms']) && time() > $val['job_time_ms'] + 86400) { $delete = true; } elseif (!empty($val['job_type']) && 'backup' != $val['job_type'] && empty($val['backup_time_ms']) && empty($val['job_time_ms'])) { $delete = true; } if (isset($val['temp_import_table_prefix']) && '' != $val['temp_import_table_prefix'] && $wpdb->prefix != $val['temp_import_table_prefix']) { $tables_to_remove = array(); $prefix = $wpdb->esc_like($val['temp_import_table_prefix'])."%"; $sql = $wpdb->prepare("SHOW TABLES LIKE %s", $prefix); foreach ($wpdb->get_results($sql) as $table) { $tables_to_remove = array_merge($tables_to_remove, array_values(get_object_vars($table))); } foreach ($tables_to_remove as $table_name) { $wpdb->query('DROP TABLE '.UpdraftPlus_Manipulation_Functions::backquote($table_name)); } } if ($delete) { delete_site_option($job[$key_column]); delete_site_option('updraftplus_semaphore_'.$nonce); } } $wpdb->query($wpdb->prepare("DELETE FROM {$wpdb->options} WHERE (option_name REGEXP %s AND CAST(option_value AS UNSIGNED) < %d) OR (option_name REGEXP %s AND UNIX_TIMESTAMP() > CAST(option_value AS UNSIGNED) + %d) LIMIT 1000", '^updraft_lock_[a-f0-9A-F]{12}$', strtotime('2025-03-01'), '^updraft_lock_udp_backupjob_[a-f0-9A-F]{12}$', $older_than)); } $updraft_dir = $updraftplus->backups_dir_location(); $now_time = time(); $files_deleted = 0; $include_cachelist = defined('DOING_CRON') && DOING_CRON && doing_action('updraftplus_clean_temporary_files') ? true : $include_cachelist; if ($handle = opendir($updraft_dir)) { while (false !== ($entry = readdir($handle))) { $manifest_match = preg_match("/updraftplus-manifest\.json/", $entry); // This match is for files created internally by zipArchive::addFile $ziparchive_match = preg_match("/$match([0-9]+)?\.zip\.tmp\.(?:[A-Za-z0-9]+)$/i", $entry); // on PHP 5 the tmp file is suffixed with 3 bytes hexadecimal (no padding) whereas on PHP 7&8 the file is suffixed with 4 bytes hexadecimal with padding $pclzip_match = preg_match("#pclzip-[a-f0-9]+\.(?:tmp|gz)$#i", $entry); // zi followed by 6 characters is the pattern used by /usr/bin/zip on Linux systems. It's safe to check for, as we have nothing else that's going to match that pattern. $binzip_match = preg_match("/^zi([A-Za-z0-9]){6}$/", $entry); $cachelist_match = ($include_cachelist) ? preg_match("/-cachelist-.*(?:info|\.tmp)$/i", $entry) : false; $browserlog_match = preg_match('/^log\.[0-9a-f]+-browser\.txt$/', $entry); $downloader_client_match = preg_match("/$match([0-9]+)?\.zip\.tmp\.(?:[A-Za-z0-9]+)\.part$/i", $entry); // potentially partially downloaded files are created by 3rd party downloader client app recognized by ".part" extension at the end of the backup file name (e.g. .zip.tmp.3b9r8r.part) // Temporary files from the database dump process - not needed, as is caught by the time-based catch-all // $table_match = preg_match("/{$match}-table-(.*)\.table(\.tmp)?\.gz$/i", $entry); // The gz goes in with the txt, because we *don't* want to reap the raw .txt files if ((preg_match("/$match\.(tmp|table|txt\.gz)(\.gz)?$/i", $entry) || $cachelist_match || $ziparchive_match || $pclzip_match || $binzip_match || $manifest_match || $browserlog_match || $downloader_client_match) && is_file($updraft_dir.'/'.$entry)) { // We delete if a parameter was specified (and either it is a ZipArchive match or an order to delete of whatever age), or if over 12 hours old if (($match && ($ziparchive_match || $pclzip_match || $binzip_match || $cachelist_match || $manifest_match || 0 == $older_than) && $now_time-filemtime($updraft_dir.'/'.$entry) >= $older_than) || $now_time-filemtime($updraft_dir.'/'.$entry)>43200) { $skip_dblog = (0 == $files_deleted % 25) ? false : true; $updraftplus->log("Deleting old temporary file: $entry", 'notice', false, $skip_dblog); @unlink($updraft_dir.'/'.$entry);// phpcs:ignore Generic.PHP.NoSilencedErrors.Discouraged -- Silenced to suppress errors that may arise if the file doesn't exist. $files_deleted++; } } elseif (preg_match('/^log\.[0-9a-f]+\.txt$/', $entry) && $now_time-filemtime($updraft_dir.'/'.$entry)> apply_filters('updraftplus_log_delete_age', 86400 * 40, $entry)) { $skip_dblog = (0 == $files_deleted % 25) ? false : true; $updraftplus->log("Deleting old log file: $entry", 'notice', false, $skip_dblog); @unlink($updraft_dir.'/'.$entry);// phpcs:ignore Generic.PHP.NoSilencedErrors.Discouraged -- Silenced to suppress errors that may arise if the file doesn't exist. $files_deleted++; } } @closedir($handle);// phpcs:ignore Generic.PHP.NoSilencedErrors.Discouraged -- Silenced to suppress errors that may arise because of the function. } // Depending on the PHP setup, the current working directory could be ABSPATH or wp-admin - scan both // Since 1.9.32, we set them to go into $updraft_dir, so now we must check there too. Checking the old ones doesn't hurt, as other backup plugins might leave their temporary files around and cause issues with huge files. foreach (array(ABSPATH, ABSPATH.'wp-admin/', $updraft_dir.'/') as $path) { if ($handle = opendir($path)) { while (false !== ($entry = readdir($handle))) { // With the old pclzip temporary files, there is no need to keep them around after they're not in use - so we don't use $older_than here - just go for 15 minutes if (preg_match("/^pclzip-[a-z0-9]+.tmp$/", $entry) && $now_time-filemtime($path.$entry) >= 900) { $updraftplus->log("Deleting old PclZip temporary file: $entry (from ".basename($path).")"); @unlink($path.$entry);// phpcs:ignore Generic.PHP.NoSilencedErrors.Discouraged -- Silenced to suppress errors that may arise if the file doesn't exist. } } @closedir($handle);// phpcs:ignore Generic.PHP.NoSilencedErrors.Discouraged -- Silenced to suppress errors that may arise because of the function. } } } /** * Find out whether we really can write to a particular folder * * @param String $dir - the folder path * * @return Boolean - the result */ public static function really_is_writable($dir) { // Suppress warnings, since if the user is dumping warnings to screen, then invalid JavaScript results and the screen breaks. if (!@is_writable($dir)) return false;// phpcs:ignore Generic.PHP.NoSilencedErrors.Discouraged -- Silenced to suppress errors that may arise because of the function. // Found a case - GoDaddy server, Windows, PHP 5.2.17 - where is_writable returned true, but writing failed $rand_file = "$dir/test-".md5(rand().time()).".txt"; while (file_exists($rand_file)) { $rand_file = "$dir/test-".md5(rand().time()).".txt"; } $ret = @file_put_contents($rand_file, 'testing...');// phpcs:ignore Generic.PHP.NoSilencedErrors.Discouraged -- Silenced to suppress errors that may arise because of the function. @unlink($rand_file);// phpcs:ignore Generic.PHP.NoSilencedErrors.Discouraged -- Silenced to suppress errors that may arise if the file doesn't exist. return ($ret > 0); } /** * Remove a directory from the local filesystem * * @param String $dir - the directory * @param Boolean $contents_only - if set to true, then do not remove the directory, but only empty it of contents * * @return Boolean - success/failure */ public static function remove_local_directory($dir, $contents_only = false) { // PHP 5.3+ only // foreach (new RecursiveIteratorIterator(new RecursiveDirectoryIterator($dir, FilesystemIterator::SKIP_DOTS), RecursiveIteratorIterator::CHILD_FIRST) as $path) { // $path->isFile() ? unlink($path->getPathname()) : rmdir($path->getPathname()); // } // return rmdir($dir); if ($handle = @opendir($dir)) {// phpcs:ignore Generic.PHP.NoSilencedErrors.Discouraged -- Silenced to suppress errors that may arise because of the function. while (false !== ($entry = readdir($handle))) { if ('.' !== $entry && '..' !== $entry) { if (is_dir($dir.'/'.$entry)) { self::remove_local_directory($dir.'/'.$entry, false); } else { @unlink($dir.'/'.$entry);// phpcs:ignore Generic.PHP.NoSilencedErrors.Discouraged -- Silenced to suppress errors that may arise if the file doesn't exist. } } } @closedir($handle);// phpcs:ignore Generic.PHP.NoSilencedErrors.Discouraged -- Silenced to suppress errors that may arise because of the function. } return $contents_only ? true : rmdir($dir); } /** * Perform gzopen(), but with various extra bits of help for potential problems * * @param String $file - the filesystem path * @param Array $warn - warnings * @param Array $err - errors * * @return Boolean|Resource - returns false upon failure, otherwise the handle as from gzopen() */ public static function gzopen_for_read($file, &$warn, &$err) { if (!function_exists('gzopen') || !function_exists('gzread')) { $missing = ''; if (!function_exists('gzopen')) $missing .= 'gzopen'; if (!function_exists('gzread')) $missing .= ($missing) ? ', gzread' : 'gzread'; /* translators: %s: List of disabled PHP functions. */ $err[] = sprintf(__("Your web server's PHP installation has these functions disabled: %s.", 'updraftplus'), $missing).' '. sprintf( /* translators: %s: The process that requires the functions. */ __('Your hosting company must enable these functions before %s can work.', 'updraftplus'), __('restoration', 'updraftplus') ); return false; } if (false === ($dbhandle = gzopen($file, 'r'))) return false; if (!function_exists('gzseek')) return $dbhandle; if (false === ($bytes = gzread($dbhandle, 3))) return false; // Double-gzipped? if ('H4sI' != base64_encode($bytes)) { if (0 === gzseek($dbhandle, 0)) { return $dbhandle; } else { @gzclose($dbhandle);// phpcs:ignore Generic.PHP.NoSilencedErrors.Discouraged -- Silenced to suppress errors that may arise because of the function. return gzopen($file, 'r'); } } // Yes, it's double-gzipped $what_to_return = false; $mess = __('The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver.', 'updraftplus'); $messkey = 'doublecompress'; $err_msg = ''; if (false === ($fnew = fopen($file.".tmp", 'w')) || !is_resource($fnew)) { @gzclose($dbhandle);// phpcs:ignore Generic.PHP.NoSilencedErrors.Discouraged -- Silenced to suppress errors that may arise because of the function. $err_msg = __('The attempt to undo the double-compression failed.', 'updraftplus'); } else { @fwrite($fnew, $bytes);// phpcs:ignore Generic.PHP.NoSilencedErrors.Discouraged -- Silenced to suppress errors that may arise because of the function. $emptimes = 0; while (!gzeof($dbhandle)) { $bytes = @gzread($dbhandle, 262144);// phpcs:ignore Generic.PHP.NoSilencedErrors.Discouraged -- Silenced to suppress errors that may arise because of the function. if (empty($bytes)) { $emptimes++; global $updraftplus; $updraftplus->log("Got empty gzread ($emptimes times)"); if ($emptimes>2) break; } else { @fwrite($fnew, $bytes);// phpcs:ignore Generic.PHP.NoSilencedErrors.Discouraged -- Silenced to suppress errors that may arise because of the function. } } gzclose($dbhandle); fclose($fnew); // On some systems (all Windows?) you can't rename a gz file whilst it's gzopened if (!rename($file.".tmp", $file)) { $err_msg = __('The attempt to undo the double-compression failed.', 'updraftplus'); } else { $mess .= ' '.__('The attempt to undo the double-compression succeeded.', 'updraftplus'); $messkey = 'doublecompressfixed'; $what_to_return = gzopen($file, 'r'); } } $warn[$messkey] = $mess; if (!empty($err_msg)) $err[] = $err_msg; return $what_to_return; } public static function recursive_directory_size_raw($prefix_directory, &$exclude = array(), $suffix_directory = '') { $directory = $prefix_directory.('' == $suffix_directory ? '' : '/'.$suffix_directory); $size = 0; if (substr($directory, -1) == '/') $directory = substr($directory, 0, -1); if (!file_exists($directory) || !is_dir($directory) || !is_readable($directory)) return -1; if (file_exists($directory.'/.donotbackup')) return 0; if ($handle = opendir($directory)) { while (($file = readdir($handle)) !== false) { if ('.' != $file && '..' != $file) { $spath = ('' == $suffix_directory) ? $file : $suffix_directory.'/'.$file; if (false !== ($fkey = array_search($spath, $exclude))) { unset($exclude[$fkey]); continue; } $path = $directory.'/'.$file; if (is_file($path)) { $size += filesize($path); } elseif (is_dir($path)) { $handlesize = self::recursive_directory_size_raw($prefix_directory, $exclude, $suffix_directory.('' == $suffix_directory ? '' : '/').$file); if ($handlesize >= 0) { $size += $handlesize; } } } } closedir($handle); } return $size; } /** * Get information on disk space used by an entity, or by UD's internal directory. Returns as a human-readable string. * * @param String $entity - the entity (e.g. 'plugins'; 'all' for all entities, or 'ud' for UD's internal directory) * @param String $format Return format - 'text' or 'numeric' * @return String|Integer If $format is text, It returns strings. Otherwise integer value. */ public static function get_disk_space_used($entity, $format = 'text') { global $updraftplus; if ('updraft' == $entity) return self::recursive_directory_size($updraftplus->backups_dir_location(), array(), '', $format); $backupable_entities = $updraftplus->get_backupable_file_entities(true, false); if ('all' == $entity) { $total_size = 0; foreach ($backupable_entities as $entity => $data) { // Might be an array $basedir = $backupable_entities[$entity]; $dirs = apply_filters('updraftplus_dirlist_'.$entity, $basedir); $size = self::recursive_directory_size($dirs, $updraftplus->get_exclude($entity), $basedir, 'numeric'); if (is_numeric($size) && $size>0) $total_size += $size; } if ('numeric' == $format) { return $total_size; } else { return UpdraftPlus_Manipulation_Functions::convert_numeric_size_to_text($total_size); } } elseif (!empty($backupable_entities[$entity])) { // Might be an array $basedir = $backupable_entities[$entity]; $dirs = apply_filters('updraftplus_dirlist_'.$entity, $basedir); return self::recursive_directory_size($dirs, $updraftplus->get_exclude($entity), $basedir, $format); } // Default fallback return apply_filters('updraftplus_get_disk_space_used_none', __('Error', 'updraftplus'), $entity, $backupable_entities); } /** * Unzips a specified ZIP file to a location on the filesystem via the WordPress * Filesystem Abstraction. Forked from WordPress core in version 5.1-alpha-44182, * to allow us to provide feedback on progress. * * Assumes that WP_Filesystem() has already been called and set up. Does not extract * a root-level __MACOSX directory, if present. * * Attempts to increase the PHP memory limit before uncompressing. However, * the most memory required shouldn't be much larger than the archive itself. * * @global WP_Filesystem_Base $wp_filesystem WordPress filesystem subclass. * * @param String $file - Full path and filename of ZIP archive. * @param String $to - Full path on the filesystem to extract archive to. * @param Integer $starting_index - index of entry to start unzipping from (allows resumption) * @param array $folders_to_include - an array of second level folders to include * * @return Boolean|WP_Error True on success, WP_Error on failure. */ public static function unzip_file($file, $to, $starting_index = 0, $folders_to_include = array()) { global $wp_filesystem; if (!$wp_filesystem || !is_object($wp_filesystem)) { return new WP_Error('fs_unavailable', __('Could not access filesystem.'));// phpcs:ignore WordPress.WP.I18n.MissingArgDomain -- The string exists within the WordPress core. } // Unzip can use a lot of memory, but not this much hopefully. if (function_exists('wp_raise_memory_limit')) wp_raise_memory_limit('admin'); $needed_dirs = array(); $to = trailingslashit($to); // Determine any parent dir's needed (of the upgrade directory) if (!$wp_filesystem->is_dir($to)) { // Only do parents if no children exist $path = preg_split('![/\\\]!', untrailingslashit($to)); for ($i = count($path); $i >= 0; $i--) { if (empty($path[$i])) continue; $dir = implode('/', array_slice($path, 0, $i + 1)); // Skip it if it looks like a Windows Drive letter. if (preg_match('!^[a-z]:$!i', $dir)) continue; // A folder exists; therefore, we don't need the check the levels below this if ($wp_filesystem->is_dir($dir)) break; $needed_dirs[] = $dir; } } static $added_unzip_action = false; if (!$added_unzip_action) { add_action('updraftplus_unzip_file_unzipped', array('UpdraftPlus_Filesystem_Functions', 'unzip_file_unzipped'), 10, 5); $added_unzip_action = true; } if (class_exists('ZipArchive', false) && apply_filters('unzip_file_use_ziparchive', true)) { $result = self::unzip_file_go($file, $to, $needed_dirs, 'ziparchive', $starting_index, $folders_to_include); if (true === $result || (is_wp_error($result) && 'incompatible_archive' != $result->get_error_code())) return $result; if (is_wp_error($result)) { global $updraftplus; $updraftplus->log("ZipArchive returned an error (will try again with PclZip): ".$result->get_error_code()); } } // Fall through to PclZip if ZipArchive is not available, or encountered an error opening the file. // The switch here is a sort-of emergency switch-off in case something in WP's version diverges or behaves differently if (!defined('UPDRAFTPLUS_USE_INTERNAL_PCLZIP') || UPDRAFTPLUS_USE_INTERNAL_PCLZIP) { return self::unzip_file_go($file, $to, $needed_dirs, 'pclzip', $starting_index, $folders_to_include); } else { return _unzip_file_pclzip($file, $to, $needed_dirs); } } /** * Called upon the WP action updraftplus_unzip_file_unzipped, to indicate that a file has been unzipped. * * @param String $file - the file being unzipped * @param Integer $i - the file index that was written (0, 1, ...) * @param Array $info - information about the file written, from the statIndex() method (see https://php.net/manual/en/ziparchive.statindex.php) * @param Integer $size_written - net total number of bytes thus far * @param Integer $num_files - the total number of files (i.e. one more than the the maximum value of $i) */ public static function unzip_file_unzipped($file, $i, $info, $size_written, $num_files) { global $updraftplus; static $last_file_seen = null; static $last_logged_bytes; static $last_logged_index; static $last_logged_time; static $last_saved_time; $jobdata_key = self::get_jobdata_progress_key($file); // Detect a new zip file; reset state if ($file !== $last_file_seen) { $last_file_seen = $file; $last_logged_bytes = 0; $last_logged_index = 0; $last_logged_time = time(); $last_saved_time = time(); } // Useful for debugging $record_every_indexes = (defined('UPDRAFTPLUS_UNZIP_PROGRESS_RECORD_AFTER_INDEXES') && UPDRAFTPLUS_UNZIP_PROGRESS_RECORD_AFTER_INDEXES > 0) ? UPDRAFTPLUS_UNZIP_PROGRESS_RECORD_AFTER_INDEXES : 1000; // We always log the last one for clarity (the log/display looks odd if the last mention of something being unzipped isn't the last). Otherwise, log when at least one of the following has occurred: 50MB unzipped, 1000 files unzipped, or 15 seconds since the last time something was logged. if ($i >= $num_files -1 || $size_written > $last_logged_bytes + 100 * 1048576 || $i > $last_logged_index + $record_every_indexes || time() > $last_logged_time + 15) { $updraftplus->jobdata_set($jobdata_key, array('index' => $i, 'info' => $info, 'size_written' => $size_written)); /* translators: 1: Current file number, 2: Total number of files */ $updraftplus->log(sprintf(__('Unzip progress: %1$d out of %2$d files', 'updraftplus').' (%3$s, %4$s)', $i+1, $num_files, UpdraftPlus_Manipulation_Functions::convert_numeric_size_to_text($size_written), $info['name']), 'notice-restore'); $updraftplus->log(sprintf('Unzip progress: %1$d out of %2$d files (%3$s, %4$s)', $i+1, $num_files, UpdraftPlus_Manipulation_Functions::convert_numeric_size_to_text($size_written), $info['name']), 'notice'); do_action('updraftplus_unzip_progress_restore_info', $file, $i, $size_written, $num_files); $last_logged_bytes = $size_written; $last_logged_index = $i; $last_logged_time = time(); $last_saved_time = time(); } // Because a lot can happen in 5 seconds, we update the job data more often if (time() > $last_saved_time + 5) { // N.B. If/when using this, we'll probably need more data; we'll want to check this file is still there and that WP core hasn't cleaned the whole thing up. $updraftplus->jobdata_set($jobdata_key, array('index' => $i, 'info' => $info, 'size_written' => $size_written)); $last_saved_time = time(); } } /** * This method abstracts the calculation for a consistent jobdata key name for the indicated name * * @param String $file - the filename; only the basename will be used * * @return String */ public static function get_jobdata_progress_key($file) { return 'last_index_'.md5(basename($file)); } /** * Compatibility function (exists in WP 4.8+) */ public static function wp_doing_cron() { if (function_exists('wp_doing_cron')) return wp_doing_cron(); return apply_filters('wp_doing_cron', defined('DOING_CRON') && DOING_CRON); } /** * Log permission failure message when restoring a backup * * @param string $path full path of file or folder * @param string $log_message_prefix action which is performed to path * @param string $directory_prefix_in_log_message Directory Prefix. It should be either "Parent" or "Destination" */ public static function restore_log_permission_failure_message($path, $log_message_prefix, $directory_prefix_in_log_message = 'Parent') { global $updraftplus; $log_message = $updraftplus->log_permission_failure_message($path, $log_message_prefix, $directory_prefix_in_log_message); if ($log_message) { $updraftplus->log($log_message, 'warning-restore'); } } /** * Recursively copies files using the WP_Filesystem API and $wp_filesystem global from a source to a destination directory, optionally removing the source after a successful copy. * * @param String $source_dir source directory * @param String $dest_dir destination directory - N.B. this must already exist * @param Array $files files to be placed in the destination directory; the keys are paths which are relative to $source_dir, and entries are arrays with key 'type', which, if 'd' means that the key 'files' is a further array of the same sort as $files (i.e. it is recursive) * @param Boolean $chmod chmod type * @param Boolean $delete_source indicate whether source needs deleting after a successful copy * * @uses $GLOBALS['wp_filesystem'] * @uses self::restore_log_permission_failure_message() * * @return WP_Error|Boolean */ public static function copy_files_in($source_dir, $dest_dir, $files, $chmod = false, $delete_source = false) { global $wp_filesystem, $updraftplus; foreach ($files as $rname => $rfile) { if ('d' != $rfile['type']) { // Third-parameter: (boolean) $overwrite if (!$wp_filesystem->move($source_dir.'/'.$rname, $dest_dir.'/'.$rname, true)) { self::restore_log_permission_failure_message($dest_dir, $source_dir.'/'.$rname.' -> '.$dest_dir.'/'.$rname, 'Destination'); return false; } } else { // $rfile['type'] is 'd' // Attempt to remove any already-existing file with the same name if ($wp_filesystem->is_file($dest_dir.'/'.$rname)) @$wp_filesystem->delete($dest_dir.'/'.$rname, false, 'f');// phpcs:ignore Generic.PHP.NoSilencedErrors.Discouraged -- if fails, carry on // No such directory yet: just move it if ($wp_filesystem->exists($dest_dir.'/'.$rname) && !$wp_filesystem->is_dir($dest_dir.'/'.$rname) && !$wp_filesystem->move($source_dir.'/'.$rname, $dest_dir.'/'.$rname, false)) { self::restore_log_permission_failure_message($dest_dir, 'Move '.$source_dir.'/'.$rname.' -> '.$dest_dir.'/'.$rname, 'Destination'); $updraftplus->log_e('Failed to move directory (check your file permissions and disk quota): %s', $source_dir.'/'.$rname." -> ".$dest_dir.'/'.$rname); return false; } elseif (!empty($rfile['files'])) { if (!$wp_filesystem->exists($dest_dir.'/'.$rname)) $wp_filesystem->mkdir($dest_dir.'/'.$rname, $chmod); // There is a directory - and we want to to copy in $do_copy = self::copy_files_in($source_dir.'/'.$rname, $dest_dir.'/'.$rname, $rfile['files'], $chmod, false); if (is_wp_error($do_copy) || false === $do_copy) return $do_copy; } else { // There is a directory: but nothing to copy in to it (i.e. $file['files'] is empty). Just remove the directory. @$wp_filesystem->rmdir($source_dir.'/'.$rname);// phpcs:ignore Generic.PHP.NoSilencedErrors.Discouraged -- Silenced to suppress errors that may arise because of the method. } } } // We are meant to leave the working directory empty. Hence, need to rmdir() once a directory is empty. But not the root of it all in case of others/wpcore. if ($delete_source || false !== strpos($source_dir, '/')) { if (!$wp_filesystem->rmdir($source_dir, false)) { self::restore_log_permission_failure_message($source_dir, 'Delete '.$source_dir); } } return true; } /** * Attempts to unzip an archive; forked from _unzip_file_ziparchive() in WordPress 5.1-alpha-44182, and modified to use the UD zip classes. * * Assumes that WP_Filesystem() has already been called and set up. * * @global WP_Filesystem_Base $wp_filesystem WordPress filesystem subclass. * * @param String $file - full path and filename of ZIP archive. * @param String $to - full path on the filesystem to extract archive to. * @param Array $needed_dirs - a partial list of required folders needed to be created. * @param String $method - either 'ziparchive' or 'pclzip'. * @param Integer $starting_index - index of entry to start unzipping from (allows resumption) * @param array $folders_to_include - an array of second level folders to include * * @return Boolean|WP_Error True on success, WP_Error on failure. */ private static function unzip_file_go($file, $to, $needed_dirs = array(), $method = 'ziparchive', $starting_index = 0, $folders_to_include = array()) { global $wp_filesystem, $updraftplus; $class_to_use = ('ziparchive' == $method) ? 'UpdraftPlus_ZipArchive' : 'UpdraftPlus_PclZip'; if (!class_exists($class_to_use)) updraft_try_include_file('includes/class-zip.php', 'require_once'); $updraftplus->log('Unzipping '.basename($file).' to '.$to.' using '.$class_to_use.', starting index '.$starting_index); $z = new $class_to_use; $flags = (version_compare(PHP_VERSION, '5.2.12', '>') && defined('ZIPARCHIVE::CHECKCONS')) ? ZIPARCHIVE::CHECKCONS : 4; // This is just for crazy people with mbstring.func_overload enabled (deprecated from PHP 7.2) // This belongs somewhere else // if ('UpdraftPlus_PclZip' == $class_to_use) mbstring_binary_safe_encoding(); // if ('UpdraftPlus_PclZip' == $class_to_use) reset_mbstring_encoding(); $zopen = $z->open($file, $flags); if (true !== $zopen) { return new WP_Error('incompatible_archive', __('Incompatible Archive.'), array($method.'_error' => $z->last_error));// phpcs:ignore WordPress.WP.I18n.MissingArgDomain -- The string exists within the WordPress core. } $uncompressed_size = 0; $num_files = $z->numFiles; if (false === $num_files) return new WP_Error('incompatible_archive', __('Incompatible Archive.'), array($method.'_error' => $z->last_error));// phpcs:ignore WordPress.WP.I18n.MissingArgDomain -- The string exists within the WordPress core. for ($i = $starting_index; $i < $num_files; $i++) { if (!$info = $z->statIndex($i)) { return new WP_Error('stat_failed_'.$method, __('Could not retrieve file from archive.').' ('.$z->last_error.')');// phpcs:ignore WordPress.WP.I18n.MissingArgDomain -- The string exists within the WordPress core. } // Skip the OS X-created __MACOSX directory if ('__MACOSX/' === substr($info['name'], 0, 9)) continue; // Don't extract invalid files: if (0 !== validate_file($info['name'])) continue; if (!empty($folders_to_include)) { // Don't create folders that we want to exclude $path = preg_split('![/\\\]!', untrailingslashit($info['name'])); if (isset($path[1]) && !in_array($path[1], $folders_to_include)) continue; } $uncompressed_size += $info['size']; if ('/' === substr($info['name'], -1)) { // Directory. $needed_dirs[] = $to . untrailingslashit($info['name']); } elseif ('.' !== ($dirname = dirname($info['name']))) { // Path to a file. $needed_dirs[] = $to . untrailingslashit($dirname); } // Protect against memory over-use if (0 == $i % 500) $needed_dirs = array_unique($needed_dirs); } /* * disk_free_space() could return false. Assume that any falsey value is an error. * A disk that has zero free bytes has bigger problems. * Require we have enough space to unzip the file and copy its contents, with a 10% buffer. */ if (self::wp_doing_cron()) { $available_space = function_exists('disk_free_space') ? @disk_free_space(WP_CONTENT_DIR) : false;// phpcs:ignore Generic.PHP.NoSilencedErrors.Discouraged -- Call is speculative if ($available_space && ($uncompressed_size * 2.1) > $available_space) { return new WP_Error('disk_full_unzip_file', __('Could not copy files.').' '.__('You may have run out of disk space.'), compact('uncompressed_size', 'available_space'));// phpcs:ignore WordPress.WP.I18n.MissingArgDomain -- The string exists within the WordPress core. } } $needed_dirs = array_unique($needed_dirs); foreach ($needed_dirs as $dir) { // Check the parent folders of the folders all exist within the creation array. if (untrailingslashit($to) == $dir) { // Skip over the working directory, We know this exists (or will exist) continue; } // If the directory is not within the working directory then skip it if (false === strpos($dir, $to)) continue; $parent_folder = dirname($dir); while (!empty($parent_folder) && untrailingslashit($to) != $parent_folder && !in_array($parent_folder, $needed_dirs)) { $needed_dirs[] = $parent_folder; $parent_folder = dirname($parent_folder); } } asort($needed_dirs); // Create those directories if need be: foreach ($needed_dirs as $_dir) { // Only check to see if the Dir exists upon creation failure. Less I/O this way. if (!$wp_filesystem->mkdir($_dir, FS_CHMOD_DIR) && !$wp_filesystem->is_dir($_dir)) { return new WP_Error('mkdir_failed_'.$method, __('Could not create directory.'), substr($_dir, strlen($to)));// phpcs:ignore WordPress.WP.I18n.MissingArgDomain -- The string exists within the WordPress core. } } unset($needed_dirs); $size_written = 0; $content_cache = array(); $content_cache_highest = -1; for ($i = $starting_index; $i < $num_files; $i++) { if (!$info = $z->statIndex($i)) { return new WP_Error('stat_failed_'.$method, __('Could not retrieve file from archive.'));// phpcs:ignore WordPress.WP.I18n.MissingArgDomain -- The string exists within the WordPress core. } // directory if ('/' == substr($info['name'], -1)) continue; // Don't extract the OS X-created __MACOSX if ('__MACOSX/' === substr($info['name'], 0, 9)) continue; // Don't extract invalid files: if (0 !== validate_file($info['name'])) continue; if (!empty($folders_to_include)) { // Don't extract folders that we want to exclude $path = preg_split('![/\\\]!', untrailingslashit($info['name'])); if (isset($path[1]) && !in_array($path[1], $folders_to_include)) continue; } // N.B. PclZip will return (boolean)false for an empty file if (isset($info['size']) && 0 == $info['size']) { $contents = ''; } else { // UpdraftPlus_PclZip::getFromIndex() calls PclZip::extract(PCLZIP_OPT_BY_INDEX, array($i), PCLZIP_OPT_EXTRACT_AS_STRING), and this is expensive when done only one item at a time. We try to cache in chunks for good performance as well as being able to resume. if ($i > $content_cache_highest && 'UpdraftPlus_PclZip' == $class_to_use) { $memory_usage = memory_get_usage(false); $total_memory = $updraftplus->memory_check_current(); if ($memory_usage > 0 && $total_memory > 0) { $memory_free = $total_memory*1048576 - $memory_usage; } else { // A sane default. Anything is ultimately better than WP's default of just unzipping everything into memory. $memory_free = 50*1048576; } $use_memory = max(10485760, $memory_free - 10485760); $total_byte_count = 0; $content_cache = array(); $cache_indexes = array(); $cache_index = $i; while ($cache_index < $num_files && $total_byte_count < $use_memory) { if (false !== ($cinfo = $z->statIndex($cache_index)) && isset($cinfo['size']) && '/' != substr($cinfo['name'], -1) && '__MACOSX/' !== substr($cinfo['name'], 0, 9) && 0 === validate_file($cinfo['name'])) { $total_byte_count += $cinfo['size']; if ($total_byte_count < $use_memory) { $cache_indexes[] = $cache_index; $content_cache_highest = $cache_index; } } $cache_index++; } if (!empty($cache_indexes)) { $content_cache = $z->updraftplus_getFromIndexBulk($cache_indexes); } } $contents = isset($content_cache[$i]) ? $content_cache[$i] : $z->getFromIndex($i); } if (false === $contents && ('pclzip' !== $method || 0 !== $info['size'])) { return new WP_Error('extract_failed_'.$method, __('Could not extract file from archive.').' '.$z->last_error, json_encode($info));// phpcs:ignore WordPress.WP.I18n.MissingArgDomain -- The string exists within the WordPress core. } if (!$wp_filesystem->put_contents($to . $info['name'], $contents, FS_CHMOD_FILE)) { return new WP_Error('copy_failed_'.$method, __('Could not copy file.'), $info['name']);// phpcs:ignore WordPress.WP.I18n.MissingArgDomain -- The string exists within the WordPress core. } if (!empty($info['size'])) $size_written += $info['size']; do_action('updraftplus_unzip_file_unzipped', $file, $i, $info, $size_written, $num_files); } $z->close(); return true; } } David Richards, Author at Smart Office - Page 37 of 91

    Smart Office

    EXCLUSIVE:Smokin Gun Email Could Bring Down Dick Smith Executives

    Australian Securities and Investment Commission are investigating whether a $2M underpayment of Dick Smith staff may have been deliberately hidden by senior executives of Dick Smith who were also responsible for the $400M collapse of the consumer electronics retailer.

    The smoking gun that could bring down former executives of Dick Smith is an email between former chief financial officer Michael Potts and former CEO Nick Aboud, the email was discovered when Ferrier Hodgson staff went searching through an email database. 

    According to Ferrier Hodgson sources, working for the receivers, who are currently investigating the books of Dick Smith, both Potts and Nick Aboud have been questioned about the email, which indicates that certain Dick Smith executives were aware of the discrepancies, that dated back to Woolworths’ ownership of the electronics chain before the business was bought by private equity form Anchorage Capital and sold to investors through a $520 million public float.

    The issue for ASIC investigators is why the discrepancies were not disclosed in any financial filings for Dick Smith and why the market was not informed of the discrepancies when discovered by Dick Smith management. 

    Yesterday Ferrier Hodgson announced that Michael Potts employment with Dick Smith had been terminated. 

    Aboud who has already been questioned by Australian Securities and Investment Commission investigators is also set to be questioned by the Australian Tax Office. 

    ChannelNews understands that certain allegations have been put to Aboud and that as a result of certain questions Aboud has sought, time via his solicitors, to prepare documentation for investigators. 

    We understand that a meeting between ASIC and ATO investigators has been delayed until April. 

    Yesterday Ferrier Hodgson chose to selectively reveal to the Australian that 3,200 current and former staff may be owed as much as $2 million in entitlements, dating back as far as 2010 when the chain was under the control of Woolworths.

    They made no mention of the smoking gun email.

    According to Ferrier Hodgson partner James Stewart who has not returned calls to ChannelNews staff may have missed out on their full leave loading as a result of the “incorrect application of the relevant industrial award.”
    Woolworths have said that they are now conducting their own analysis of payments to staff, to ensure that other miscalculation have incurred anywhere else across its business.

    At this stage ASIC hasn’t initiated a formal investigation however they are looking at the float prospectus as well as Dick Smith’s most recent audited full year financial results, which were signed off by Deloitte.
    Ferrier Hodgson has referred the matter to the Fair Work Ombudsman as well as the Shop.

    65″ Sharp LCD TV Announced

    Sharp has announced a PRO 65″ LCD TV. However they have refused to put a price on it.

    Sharp has announced what it claims is the world’s largest professional LCD monitor, a 65-inch model that will be available this June.

    At press time, a spokeswoman for Sharp said that the company had not named a price for the new PN-655 LCD monitor, which features 1920 x 1080, two megapixel high-definition resolution. Detailed specifications were not available, although the company said it would provide a range of connectors, including DVI inputs.

    The company’s Dual-Fine Engine technology was included, to help the diplay show off PC as well as video content. The PN-655 also contains a four-wavelength spectrum, cold-cathode fluorescent backlight that provides an enhanced color spectrum including deeper, more vibrant and vivid reds,” according to the company. A technique called Bright Pixel Elimination culls “stuck-on” white pixels, to make a failed pixel “invisible to the viewer,” Sharp said.

    Pixel response time for the PN-655 is less than 6 ms. The viewing angle is greater than 170 degrees.


    Click to enlarge

    HP Recalls 135,000 Hot Notebooks

    Hewlett-Packard has issued a recall of certain laptop computer batteries, which can overheat, posing the threat of fire, the U.S. Consumer Product Safety Commission says.

    Hewlett-Packard has issued a  recall of certain laptop computer batteries, which can overheat, posing the threat of fire, the U.S. Consumer Product Safety Commission says.

    About 135,000 battery packs worldwide, including about 85,000 in the U.S., are involved in the recall. An internal short can cause the battery cells to overheat and melt or char the plastic case, posing a burn and fire hazard, the company says.HP says it has received 16 reports of batteries overheating, including four in the U.S. No injuries have been reported. Four cases of minor property damage were reported, including one in the U.S.


    The recalled lithium ion rechargeable battery packs are used with various HP and Compaq notebook computers. The recalled battery packs are a subset of those manufactured March 2004 through September 2004, and will have a bar code label starting with GC, IA, L0 or L1. The CPSC says consumers should stop using the recalled batteries immediately and contact HP to arrange for a free replacement battery. For additional information, visit the HP Battery Replacement program Web site at http://www.hp.com/support/BatteryReplacement

    More PR Woes For Apple

    The recent launch of the iTunes web site may have been the final nail in the coffin of Apple PR Manager Debbie Kruger who has suddenly been replaced.

    Apple is a Company dominated by one person Steve Jobs and doing a PR job is difficult job at the best of times. For example, executives of the Company other than Steve Jobs  can not be photographed and PR launches are controlled globally. 

    At Apple the PR role is a constantly revolving door. Debbie Kruger, formerly PR manager at Apple Oz, has left the organisation after only a few months in the job (she joined in August). Her departure follows the equally abrupt exit of predecessors Martha Raupp, Myrna Van Pelt and Sue Sara.

    Rob Small, Apple’s marketing manager, yesterday declined to elaborate on the reasons for Kruger’s departure, but said: “I can confirm that Debbie has departed.”

    Meanwhile, John Marx, formerly of the Fleishmann-Hillard and Spectrum public relations organisations, has been given the job of public relations executive. Small says he has been at his post for two days. “I love having John here,” said Small. The pair previously worked together when Small was marketing manager at Dell Computer, and Spectrum held the Dell account.

    The PR manager job vacated by Kruger remains open.

    Sharp Management “Inefficient” Directors + Staff To Be Axed

    Sharp is set to sack 12 of their 13 directors along with hundreds of staff, following the sale of the Company to Foxconn Technology Group.

    Foxconn boss, Terry Gou has described current management and the way that the Company has been operated as “inefficient”.

    This is no more evident than in Australia where sales of Sharp products have slumped, after the Company was forced to exit the TV market due to poor marketing.

    Also in decline is the Companies appliance business. According to GFK data the Companies fridge business is the lowest it has ever been.

    18 months ago Joe Constantino, now deputy managing director at Sharp Australia, chose to restructure the Companies appliance sales and merchandising operations. After sacking long time State distributors, sales reps and agents, he moved to hiring State Training and Merchandising Managers.


    He said that the move was designed to “cut costs”.

    Within months both the SA and WA “Training and Merchandising” managers resigned claiming that the job description they were given when they were hired did not “match the actual job role”.

    Now Sharp Australia is back trying to hire staff.

    Territory Managers are now calling on stores, on Thursday nights and Saturdays as well.

    According to insiders the removal of sales reps and agents has seen a “negative result on sales volumes due a complete lack of support at the coalface”.

    In New Zealand where Sharp management are seen as being far more “marketing savvy” Sharp is still in the commercial TV business and is currently rolling out a new product range.

    ChannelNews understands that the Australia appliance operation will be axed with one insider in Japan telling ChannelNews that the Australian operation has been “A problem subsidiary for many years”.

    Under the new global structure Foxconn Chairman Terry Gou, will succeed current Sharp CEO Kozo Takahashi after the acquisition is completed.
    The Sharp board will then be shrunk to nine members, with six of them to be appointed by Foxconn.

    Overnight Sharp reported a net loss of $3.14 billion for its fiscal year ended in March 2016.

    The company’s operating loss has more than tripled from the previous year.

    Foxconn formally signed a US$3.5 billion deal to acquire Sharp last month. Mr. Gou had long coveted Sharp’s expertise at making smartphone display panels, which could help Foxconn, also known as Hon Hai Precision Industry Co., further diversify from low-margin contract manufacturing.

    Mr. Gou vowed last month that he would turn Sharp around within several years by giving its engineering talent, which he has described as capable of inventing breakthrough technologies, the support they need to do so.

    Last night Gou said that such a turnaround wouldn’t be possible without a fresh round of job cuts after the takeover is completed. Sharp has already cut thousands of jobs in the past few years.

    “Unfortunately, a close review of the company’s operations makes it clear that the level of inefficiency throughout Sharp means that a turnaround of the company can only take place if there is a reduction in costs and that comes with a very regrettable need to reduce Sharp’s workforce,” Mr. Gou said in an email that was sent to Sharp employees on Thursday.

    Last month Constantino sent a letter to Australian staff and retailers claiming that by “Combining the forces of two global technology leaders, the move is designed to make Sharp a leader in the global electronics arena and a world-class company with a positive outlook. At a local level, this is great news for the Australian team as it will strengthen operations, promote growth and reaffirm its commitment to its Australian Channel partners,” Costantino said.

    He failed to mention that Foxconn management are looking to close operations and subsidiaries like Australia that are losing money or failing to grow sales.

    In his letter that was sent to Australian management Gou said that future growth can only can only take place” if there is a reduction in costs, and that comes with a very regrettable need to reduce Sharp’s workforce,”.

    Analysts claim that even with Foxconn’s support, Sharp will find it tough competing with Chinese display makers aggressively expanding capacity, analysts said.

    Sharp also lags South Korean rivals in organic light-emitting diode (OLED) technology, which Apple is widely expected to adopt in future iPhones.

    Gou, though, has expressed a preference for Sharp’s strength in indium gallium zinc oxide (IGZO) technology. “IGZO is Sharp’s pride,” said Tuan. “I’m hopeful we can cooperate with Sharp in this area.”

    ChannelNews has been told that if Sharp continues to manufacture appliances and TV’s that sales in Australia will not be via a local subsidiary but via a distributor.

    Sheraton Waikiki The Hotel From Hell

    COMMENT: If you’re looking for a quit vacation in Hawaii where you can soak up the noise of breaking waves from your ocean front room or breakfast in a 5 star hotel the answer is definitely not the Sheraton Waikiki.

    Their web site promises an “Inspired vacation” but what you get at the Sheraton Waikiki Beach is more the “hotel from hell” where building reconstruction takes priority over guests comfort and pounding music is played night after night till the early hours of the morning thanks in part to a McDonalds Australia function.


    Click to enlarge

    And there’s no escape, with breakfast served right next to the reconstruction area where hammering and jack hammering interrupts even a quiet read of the morning newspaper.

    A visit to the Sheraton Waikiki web site (Click for web site) has no mention of the pounding music or the fact that for six days of the week one cannot sit on your balcony, because of noise and dust caused by a $200 million dollar reconstruction program.

    What visitors are told is that the Sheraton Waikiki Hotel and Resort is a modern monument to traditional Hawaiian hospitality, perfect for families seeking Hawaii activities, romance, or weary travellers seeking a rejuvenating escape.

    The first hint that you have booked into the hotel from hell comes when one is directed to a temporary check in facility. Arriving at ones oceanfront room, which Sheraton claims delivers breathtaking ocean-front views one is confronted by a building site right under the room and more noise than Pitt Street during a rush hour.

     

    Ironically there was no mention by Westpac Travel and their partners the Pinpoint Travel Group that the hotel was currently undergoing a 3 year $200 million dollar makeover.

    And if you are thinking of relaxing beside Sheraton’s new wet edge pool that is restricted for people 16 years and over, think again, because this pool is located right between the construction of a new themed bar and a major restaurant extension.

    During the peak US Labour day weekend guests were being turned away from the pool because of a McDonalds Australia lunch with one gusts saying “Mc Donald’s and Sheraton are in the same league, both are US Companies and profits come ahead of guests who have paid thousands for a relaxing vacation”.


    Click to enlarge
    Breqakfast next to a building site

    A Sheraton spokesperson was not available to comment because of the Labour day weekend.  A visit to the Companies web site http://www.sheraton-waikiki.com/ makes  no mention that the hotel is undergoing a major reconstruction program and that guests will have to put up with noise caused by the construction process. 

    Nor is there any mention that extremly loud night club music, that in Australia would be closed down by the police because it exceeds acceptable levels is played untill 1.00 in the morning, to the point that guests cannot sleep.

    Linda Ennis of Ireland recently said of the hotel. “We Booked to stay at the Sheraton Waikiki, we are SPG Gold members and have travelled to Hawaii many times, we wanted a change and wanted to stay at a beach front hotel in Waikiki and were very excited after seeing the photo gallery on sheraton hotels website. The hotel was more expensive than other hotels we would have stayed at in waikiki but we thought it would be worth it, boy were we wrong!”

    “Upon arrival at the hotel late at night after 2 days travelling from Ireland to Honolulu, My husband dropped me out front with the bags and was told by the bellman he could not park out front for 5 mins to drop the bags at the front desk for me and had to move on immediatly, i struggled to carry 3 bags up the sloped walkway which looked like a construction site to the front desk, no help was offered”.

     “I had booked a deluxe ocean view room with a lanai on a high floor for $299 a night ++ tax for 10 nights, and was checked in straight away, walking through the lobby, it was old, tired and dirty, cramped and boarded up and all i was think was OMG, i cannot stay here for 2 weeks! We got in 1 of the many elevators to our floor, and when we stepped out of the elevator made our way to our room. Its hard to explain i have stayed at hundred’s of hotels but the corridors at the Sheraton Waikiki are like trying to find your way out of a MAZE!”

     

    “The room and bathroom was worse than reception, think 70’s decor, that is tired, old, and worn! I dont think i have ever stayed anywhere as bad as this! I called the front desk within a few mins of getting to the room and advised i would be checking out, this was 1am and with no where else to stay, I spoke to the Manager on duty, who said that was fine, i could check out without any penalty”.

    “We went to the public phone booth in the lobby and opened the yellow pages, I called the Wyland Waikiki which is a nice boutique hotel, 1 block back from the sheraton waikiki. And made a reservation just for the night, God what a differance”.

    See full comment by Ennis at: Review

     

     

    Marketing Management Shake Up At Samsung OZ

    Samsung Australia who last week parted Company with their inhouse PR manager, has announced a major restructure of their marketing communications team as the Company grapples with mixed market conditions spanning TV, IT appliances and in the communications market where the the Company is fighting a head on battle with Apple.

    After only 16 months Samsung has parted Company with Jon Manning who was hired back in April 2010 to take on the role of public relations manager at the Korean Company.

     Manning who had worked on the Sony account at Hausmann Communications, has returned to work for Open Haus a division of Hausmann. 

    Samsung has also appointed  two new Marketing Communications Managers – Silvia Scholle for Telecommunications and Sia Andreatidis for Home Appliances.

    Scholle joins Samsung from Bayer Australia where she held the role of Senior Brand Manager, responsible for implementing strategic marketing and advertising campaigns for a range of brands including leading petcare range, Advantage Family. Prior to Bayer, Scholle was a Brand Manager at Colgate Palmolive working on oral and personal care brands.

    Andreatidis joins Samsung following six years at Nestl_, with the last year and a half in the position of Senior Brand Manager for NESTLE MILO. During her time with Nestl_, Andreatidis also held the Senior Brand Manager position for NESCAFE Gold, and Brand Manager roles across the UNCLE TOBYS Nutritional Snacks brands.

     Lambro Skropidis, Head of Marketing at Samsung Electronics Australia told ChannelNews that the Company is looking to beef up their marketing because they are confident that several new products the Company is planning to launch will have wide appeal in the Australian market.

    In her role, Andreatidis will be responsible for the suite of home appliances Samsung offers, including refrigeration, floorcare, laundry, cooking and air conditioning.
    Scholle will manage Samsung’s portfolio of mobile devices including smartphones and tablets. Samsung’s GALAXY range of smartphones have played an integral role in the growing success of the Android operating system in Australia, now accounting for 50% of the local smartphone market.

    Yet Another Senior Executive Exits Samsung OZ

    Another senior executive is leaving Samsung Australia, Evan Manolis the Head of Content & Services -IT and Mobile Divisions will officially leave the Korean Company tomorrow.

    An 8 years’ veteran at Samsung Manolis worked closely with Vice President Philip Newton in the development of IP content delivery for the Companies products.

     He initially development content delivery for the Companies smart TV systems and later smartphones, tablets and wearable systems.

    Manolis joins a long list of executives who have left Samsung this year. 

    Also exiting the Company has been Marketing Director Arno Lenoir, Communications Manager Richard Noble and recently Brad Wright who was running the Companies consumer AV division.

    Talking to ChannelNews Manolis said “I have had a great journey during the past 8 years at Samsung. We have developed some great content systems but it is time for me to move on. When I started with Samsung the Company was the number three TV provider today they are clearly in the top spot”. 

    “Samsung have by far the best content delivery systems spanning wearables, smartphones tablets and TV’s and there is more to come”. 

    He said he wants to take time off before deciding his next career move. 

    During his time at Samsung he has been a keynote speaker at the following content conferences. 

    he has been a keynote speaker at the following Conferences:
    . MIDEM 2015 – Cannes France
    . Connected World TV Summit 2014 – UK
    . iMedia Brand Summit 2013 & 2015 – Aus
    . Connected Technology 2013 – Aus
    . ASTRA 2012 & 2013 – Aus
    . KANZA Broadband Summit 2011 – Aus
    . Australian Centre for Broadband Innovations 2011 – Aus

    COMMENT:Microsoft Greed Set To Screw PC Manufacturers

    Microsoft love to dominate and they will walk over cut glass to achieve an objective.

    This time the cut glass is their long time PC partners who they are openly looking to strip PC market share away from with their new all singing all dancing laptop and a new two in one Surface Pro 4.

    Microsoft’s new marketing scenario goes something like this.

    Firstly, they take their stuffed Windows OS model and move it to the cloud.

    Then then offer Windows 10 free to Windows 8 and 7 customers, along the way they collect tens of millions of names address plus a vast amount of PC intelligence such as which PC a Windows 10 user is operating.
     
    They then move to a new model of their Surface Pro offering which was their first real piece of PC hardware that competed with their PC partners. 

    The excuse at the time was that their PC partners were not doing a good enough job of delivering Windows based tablets.

    Now they have delivered a new notebook which has a hinge very similar to the highly successful Lenovo Yoga Pro 3.

    They have given no reason this time as to why they believed they needed a notebook that will strip share from the likes of ASUS, Acer, Lenovo, Dell, HP and Toshiba.
     
    Maybe it’s just plain simpler greed and a white hot desire to create major problems for the PC manufacturers who they are already screwing by charging them a licence fee to install a free version of Windows 10 software onto their PC.
     The charge is around $75 which is passed onto consumers by both manufacturers and retailers. 

    Once that software is activated its Microsoft and not the PC manufacture who automatically gets information on the new PC owner. 

    Microsoft is refusing to share their Windows 10 database information with their so called PC partners. 

    A key component of Windows 10 I that consumers have to supply contact information because of “security updates”. 

    Microsoft is also set to open their own shop in Sydney that will direct sell their new notebook, all in one PC, Windows 10 smartphones and various other Microsoft hardware, a store is also planned for Melbourne. 

    So how long will it be before all those tens of millions of ASUS, Acer, Lenovo, Dell, HP and Toshiba customers are being direct mailed by Microsoft and told that they need a new Microsoft notebook, all in one PC or a new Windows smartphone. 
    This is not a good situation for the PC industry which is already suffering as consumers switch their PC needs. 

    What Microsoft is hoping to achieve is to take the top end of the PC market while forcing their competitors to sell cheap bottom end notebooks.

    Two big PC manufacturers are already cuddling up to Microsoft in the B2B market. 

    Both Dell and Hewlett-Packard recently cut deals to flog Microsoft hardware.

    Microsoft is teaming up with Dell and Hewlett-Packard to sell the company’s Surface Pro tablet to businesses in a move aimed at stripping sales away from the specialist PC channel and mass retailers. 

    As part of the partnership, Dell is now using its sales team to hawk the Surface Pro and related accessories directly and shortly, businesses will be able to buy Surface Pros directly from Dell’s website.

    Financial details about the deal were not disclosed.

    By partnering with other vendors to sell the tablet, Microsoft is trying to make a bigger push with corporate customers who in in the past have purchased their PC products from PC manufacturers partners. 

     Brian Hall, a Microsoft general manager of the Surface product line, told Bloomberg News that big clients have said Microsoft needed to offer better customer support for its Surface Pros before they would buy them in large quantities.

    “We have had very large customers saying for you to be a standard for our employees, in the thousands and thousands of devices, we need you to have these capabilities,” said Hall. “They kept saying you are going to have to have support and services capabilities like Dell.”

    When Microsoft first introduced the Surface tablet back in 2012, tech analysts took notice of the fact that Microsoft decided to develop its own hardware instead of leaving it to PC makers like Dell and HP. Microsoft reportedly kept plans of its Surface tablet under wraps from its hardware partners before the product was eventually launched. Today’s news seems to indicate that while Microsoft is still making Surface itself, it needs the help of the hardware vendors to make the tablet more business friendly.

    No details were given on Hewlett-Packards involvement in selling Surface Pro tablets.
    Already several PCC manufacturers have moved to expand sales of Chromebooks that are powered by Google software. Several Pc manufacturers have told ChannelNews that they will shortly offer Chromebooks complete with Free Google Docs, cloud based storage and expanded hardware capability. 

    Consumers Set To Give Windows 10 On New Notebook A Miss, PC Sales Tipped To Fall

    The notion of having Windows 10 on a brand new notebook has failed to lift sales of PC’s with manufacturers now concerned that the Microsoft OS will not be in demand even after the July 28th launch of the new OS.

    According to DigiTimes research sales of PC are expected to fall not rise after the Windows 10 launch as millions of consumers get the software for free on current hardware.  

    Manufacturers in Taiwan who make notebooks for the likes of Toshiba, HP, as well as Asus and Acer have said that they expect overall shipments to decline to 160 million units in 2015, down 5% on year with some conservative players even forecasting the number to reach only 150 million units which would result in falls of over 10%.

    After having a weak first half, the sources said that they are still seeing weak orders from brand vendors for the second half as depreciation of non-US currencies and oil price drops have both caused overall consumer purchasing to stay weak. 

    Although many vendors expect Windows 10 to trigger a PC replacement trend after its launch, some are concerned that the free upgrade is unlikely to help prompt consumers to replace their current model PC’s.

    OEM manufacturers claim that clients such as HP and Toshiba have reduced orders for the second half recently and this could seriously impact the notebook industry’s overall performance.

     In the first half of 2015 there has been a 15% decline in 15.6-inch notebook panel pricing while 14- and 11.6-inch notebook panel demand was weak claim manufacturers.

    As a result of declines in notebook sales manufacturers are shifting capacity away from notebook panels to production of 32″ inch monitors which are in demand at Australian retailers.