Advertisement
Guest User

Untitled

a guest
Dec 5th, 2016
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. crontab -e
  2.  
  3. */1 * * * * /bin/sh /Applications/XAMPP/htdocs/mymagento/cron.sh
  4.  
  5. <config>
  6. ...
  7. <crontab>
  8. <jobs>
  9. <mynamespace_mymodule_test>
  10. <schedule><cron_expr>*/1 * * * *</cron_expr></schedule>
  11. <run><model>mymodule/observer::test</model></run>
  12. </mynamespace_mymodule_test>
  13. </jobs>
  14. </crontab>
  15. ...
  16. </config>
  17.  
  18. class Mynamespace_Mymodule_Model_Observer {
  19.  
  20. public function test(){
  21. error_log("success!!!!!");
  22. }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement