Summary: | updatedatabase.pl: Undefined subroutine &main::CheckVersion called at /home/koha/kohaclone/installer/data/mysql/updatedatabase.pl line 5342. | ||
---|---|---|---|
Product: | Koha | Reporter: | Manos PETRIDIS <egpetridis> |
Component: | Installation and upgrade (web-based installer) | Assignee: | Bugs List <koha-bugs> |
Status: | CLOSED FIXED | QA Contact: | |
Severity: | major | ||
Priority: | P2 | CC: | chris, derrynj, egpetridis, gmcharlt |
Version: | 3.8 | ||
Hardware: | PC | ||
OS: | Linux | ||
Change sponsored?: | --- | Patch complexity: | --- |
Documentation contact: | Documentation submission: | ||
Text to go in the release notes: | Version(s) released in: | ||
Circulation function: | |||
Attachments: |
screencap #1
screencap #2 latest updates applied |
Description
Manos PETRIDIS
2013-04-01 10:48:17 UTC
Created attachment 17217 [details]
screencap #1
Created attachment 17218 [details]
screencap #2
Created attachment 17219 [details]
latest updates applied
Please note a notion to a similar error, at the end of bug #9382 discussion. I don't currently have the means to check it myself, but I know how you can check and fix it yourself. 1. Open the updatedatabase.pl file for editing 2. Search for the following <code>if ( CheckVersion($DBversion) ) {</code> 3. Replace with <code>if (C4::Context->preference("Version") < TransformToNum($DBversion)) {</code> 4. Retry web-installer Hope this helps (In reply to comment #5) > I don't currently have the means to check it myself, but I know how you can > check and fix it yourself. > > 1. Open the updatedatabase.pl file for editing > 2. Search for the following > <code>if ( CheckVersion($DBversion) ) {</code> > 3. Replace with > <code>if (C4::Context->preference("Version") < TransformToNum($DBversion)) > {</code> > 4. Retry web-installer > > Hope this helps Without the <code></code> .. i thought bugzilla might be smart enough to recognition the tags and make it easier to read. Thank you Derryn, it worked! The good news was, it was never actually released, but yep there was a cut and paste error in git, fixed now |