使用php将文件备份到谷歌驱动器
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用php将文件备份到谷歌驱动器相关的知识,希望对你有一定的参考价值。
我在GoDaddy上有一个服务器和一个域名。
我想为我的文件创建一个备份,以便在Google Drive上传
所以我的所有文件和数据库都有Google Drive上的数据。
经过一些研究,我找到了“Automatically backing up your web server files to GoogleDrive with PHP”并做了他说的话。
我从google-api-php-client
下载了文件backuptogoogledrive repository。
我有一个客户端ID,客户端密码和authCode
我编辑了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!
");
/* 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");
?>
现在的问题是我有两个数据库文件夹,没有问题,文件的第二个文件夹。但是这个文件夹上没有任何文件。
我怎么解决这个问题?
// 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/";
看起来备份脚本无法找到存储站点文件的目录。
引用您所遵循的教程进行备份:
// 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
。
它可能与www/
不同,例如在GoDaddy上托管的网站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
而不是www
或html
或其他任何东西。使用终端检查出来。
你不想在你的焦油中错过cf
前面的连字符吗?它应该是tar -cf
吗?你有tar cf
。我不认为它将其识别为命令参数,因此没有创建文件。
我可以在使用root访问权限时成功运行此脚本(在VPS /专用服务器中可用)。但是在没有root访问权限的共享服务器中,服务器会中止此脚本。共享服务器限制脚本可以运行的最长时间(通常不到一分钟 - 但取决于托管)
尝试在SSH中手动运行脚本,您将看到服务器中止脚本,导致创建的文件夹中没有文件。
以上是关于使用php将文件备份到谷歌驱动器的主要内容,如果未能解决你的问题,请参考以下文章