. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
| Server IP : 94.23.64.18 / Your IP :
216.73.216.185 [
Web Server : Apache System : Linux webm005.cluster107.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64 User : villadal ( 6036) PHP Version : 7.4.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl Domains : 2 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/villadal/www/old/booked/tpl/Install/ |
Upload File : |
{*
Copyright 2012-2014 Nick Korbel
This file is part of Booked Scheduler.
Booked Scheduler is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Booked Scheduler is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Booked Scheduler. If not, see <http://www.gnu.org/licenses/>.
*}
{include file='globalheader.tpl' Title='Booked Scheduler v2 Migration'}
<h1>Migrate phpScheduleIt v1.2 to Booked Scheduler v2.x (MySQL only)</h1>
<div class="migratingElements hidden">Migrating <span
class="elementType"></span> {html_image src="admin-ajax-indicator.gif"}</div>
<div class="migratedElements hidden">
Migrated <span class="migratedCount">-</span> out of <span class="legacyCount">-</span>
<span class="elementType"></span> (<span class="percentComplete">-</span>%)
</div>
<div id="migrationResults">
</div>
<div id="done" class="hidden">
Done!
</div>
<div id="errorMessage" class="error hidden">There was an error running the migration. See details below.</div>
<div id="errorContents" class="hidden" style="width:100%"></div>
<div>
{if $StartMigration}
<script type="text/javascript">
function Migration()
{
var migratingElements = $('.migratingElements');
var migratedElements = $('.migratedElements');
var migrationResults = $('#migrationResults');
var startMigration = function (migrateParams)
{
var elementType = migrateParams.elementType;
var migrating = $('#migrating-' + elementType);
var migrated = $('#migrated-' + elementType);
if (migrationResults.find(migrating).length <= 0)
{
migrating = migratingElements.clone();
migrating.attr('id', 'migrating-' + elementType);
migrating.appendTo(migrationResults);
}
if (migrationResults.find(migrated).length <= 0)
{
migrated = migratedElements.clone();
migrated.attr('id', 'migrated-' + elementType);
migrated.appendTo(migrationResults);
}
migrating.find('.elementType').text(elementType);
migrated.find('.elementType').text(elementType);
migrating.show();
$.ajax({
url: "migrate.php?start=" + elementType,
type: "GET",
success: function (data)
{
migrated.find('.migratedCount').text(data.MigratedCount);
migrated.find('.legacyCount').text(data.LegacyCount);
migrated.find('.percentComplete').text(data.PercentComplete);
migrated.show();
console.log('Migrating data ' + elementType);
if (data.RemainingCount > 0)
{
migrateParams.current();
}
else
{
migrating.hide();
if (migrateParams.next != null)
{
migrateParams.next();
}
else
{
$('#done').show();
}
}
},
error: function(data)
{
migrating.hide();
migrated.hide();
$('#errorMessage').show();
$('#errorContents').text(JSON.stringify(data)).show();
},
dataType: "json"
});
};
var startSchedules = function ()
{
startMigration(
{
elementType: 'schedules',
current: startSchedules,
next: startResources
}
);
};
var startResources = function ()
{
startMigration(
{
elementType: 'resources',
current: startResources,
next: startAccessories
}
);
};
var startAccessories = function ()
{
startMigration(
{
elementType: 'accessories',
current: startAccessories,
next: startGroups
}
);
};
var startGroups = function ()
{
startMigration(
{
elementType: 'groups',
current: startGroups,
next: startUsers
}
);
};
var startUsers = function ()
{
startMigration(
{
elementType: 'users',
current: startUsers,
next: startReservations
}
);
};
var startReservations = function ()
{
startMigration(
{
elementType: 'reservations',
current: startReservations,
next: null
}
);
};
this.run = function ()
{
startSchedules();
};
}
var migration = new Migration();
migration.run();
</script>
{else}
<h3>This will copy all data from your phpScheduleIt v1.2 installation into 2.x. Due to changes in 2.x, this
process will
not be perfect. This process only migrates data which exists in your 1.2 installation but not in your 2.x
installation.
Running this multiple times will not insert duplicate data. This will not affect your 1.2 installation.</h3>
<br/>
<h3>There is no automated way to undo this process. Please check all migrated data for accuracy after the import
completes.</h3>
<div class="error">
<h3>Known Issues</h3>
<ul style="margin-left: 30px;">
<li>Recurring reservations will appear as single instances</li>
<li>Application admin designations will not be migrated, only the user accounts</li>
<li>Group admin designations will not be migrated, only the user accounts</li>
<li>Open reservation invitations will be removed</li>
<li>User timezones will all be set to the server's timezone</li>
<li>At the time of writing, Booked Scheduler 2 is not available in all of the same languages that 1.2 was.
User language preferences will be migrated but may have no immediate effect
</li>
<li>User email preferences will not be migrated</li>
</ul>
</div>
<form class="register" method="post" action="{$smarty.server.SCRIPT_NAME}">
{if $LegacyConnectionFailed}
<div class="error">
Could not connect to 1.2 database. Please confirm the settings below and try again.
</div>
{/if}
{if $InstallPasswordFailed}
<div class="error">
Your installation password was incorrect. Please confirm this config setting in
$conf['settings']['install.password']
</div>
{/if}
<h3>phpScheduleIt 1.2 database settings</h3>
<br/>
<ul style="list-style: none;">
<li>Install Password: <input type="password" class="textbox" name="installPassword"/> (found in 2.x
config.php)
</li>
<li>User: <input type="text" class="textbox" name="legacyUser"/></li>
<li>Password: <input type="password" class="textbox" name="legacyPassword"/></li>
<li>Hostspec: <input type="text" class="textbox" name="legacyHostSpec"/></li>
<li>Database Name: <input type="text" class="textbox" name="legacyDatabaseName"/></li>
</ul>
<br/>
<input type="submit" name="run" value="Run Migration" class="button"/>
</form>
{/if}
</div>
{include file='globalfooter.tpl'}