BUG: WB v2.8.2 upgrade script

Argos

#13
With the patch I received it all worked fine!
Jurgen Nijhuis
Argos Media
Heiloo, The Netherlands
----------------------------------------------------------------
Please don't request personal support, use the forums!

Argos

I don't know if it's supposed to do so, but when upgrading from an RC6 (not RC5 as the screen says!) to final the upgrade script stops with this page.

I also cannot find the security switch thingy in the backend...

[gelöscht durch Administrator]
Jurgen Nijhuis
Argos Media
Heiloo, The Netherlands
----------------------------------------------------------------
Please don't request personal support, use the forums!

Luisehahne

Note: Once the code has been generated, it is easy to debug. It's not a bug, it's a feature!

BlackBird

May I remind you that you're posting in the english forum... :roll:
[url=http://wbaddons.webbird.de]http://wbaddons.webbird.de[/url] [url=http://www.WebsiteBaker.org/forum/index.php/topic,27476.msg189845.html#msg189845]Don't miss this[/url]

ruebenwurzel

Hallo,

schaut euch mal die Upgrade-scripts an, mit denen damals auf die 2.7 upgegradet wurde. Meines Wissens nach wurde das entsprechende Feld in der Datenbank bei früheren Upgrades etwas stiefmütterlich behandelt. Es ist auch für ein Funktionieren von WB an sich nicht erforderlich. Vielleicht sollte man ein kleines Patch schreiben, für alle, die noch 2.7 im Einsatz haben, der vor dem Upgrade das Datenbankfeld mit der version.php vergleicht und dann den Wert auf 2.7.0 oder was auch immer geht einträgt. Der fehlende DB Eintrag taucht soweit ich weiß nur bei Installationen auf, die von 2.x auf 2.7 upgegradet wurden.

Matthias

Luisehahne

Quote
Doch das mit der 2.7 statt 2.7.0 bleibt ein Bug für ALLE User, welche versuchen direkt von 2.7 auf 2.8.2 upzugraden.

Ja leider, wird dann wohl bald den ersten Patch geben. Am besten wir sammlen erstmal ein bisschen und ala Microsoft gibt es dann einen Patchday. Wie sagt man, "Ein Programm ohne Fehler ist veraltet"  :-D

Dietmar
Note: Once the code has been generated, it is easy to debug. It's not a bug, it's a feature!

freeSbee

Tja, leider leider...
Es wäre nur allzuschön, wenn man jeweils noch wüsste, was man vor 2 Jahren 'gebastelt' hat... und irgendwann holt einem die Vergangenheit stets wieder ein!

Doch das mit der 2.7 statt 2.7.0 bleibt ein Bug für ALLE User, welche versuchen direkt von 2.7 auf 2.8.2 upzugraden.

Gruss und schönen Tag noch
Christoph

Luisehahne

Nicht böse sein, aber wie sagt ein Zitat,

"Das Problem sitzt oft vor dem Computer"  :-D

Hauptsache Ursache gefunden. Danke

Dietmar
Note: Once the code has been generated, it is easy to debug. It's not a bug, it's a feature!

freeSbee

Quote from: Luisehahne on July 25, 2011, 03:05:20 PM
Do i understood it, that the value of wb_version was empty in 2.7 or after upgrade?
Das Feld 'value' war vor dem Upgrade (v2.7) leer.

Ich habe soeben nochmals kurz einen Blick in die DB geworfen, und siehe da... es ist noch immer leer. Eigenartigerweise steht bei der Zeile mit der setting_id=1 im Feld 'name' nicht wb_version sondern ab_version!? ab_ ist das DB-Präfix dieser WB Installation.
Keine Ahnung wie diese Änderung geschah. Möglicherweise durch einen von mir früher einmal ausgeführten Suchen-Ersetzen mySQL-Befehl? Das leere Feld ist daher höchst wahrscheinlich kein Bug sondern eine von mir damals vorgenommene Manipulation.

Gruss Christoph

Luisehahne

Do i understood it, that the value of wb_version was empty in 2.7 or after upgrade?

Sorry my english is not the best.

Dietmar

Note: Once the code has been generated, it is easy to debug. It's not a bug, it's a feature!

freeSbee

Hallo Dietmar

I even just upgraded a WB v2.7 installation where the value field of the settings table (setting_id=1, name= wb_version) was empty! Kind of strange...

Regards Christoph

Luisehahne

Hallo Christoph,

Quote(setting_id=1, name= wb_version) just holds a 2 digit, eg. 2.7. and not a 3 digit version number string.
Is right and will be fix.

Tks for your quick fix

Dietmar
Note: Once the code has been generated, it is easy to debug. It's not a bug, it's a feature!

freeSbee

There is an bug in the WB v2.8.2 upgrade script that affects upgrades from WB version 2.7 to 2.8.2.
It prevents upgrading and causes the warning below:
QuoteWarning:
It is not possible to upgrade from WebsiteBaker Versions before 2.7.0.
For upgrading to version 2.8.2 you must upgrade first to v.2.7.0 at least!!!
The version compare (upgrade_script.php, line 184) does not work as expected since the former WB settings table (setting_id=1, name= wb_version) just holds a 2 digit, eg. 2.7. and not a 3 digit version number string.

A quick fix would be (line 184):
if( version_compare( WB_VERSION, '2.7.0', '<' )) {
change to
if( version_compare( WB_VERSION, '2.7', '<' )) {

Regards Christoph