Blame view

cron/seo_products.php 278 Bytes
42868d70   andryeyev   Создал GIT
1
2
3
4
5
6
7
8
9
10
  <?php
  set_time_limit(0);
  //error_reporting (0);
  $_SERVER['DOCUMENT_ROOT'] = realpath(dirname(__FILE__)."/..");
  require($_SERVER['DOCUMENT_ROOT'] . "/libs/setup.php");
  $setup = new setup();
  $objCatalogs = $setup->setupClass("Catalogs");
  $objCatalogs->exportProducts2SeoCSV();
  
  ?>