0byt3m1n1-V2
Path:
/
home
/
a
/
c
/
a
/
academiac
/
www
/
[
Home
]
File: default_migrator.php.tar
www/administrator/components/com_virtuemart/views/updatesmigration/tmpl/default_migrator.php 0000604 00000013427 15137652744 0032007 0 ustar 00 home/academiac <?php /** * * Description * * @package VirtueMart * @subpackage UpdatesMigration * @author Max Milbers * @link http://www.virtuemart.net * @copyright Copyright (c) 2004 - 2011 VirtueMart Team. All rights reserved. * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php * VirtueMart is free software. This version may have been modified pursuant * to the GNU General Public License, and as distributed it includes or * is derivative of works licensed under the GNU General Public License or * other free or open source software licenses. * @version $Id: default_tools.php 4007 2011-08-31 07:31:35Z alatak $ */ $session = JFactory::getSession(); ?> <form action="index.php" method="post" name="adminForm" enctype="multipart/form-data" > <input type="hidden" name="task" value="" /> <table> <tr> <td align="left" colspan="5" > <h3> <?php echo JText::_('COM_VIRTUEMART_UPDATE_MIGRATION_TITLE'); ?> </h3> </td> </tr> <tr> <td align="left" colspan="5" > <?php if (!class_exists('ShopFunctions')) require(JPATH_VM_ADMINISTRATOR . DS . 'helpers' . DS . 'shopfunctions.php'); $max_execution_time = ini_get('max_execution_time'); echo 'max_execution_time '.$max_execution_time; echo '<br />'; @ini_set( 'max_execution_time', $max_execution_time+1 ); $new_max_execution_time = ini_get('max_execution_time'); if($max_execution_time===$new_max_execution_time){ echo 'Server settings do not allow changes of your max_execution_time in the php.ini file, you may get problems migrating a big shop'; } else { echo JText::_('COM_VIRTUEMART_UPDATE_MIGRATION_CHANGE_MAX_EXECUTION_TIME').'<input class="inputbox" type="text" name="max_execution_time" size="15" value="'.$max_execution_time.'" />'; } @ini_set( 'max_execution_time', $max_execution_time ); echo '<br />'; $memory_limit = ini_get('memory_limit'); echo 'memory_limit '.$memory_limit; echo '<br />'; if($memory_limit!=='128MB'){ // @ini_set( 'memory_limit', '128MB' ); // $new_memory_limit = ini_get('memory_limit'); // if($memory_limit===$new_memory_limit){ // echo 'Server settings do not allow changes of your memory_limit in the php.ini file, you may get problems migrating a big shop'; // }else { echo JText::_('COM_VIRTUEMART_UPDATE_MIGRATION_CHANGE_MEMORY_LIMIT').'<input class="inputbox" type="text" name="memory_limit" size="15" value="'.$memory_limit.'" />'; // } // @ini_set( 'max_execution_time', $memory_limit ); } ?> </td> </tr> <tr> <td align="center"> <button class="default" type="submit" ><?php echo JText::_('COM_VIRTUEMART_MIGRATE'); ?></button> </td> <tr> <tr> <td> <?php echo JText::_('COM_VIRTUEMART_UPDATE_MIGRATION_STRING'); ?> </td> <td> <?php $options = array( 'migrateGeneralFromVmOne' => JText::_('COM_VIRTUEMART_UPDATE_GENERAL'), 'migrateUsersFromVmOne' => JText::_('COM_VIRTUEMART_UPDATE_USERS'), 'migrateProductsFromVmOne' => JText::_('COM_VIRTUEMART_UPDATE_PRODUCTS'), 'migrateOrdersFromVmOne' => JText::_('COM_VIRTUEMART_UPDATE_ORDERS'), 'migrateAllInOne' => JText::_('COM_VIRTUEMART_UPDATE_ALL'), 'portVmAttributes' => JText::_('COM_VIRTUEMART_UPDATE_ATTR').'<br />'.JText::_('COM_VIRTUEMART_UPDATE_ATTR_2'), 'portVmRelatedProducts' => JText::_('COM_VIRTUEMART_UPDATE_REL'), // 'setStoreOwner' => JText::_('COM_VIRTUEMART_SETSTOREOWNER') ); echo VmHTML::radioList('task', $session->get('migration_task', 'migrateAllInOne', 'vm'), $options); ?> </td> </tr> <?php echo VmHTML::row('checkbox','COM_VIRTUEMART_MIGRATION_REWRITE_ORDER_NUMBER','reWriteOrderNumber',$session->get('reWriteOrderNumber', 1, 'vm')); echo VmHTML::row('checkbox','COM_VIRTUEMART_MIGRATION_USER_ORDER_ID','userOrderId',$session->get('userOrderId', 0, 'vm')); echo VmHTML::row('checkbox','COM_VIRTUEMART_MIGRA_SGRP_PRICES','userSgrpPrices',$session->get('userSgrpPrices', 0, 'vm')); echo VmHTML::row('checkbox','COM_VIRTUEMART_MIGRA_PORTFLY','portFlypages',$session->get('portFlypages', 0, 'vm')); echo VmHTML::row('input','COM_VIRTUEMART_MIGRATION_DCAT_BROWSE','migration_default_category_browse',$session->get('migration_default_category_browse', 0, 'vm')); echo VmHTML::row('input','COM_VIRTUEMART_MIGRATION_DCAT_FLY','migration_default_category_fly',$session->get('migration_default_category_fly', 0, 'vm')); ?> </table> <!-- Hidden Fields --> <input type="hidden" name="option" value="com_virtuemart" /> <input type="hidden" name="view" value="updatesmigration" /> <?php echo JHTML::_( 'form.token' ); ?> </form> <form action="index.php" method="post" name="adminForm" enctype="multipart/form-data" > <input type="hidden" name="task" value="setStoreOwner" /> <table> <tr> <td> <?php echo JText::_('COM_VIRTUEMART_MIGRATION_STOREOWNERID'); ?> </td> <td> <input class="inputbox" type="text" name="storeOwnerId" size="15" value="" /> </td> <td> <button class="default" type="submit" ><?php echo JText::_('COM_VIRTUEMART_SETSTOREOWNER'); ?></button> </td> </tr> </table> <!-- Hidden Fields --> <input type="hidden" name="option" value="com_virtuemart" /> <input type="hidden" name="view" value="updatesmigration" /> <?php echo JHTML::_( 'form.token' ); ?> </form> <?php /* <form action="index.php" method="post" name="adminForm" enctype="multipart/form-data" > <input type="hidden" name="task" value="reOrderChilds" /> <table> <tr> <td align="left" colspan="5" > <h3> <?php echo JText::_('COM_VIRTUEMART_UPDATE_CHILD_ORDERING'); ?> </h3> </td> </tr> <td> <button class="default" type="submit" ><?php echo JText::_('COM_VIRTUEMART_GO'); ?></button> </td> </table> <!-- Hidden Fields --> <input type="hidden" name="option" value="com_virtuemart" /> <input type="hidden" name="view" value="updatesmigration" /> <?php echo JHTML::_( 'form.token' ); ?> </form> */ ?>