Exemplo n.º 1
0
 public function __construct()
 {
     $this->_app = JFactory::getApplication();
     $this->_db = JFactory::getDBO();
     $this->_oldToNew = new stdClass();
     $this->starttime = microtime(true);
     $max_execution_time = tsmConfig::getExecutionTime();
     $jrmax_execution_time = vRequest::getInt('max_execution_time');
     if (!empty($jrmax_execution_time)) {
         // 			vmdebug('$jrmax_execution_time',$jrmax_execution_time);
         if ($max_execution_time != $jrmax_execution_time) {
             @ini_set('max_execution_time', $jrmax_execution_time);
         }
     } else {
         if ($max_execution_time < 60) {
             @ini_set('max_execution_time', 60);
         }
     }
     $this->maxScriptTime = tsmConfig::getExecutionTime() * 0.95 - 3;
     //Lets use 3 seconds of the execution time as reserve to store the progress
     $jrmemory_limit = vRequest::getInt('memory_limit');
     if (!empty($jrmemory_limit)) {
         @ini_set('memory_limit', $jrmemory_limit . 'M');
     } else {
         tsmConfig::ensureMemoryLimit(128);
     }
     $this->maxMemoryLimit = $this->return_bytes(ini_get('memory_limit')) - 14 * 1024 * 1024;
     //Lets use 11MB for joomla
     // 		vmdebug('$this->maxMemoryLimit',$this->maxMemoryLimit); //134217728
     //$this->maxMemoryLimit = $this -> return_bytes('20M');
     // 		ini_set('memory_limit','35M');
     $q = 'SELECT `id` FROM `#__tsmart_migration_oldtonew_ids` ';
     $this->_db->setQuery($q);
     $res = $this->_db->loadResult();
     if (empty($res)) {
         $q = 'INSERT INTO `#__tsmart_migration_oldtonew_ids` (`id`) VALUES ("1")';
         $this->_db->setQuery($q);
         $this->_db->execute();
         $this->_app->enqueueMessage('Start with a new migration process and setup log maxScriptTime ' . $this->maxScriptTime . ' maxMemoryLimit ' . $this->maxMemoryLimit / (1024 * 1024));
     } else {
         $this->_app->enqueueMessage('Found prior migration process, resume migration maxScriptTime ' . $this->maxScriptTime . ' maxMemoryLimit ' . $this->maxMemoryLimit / (1024 * 1024));
     }
     $this->_keepOldProductIds = tsmConfig::get('keepOldProductIds', FALSE);
 }
Exemplo n.º 2
0
 public function __construct()
 {
     $this->_app = JFactory::getApplication();
     $this->_db = JFactory::getDBO();
     // 		$this->_oldToNew = new stdClass();
     $this->starttime = microtime(true);
     $max_execution_time = tsmConfig::getExecutionTime();
     $jrmax_execution_time = vRequest::getInt('max_execution_time', 300);
     if (!empty($jrmax_execution_time)) {
         // 			vmdebug('$jrmax_execution_time',$jrmax_execution_time);
         if ($max_execution_time !== $jrmax_execution_time) {
             @ini_set('max_execution_time', $jrmax_execution_time);
         }
     }
     $this->maxScriptTime = tsmConfig::getExecutionTime() * 0.9 - 1;
     //Lets use 10% of the execution time as reserve to store the progress
     tsmConfig::ensureMemoryLimit(128);
     $this->maxMemoryLimit = $this->return_bytes(ini_get('memory_limit')) * 0.85;
     $config = JFactory::getConfig();
     $this->_prefix = $config->get('dbprefix');
     $this->reCreaPri = tsmConfig::get('reCreaPri', 0);
     $this->reCreaKey = tsmConfig::get('reCreaKey', 1);
 }