通过cron作业运行PHP(Run PHP through Cron job)

2019-10-16 20:48发布

我在Ubuntu和有我一直在试图运行一个小的备份脚本。 不幸的是,它不执行备份。 我在这里包含两个PHP脚本的情况下,有我丢失的东西。

首先,这是我的crontab怎么看起来像

*/30 * * * * /usr/bin/php /var/www/mybackup.php

上述假设的cron来调用这个脚本: mybackup.php

 <?php
include('myfunctions.php');

   theBackup();

?>

主要的脚本是这样的。 虽然它完美,当我手动运行它,但它不cron运行。

<?php
/*
 * Script to back up the database
 * 
 *
*/

function getAllFiles($directory, $recursive = false) {
     $result = array();
     $handle =  opendir($directory);
     while ($datei = readdir($handle))
     {
          if (($datei != '.') && ($datei != '..'))
          {
               $file = $directory.$datei;
               if (is_dir($file)) {
                    if ($recursive) {
                         $result = array_merge($result, getAllFiles($file.'/'));
                    }
               } else {
                    $result[] = $file;
               }
          }
     }
     closedir($handle);
     return $result;
}

function getOldestTimestamp($directory, $recursive = true, $display ='file') {
     $allFiles = getAllFiles($directory, $recursive);
     $highestKnown = time();
     $highestFile = '';
     foreach ($allFiles as $val) {
          $currentValue = filemtime($val);
          $currentFile = $val;
          if ($currentValue < $highestKnown){
                $highestKnown = $currentValue;
                $highestFile = $currentFile;
          }
     }
    if($display=='file'){
        return $highestFile;
    } else {
        return $highestKnown;
    }
}


function theBackup(){

$sendfrom = "System Backup <admin@domain.com>";

$headers = 'Admin <admin@domain.com>' . "\n";
$headers .= 'MIME-Version: 1.0' . "\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\n";

$filename = getOldestTimestamp('./app/db/',true,'file');
$filename = str_replace("./app/db/", "", $filename );

$backupfile = '/var/www/app/db/'.$filename;
$handle  = fopen($backupfile, 'w') or die('Cannot open file:  '.$backupfile); 

$dbhost  = "localhost";  
$dbuser  = "user";
$dbpass  = "password";
$dbname  = "db";

if(system("mysqldump -h $dbhost -u $dbuser  -p$dbpass  $dbname  > $backupfile") == false){
    mail('email@yahoo.com','My Backup','Back Up successfully completed',$headers );

  }else {
    mail('email@yahoo.com','My Backup','Back Up did NOT complete successfully please check the file/folder 

permission',$headers );

   }   
 }
?> 

有什么我是从上面的代码失踪? 就像我说的,当我从浏览器中运行mybackup.php,它完美的作品,而不是通过cron的。

任何帮助将高度赞赏。

Answer 1:

您使用绝对路径运行在cron作业的PHP

*/30 * * * * /usr/bin/php /var/www/mybackup.php

而包括URL是相对的

include('myfunctions.php');

尝试使用绝对URL到包括太多。



Answer 2:

我认为你需要的完整路径包括,在那里你说:

include('myfunctions.php');

应该是这样的

include('/var/www/myfunctions.php');

或是其他地方,那是。 另外,请检查您的日志,看看你做了什么错误讯息



文章来源: Run PHP through Cron job
标签: php ubuntu cron