Просмотр файла vavok-1.5.3/cronjob/clean-notconfirmed.php

Размер файла: 1.11Kb
  1. <?php
  2. // modified: 26.3.2015. 2:09:28
  3. // (c) vavok.net
  4.  
  5. include"../include/startup.php";
  6. //include"/home/vavoknet/public_html/include/startup.php";
  7.  
  8. // hours user have to confirm registration
  9. $confirmationHours = 48;
  10.  
  11. $confirmationTime = $confirmationHours * 60 * 60;
  12.  
  13. foreach ($db->query("SELECT `regdate`, `uid` FROM `vavok_profil` WHERE `regche`='1'") as $userCheck) {
  14. if (($userCheck['regdate'] + $confirmationTime) < time()) {
  15. // delete user if he didn't confirmed registration within $confirmationHours
  16. delete_users($userCheck['uid']);
  17. }
  18. }
  19. exit;
  20.  
  21. // this cron job will delete users if they didn't complete registration within $confirmationHours
  22. // php /home/username/public_html/cronjob/clean-notconfirmed.php >/dev/null - this should be your php script path and command to run cron job
  23. // if this is not working, try using
  24. // php -q /home/vavoknet/public_html/cronjob/clean-notconfirmed.php
  25. // or
  26. // wget example.com/cronjob/clean-notconfirmed.php
  27. // or
  28. // curl http://example.com/cronjob/clean-notconfirmed.php >/dev/null 2>&1
  29. // cron job should run this scirpt twice per hour, once per hour or at least every few hours
  30. ?>