0
votes
0answers
102 views

Simple Image Crawler [closed]

I am working on a web application where I have to implement a basic crawler which will fetch images from some 1 Million websites (stored in database). I have created the script and currently I am ...
0
votes
0answers
56 views

Is it possible to use cron jobs to backup both the file system and database of a WP site to Google Drive?

Is it possible to use cron jobs to backup both the file system and database of a WP site to Google Drive? Any ideas what a script like that would look like? SU
3
votes
1answer
324 views

Shell script of mysqldump works fine when run manually, but does not run in the cron job?

I have a shell script to get a MySQL database dump. This script works fine when run manually #!/bin/sh fqn=/home/Mysqluser/daily_dumps/bookstore_`date +%Y%m%d_%H%M%S`.sql.gz mysqldump -u root -h ...