Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 27th, 2012  |  syntax: None  |  size: 0.24 KB  |  hits: 8  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. How would test cron with Magento?
  2. try {
  3.    $myFile = "cronlog.txt";
  4.    $fh = fopen($myFile, 'w');
  5.    $stringData = date('l jS of F Y h:i:s A');
  6.    fwrite($fh, $stringData);
  7.    fclose($fh);
  8. } catch (Exception $e) {
  9.    Mage::printException($e);
  10. }