0

Magento EE 1.13.1 is provided with a bunch of scripts that are meant to help in the migration from previous Url management to the new one (Url Rewrite -> Url Redirect).

We have 4 scripts in /shell/ :

  1. url_migration_to_1_13.php (documented here)
  2. url_migration_from_1_13_0_0_to_1_13_0_2.php (documented here)
  3. umt113_conflict.php
  4. umt113_redirect.php

I cannot find any info related to scripts 3 and 4 ... any idea ?

Thanks

asked Jan 11, 2014 at 13:15

1 Answer 1

2

They are both used by ./shell/url_migration_to_1_13.php to execute migration logic in separate processes:

$child = 'php -f ' . dirname(__FILE__) . '/umt113_conflict.php --';
$processesCheck = "ps x | grep \"$child\" | grep -v grep";
for(; $batches; $batches--) {
 $output = '';
 if ($threadCount == 1) {
 exec($child . " $i $batchSize >> " . dirname(__FILE__) . "/url_migration.log 2>&1", $output, $status);
 } else {
 waitForChildren($processesCheck, $threadCount);
 exec($child . " $i $batchSize >> " . dirname(__FILE__) . "/url_migration.log 2>&1 &", $output, $status);
 }
 $progressBar->update(++$i, '');
}
answered Jan 11, 2014 at 13:56
1
  • mmm... I wonder why they are not inside /shell/lib/ Commented Jan 13, 2014 at 12:24

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.