使用php

时间:2017-10-19 11:30:21

标签: php mysql google-drive-api

我在GoDaddy上有一个服务器和一个域名。

我想为要在Google Drive

上传的文件创建备份

这样我的所有文件和数据库都将数据放在Google Drive上。

我将PHPMySQL用于我的数据库

经过一番研究,我找到了“Automatically backing up your web server files to GoogleDrive with PHP”,并按照他所说的做了。

我已从backuptogoogledrive repository下载文件google-api-php-client

我有 客户端ID 客户端密钥 authCode < / EM>

我编辑了setting.inc并将自己的 客户端ID 客户端密钥 AUTHCODE 即可。我还提供了MySQL用户名,密码和主机名。

在此页backuptogoogledrive中,它应该创建一个.tar.gz文件夹,此文件夹应该包含我的网站文件。然后,此文件夹应将其上传到我的Google Drive并对我的数据库执行相同的操作。

<?php
  set_time_limit(0);
  ini_set('memory_limit', '1024M'); 
  require_once("google-api-php-client/src/Google_Client.php");
  require_once("google-api-php-client/src/contrib/Google_DriveService.php");
  include("settings.inc.php");

  if($authCode == "") die("You need to run getauthcode.php first!\n\n");

  /* PREPARE FILES FOR UPLOAD */

  // Use the current date/time as unique identifier
  $uid = date("YmdHis");
  // Create tar.gz file
  shell_exec("cd ".$homedir." && tar cf - ".$sitedir." -C ".$homedir." | gzip -9 > ".$homedir.$fprefix.$uid.".tar.gz");
  // Dump datamabase
  shell_exec("mysqldump -u".$dbuser." -p".$dbpass." ".$dbname." > ".$homedir.$dprefix.$uid.".sql");
  shell_exec("gzip ".$homedir.$dprefix.$uid.".sql");

  /* SEND FILES TO GOOGLEDRIVE */

  $client = new Google_Client();
  // Get your credentials from the APIs Console
  $client->setClientId($clientId);
  $client->setClientSecret($clientSecret);
  $client->setRedirectUri($requestURI);
  $client->setScopes(array("https://www.googleapis.com/auth/drive"));
  $service = new Google_DriveService($client);  
  // Exchange authorisation code for access token
  if(!file_exists("token.json")) {
    // Save token for future use
    $accessToken = $client->authenticate($authCode);      
    file_put_contents("token.json",$accessToken);  
  }
  else $accessToken = file_get_contents("token.json");
  $client->setAccessToken($accessToken);  
  // Upload file to Google Drive  
  $file = new Google_DriveFile();
  $file->setTitle($fprefix.$uid.".tar.gz");
  $file->setDescription("Server backup file");
  $file->setMimeType("application/gzip");
  $data = file_get_contents($homedir.$fprefix.$uid.".tar.gz");
  $createdFile = $service->files->insert($file, array('data' => $data, 'mimeType' => "application/gzip",));
  // Process response here....
  print_r($createdFile);      
  // Upload database to Google Drive
  $file = new Google_DriveFile();
  $file->setTitle($dprefix.$uid.".sql.gz");
  $file->setDescription("Database backup file");
  $file->setMimeType("application/gzip");
  $data = file_get_contents($homedir.$dprefix.$uid.".sql.gz");
  $createdFile = $service->files->insert($file, array('data' => $data, 'mimeType' => "application/gzip",));
  // Process response here....
  print_r($createdFile);  

  /* CLEANUP */

  // Delete created files
  unlink($homedir.$fprefix.$uid.".tar.gz");
  unlink($homedir.$dprefix.$uid.".sql.gz");

?>

现在的问题是我有两个数据库文件夹,没有问题,文件的第二个文件夹。但是这个文件夹上没有任何文件。

我该如何解决这个问题?

enter image description here enter image description here

// User home directory (absolute)
  $homedir = "/home/mhmd2991/public_html/"; // If this doesn't work, you can provide the full path yourself
  // Site directory (relative)
  $sitedir = "public_html/"; 

3 个答案:

答案 0 :(得分:0)

似乎备份脚本无法找到存储站点文件的目录。

从您所遵循的教程中引用以进行备份:

// User home directory (absolute)
$homedir = trim(shell_exec("cd ~ && pwd"))."/"; // If this doesn't work, you can provide the full path yourself
// Site directory (relative)
$sitedir = "www/";

首先确保使用相对路径(从主目录)到站点文件目录正确设置$sitedir

对于在GoDaddy上托管的网站,它可能与www/不同,例如public_html/

如果上述内容正确,请尝试使用主目录的绝对路径手动设置$home变量。

<强>更新

$homedir是主目录,$sitedir是相对于$homedir的网站根

所以看看你发布的代码很可能会出现错误,这两个变量应该是:

// User home directory (absolute)
$homedir = "/home/mhmd2991/"; // <-- FIXED HERE
// Site directory (relative)
$sitedir = "public_html/";

这假设您的网站根目录为public_html,位于您的主目录mhmd2991

再次确保您的网站根目录实际上是public_html而不是wwwhtml或其他任何内容。使用终端检查出来。

答案 1 :(得分:0)

你不想错过焦油前cf前面的连字符吗?它应该是tar -cf吗?你有tar cf。我不认为它将其识别为命令参数,因此没有创建文件。

答案 2 :(得分:0)

我在使用root访问权限时可以成功运行此脚本(在VPS /专用服务器中可用)。但是在没有root访问权限的共享服务器中,服务器会中止此脚本。共享服务器限制了脚本可以运行的最长时间(通常不到一分钟 - 但取决于托管)

尝试在SSH中手动运行脚本,您将看到服务器中止脚本,导致文件夹中没有文件。