Unsupported scripts and control panel web app for a hosting company
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

build-support-db.php 255B

123456789101112
  1. #!/usr/bin/php -q
  2. <?PHP
  3. chdir('/home/utd/control/sup');
  4. $files = glob('*.php');
  5. chdir('/home/utd/scripts');
  6. foreach ($files as $file) {
  7. if ((int)$file != 0 || (int)$file > 900) {
  8. system('./get-support-article.php '.substr($file,0,3));
  9. }
  10. }
  11. ?>