Installation Failed. The Google Chrome Installer failed to Start

1. Open registry editor by typing regedit in run command

2. Now navigate to HKEY_LOCAL_MACHINESOFTWARE GoogleUpdateClients on left pane, right click on key {430FD4D0-B729-4F61-AA34-91526481799D}’ and select Delete button.

3. Now navigate to HKEY_CURRENT_USERSOFTWARE GoogleUpdateClients, delete the key {430FD4D0-B729-4F61-AA34-91526481799D} and all its sub folders.

Google update directory registry entry thumb Fix to “ Installation Failed. The Google Chrome Installer failed to Start”

4 For 64-bit Windows, navigate to HKEY_LOCAL_MACHINESOFTWAREWow6432NodeGoogleUpdateClients and delete this key {430FD4D0-B729-4F61-AA34-91526481799D} and all its sub folders shown on right pane.

5. Now close Registry Editor and try to install Chrome again this time it will work as happened with me.

文章原文:http://techdows.com/2012/08/fix-to-installation-failed-the-google-chrome-installer-failed-to-start.html

Google短网址API(PHP版)

在使用前,请先到这里申请API Key:http://code.google.com/apis/console/
短网址的生成需要使用POST提交数据,所以使用了curl,短网址的还原可以直接使用file_get_contents()函数。不过为了统一,我也使用了curl来处理,现在感觉curl真的是非常有用,等有空对curl还要加大学习哈。

<?php
function shortenGoogleUrl($long_url){
$apiKey = ‘API-KEY’; //Get API key from : http://code.google.com/apis/console/
$postData = array(‘longUrl’ => $long_url, ‘key’ => $apiKey);
$jsonData = json_encode($postData);
$curlObj = curl_init();
curl_setopt($curlObj, CURLOPT_URL, ‘https://www.googleapis.com/urlshortener/v1/url’);
curl_setopt($curlObj, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curlObj, CURLOPT_SSL_VERIFYPEER, 0);
curl_setopt($curlObj, CURLOPT_HEADER, 0);
curl_setopt($curlObj, CURLOPT_HTTPHEADER, array(‘Content-type:application/json’));
curl_setopt($curlObj, CURLOPT_POST, 1);
curl_setopt($curlObj, CURLOPT_POSTFIELDS, $jsonData);
$response = curl_exec($curlObj);
curl_close($curlObj);
$json = json_decode($response);
return $json->id;
}
?>
<?php
function expandGoogleUrl($short_url){
$curlObj = curl_init();
curl_setopt($curlObj, CURLOPT_URL, ‘https://www.googleapis.com/urlshortener/v1/url?shortUrl=’.$short_url);
curl_setopt($curlObj, CURLOPT_HEADER, 0);
curl_setopt($curlObj, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curlObj, CURLOPT_SSL_VERIFYPEER, 0);
$response = curl_exec($curlObj);
curl_close($curlObj);
$json = json_decode($response);
return $json->longUrl;
}
?>

原文地址:http://www.biaodianfu.com/php-google-urlshortener-api.html

Chrome各版本下载地址

Windows平台:
Chrome 在线安装包

  • 最新稳定版(Stable Channel)Chrome在线安装: 【点击这里
  • 最新测试版(Beta Channel)Chrome在线安装: 【点击这里
  • 最新开发版(Dev Channel)Chrome在线安装: 【点击这里
  • 最新金丝雀版(Canary build)Chrome在线安装: 【点击这里
  • 最新Chromium下载地址: 【点击这里

Chrome 离线安装包(仅 Windows 可用):

历史版本 Chrome 下载:
http://dl.google.com/chrome/install/[版本号后两位]/chrome_installer.exe
要想下载历史版本 Chrome,必须先确定要下载的版本号,然后取版本号第二个小数点后的数字。比如4.0.266.0的下载地址就是:
http://dl.google.com/chrome/install/266.0/chrome_installer.exe
同理比如3.0.195.38的下载地址就是:
http://dl.google.com/chrome/install/195.38/chrome_installer.exe
注:Chromium, 非官方离线版本和历史版本 Chrome 都不能自动更新。

Linux平台:

  • 最新稳定版(Stable Channel)Chrome下载: 【点击这里
  • 最新测试版(Beta Channel)Chrome下载: 【点击这里
  • 最新开发版(Dev Channel)Chrome下载(32Bit deb): 【点击这里
  • 最新开发版(Dev Channel)Chrome下载(64Bit deb): 【点击这里
  • 最新开发版(Dev Channel)Chrome下载(32Bit rpm): 【点击这里
  • 最新开发版(Dev Channel)Chrome下载(64Bit rpm): 【点击这里
  • 最新Chromium下载地址(32Bit): 【点击这里
  • 最新Chromium下载地址(64Bit): 【点击这里

Mac平台:

  • 最新稳定版(Stable Channel)Chrome下载: 【点击这里
  • 最新测试版(Beta Channel)Chrome下载: 【点击这里
  • 最新开发版(Dev Channel)Chrome下载: 【点击这里
  • 最新Chromium下载地址: 【点击这里

原文地址:http://goo.gl/fHy5