Ok, i'm at the same point:
I'm upgrading from v4.1.0 free version to v4.3.0
Admin password
At the first time, i have entered a password with 5 characters.
When i click Perform Upgrade
button, an error dialog appears saying at least "8 characters required" (something like that).
I'm going back with clicking the okay button.
Next time, i entered a bigger password but the Perform Upgrade
button doesn't want to be active.
I looked into the code:
<input id="upgrade_password_admin" name="admin_password" class="adminpassword" placeholder="Enter a new admin password here" onkeyup="if ($(this).getValue().length >= 5 && **$('confirm_backup').checked) { $('start_upgrade').enable(); } else { $('start_upgrade').disable(); }">
And i put an alert to debug it.
I found that the $('confirm_backup').checked never be true elsewhere the value of the corresponding hidden input is always set to 1
.
<input type="hidden" name="perform_upgrade" value="1">
<input type="hidden" name="confirm_backup" value="1" id="confirm_backup">
=> I used the F12 Chrome function and i added the checked
tag to the perform_upgrade input and confirm_backup input to force this step and the upgrade process starts right.
<input type="hidden" name="perform_upgrade" value="1" checked>
<input type="hidden" name="confirm_backup" value="1" id="confirm_backup" checked>
Documentation dead link
The link upgrade notes contained into the wizard is dead.
Log error
Now, the upgrade process displays another error.
An error occurred during the upgrade:
Unknown column 'log53.project_id' in 'field list'
I clicked Okay
button to go back to the process beginning, and i clicked forward to reach the last wizard page which says remove upgrade file
.
I attempt to login as admin but i cannot.
Do i have to purge password into the Database or something like that ?