Comments on: Automated backups to Google Drive with PHP API https://systemsarchitect.net/2013/04/14/automated-backups-to-google-drive-with-php-api/ Sat, 23 Apr 2016 06:20:11 +0000 hourly 1 http://wordpress.com/ By: annoyingmouse https://systemsarchitect.net/2013/04/14/automated-backups-to-google-drive-with-php-api/comment-page-1/#comment-1242 Sat, 23 Apr 2016 06:20:11 +0000 http://systemsarchitect.net/?p=612#comment-1242 Nice article but I was getting annoyed with the lack of images. Ran this as a snippet in Chromes Source pane of it’s inspector to recover them:

Array.prototype.forEach.call(document.querySelectorAll(“.no-line”), function(el, i){
var img = el.querySelector(“img”);
img.setAttribute(“src”, el.getAttribute(“href”));
img.setAttribute(“width”,”100%”);
});

Which might help someone else.

Like

]]>
By: Ionut Bilica https://systemsarchitect.net/2013/04/14/automated-backups-to-google-drive-with-php-api/comment-page-1/#comment-39 Sun, 28 Sep 2014 09:54:34 +0000 http://systemsarchitect.net/?p=612#comment-39 Hi,

First of all, thanks for this great script, I’ve been using it for a year now. But now I’ve hit the wall: “The user has exceeded their Drive storage quota”.
The script never quite worked as I expected: once every couple of days it would create the backup folder again, even though there already existed a folder with that name, and all new files were updated to that folder. After a couple of months there were many backup folders shared with me. I started to delete them (delete the folders, not each file). This might have been a bad idea.
Anyway, now the script is not working at all, because the drive storage quota has been exceeded. Is there any solution to this? Is there a way for me to log into that account and clean it to free up space?

Thanks

Like

]]>
By: Igor https://systemsarchitect.net/2013/04/14/automated-backups-to-google-drive-with-php-api/comment-page-1/#comment-38 Fri, 04 Jul 2014 07:14:25 +0000 http://systemsarchitect.net/?p=612#comment-38 This project needs following PHP extensions : php_curl, php_fileinfo, php_openssl.

Like

]]>
By: Rakesh Raja https://systemsarchitect.net/2013/04/14/automated-backups-to-google-drive-with-php-api/comment-page-1/#comment-36 Thu, 24 Apr 2014 06:22:23 +0000 http://systemsarchitect.net/?p=612#comment-36 Hi

I am getting this error

Fatal error: Class ‘finfo’ not found in

Can you please help me out?

Regards

Like

]]>
By: Ionut https://systemsarchitect.net/2013/04/14/automated-backups-to-google-drive-with-php-api/comment-page-1/#comment-35 Thu, 09 Jan 2014 14:42:16 +0000 http://systemsarchitect.net/?p=612#comment-35 This was very helpful, just what I needed, thanks a lot! Only had trouble with the fact that it needs PHP 5.3 or later, otherwise Drive API does not work because of some crypto algorithm limitations. Now I’m curios how much space does that “Service account” has. Is there a way to log into that account like I do in my personal account?

Like

]]>
By: Antonis Adamakos https://systemsarchitect.net/2013/04/14/automated-backups-to-google-drive-with-php-api/comment-page-1/#comment-34 Fri, 15 Nov 2013 01:09:32 +0000 http://systemsarchitect.net/?p=612#comment-34 Hello Lucasz,
thank you for this detailed tutorial and the script!

Like

]]>
By: Barna https://systemsarchitect.net/2013/04/14/automated-backups-to-google-drive-with-php-api/comment-page-1/#comment-33 Wed, 11 Sep 2013 17:15:23 +0000 http://systemsarchitect.net/?p=612#comment-33 Hi,
awesome script! I’ve replaced my script with yours (which using private key). One question, how to ignore emails I get after uploading to GD?

Email content was:
I’ve shared an item with you.
Item filename.txt

Like

]]>