K
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: LeagueManager] No Fixtures Showingthe upgrade screen should be shown if you visit any leaguemanager admin site… Could you put the following code into functions.php of your theme and post the output:
echo $options[‘dbversion’].”, “.LEAGUEMANAGER_DBVERSION
What WordPress and PHP version do you have?
Forum: Plugins
In reply to: [Plugin: LeagueManager] No Fixtures ShowingI’m really happy to hear that 2.6.5 works now. 🙂 I was so confused…
I forgot to mention something. The team points etc are now stored in the database (previously were calculated on the fly). This made it possible to implement a function to manually save the team standings. Just update the match results once and it should be fine.
Forum: Plugins
In reply to: [Plugin: LeagueManager] 2.6.3 What updates?The update can be performed via the automatic plugin update in WP 2.7 or manually by overwriting the plugin files. Update directly to 2.6.5 since the other versions may be broken. You won’t lose any data.
Forum: Plugins
In reply to: [Plugin: LeagueManager] How to update?Hey, you should update directly to version 2.6.5. I had some weird issue with the upgrade process. You could simply download this version and overwrite the old files. When you go to the LeagueManager Admin Panel there should be a message that your database is out-of-date. After upgrading it should work. Since 2.6 all the other versions were only bugfixes that are likely to be broken…
Forum: Plugins
In reply to: [Plugin: LeagueManager] No Fixtures ShowingI don’t understand this. OK, it’s all about the database that the columns are for some reasons not created. I have tested 2.6.5! If you update and reload the page there should come a message that your database is out-of-date and needs updating. After doing the upgrade there should be the following fields (among others):
points_plus, points_minus, points2_plus, points2_minus, done_matches, won_matches, draw_matches, lost_matches
All int( 11 ). For me it worked perfectly fine, so i really hope I got it right now.
Forum: Plugins
In reply to: [Plugin: LeagueManager] No Fixtures ShowingIt is likely that i screwed up version 2.6.3 and alread had some new MySQL Queries included. I hope i got it right now with 2.6.4 (originating from 2.6.3 with only the database upgrade). Further I turned on mysql errors. I have also fixed the team logo issue.
Forum: Plugins
In reply to: [Plugin: ProjectManager] Export formatVersion 1.8.2 fixes a bug in uploading images and thumbnail creation and now line breaks should be removed upon dataset export
Forum: Plugins
In reply to: [Plugin: LeagueManager] No Fixtures ShowingAnd there is no error message? You could try something. Download version 2.6.2 und only upload the folder view into the plugin folder
Forum: Plugins
In reply to: [Plugin: LeagueManager] No Fixtures Showingwhat other part do you mean? I also had the problem on one site that no teams and matches were displayed after upgrading, neither on the admin panel nor on the frontpage. Then i discovered that the following two MySQL queries were not called during the upgrade process.
$wpdb->query( “ALTER TABLE {$wpdb->leaguemanager_matches} ADD
post_idint( 11 ) NOT NULL” );$wpdb->query( “ALTER TABLE {$wpdb->leaguemanager_teams} ADD
points_plusint( 11 ) NOT NULL, ADDpoints_minusint( 11 ) NOT NULL, ADDpoints2_plusint( 11 ) NOT NULL, ADDpoints2_minusint( 11 ) NOT NULL, ADDdone_matchesint( 11 ) NOT NULL, ADDwon_matchesint( 11 ) NOT NULL, ADDdraw_matchesint( 11 ) NOT NULL, ADDlost_matchesint( 11 ) NOT NULL” );Now they should be called. Otherwise just post the above code in the functions.php of your theme and reload any admin page. Afterwards it should work.
Forum: Plugins
In reply to: [Plugin: LeagueManager] Logo Team Problemcurrently the logo is not displayed in the widget but there will be an option in the next greater release
Forum: Plugins
In reply to: [Plugin: ProjectManager] Export formatI could include a check on that type and remove line breaks.
Forum: Plugins
In reply to: [Plugin: LeagueManager] Logo TeamI’m on it
Forum: Plugins
In reply to: [Plugin: LeagueManager] Logo Team ProblemI’m on it
Forum: Plugins
In reply to: [Plugin: LeagueManager] Can’t create Match/If you had version 2.6.2 this was due to a bug in the database upgrade and several fields were missing. It should be fixed in version 2.6.3
Forum: Plugins
In reply to: [Plugin: LeagueManager] No Fixtures ShowingIt should be fixed in 2.6.3. Somehow there was a bug that one upgrade process was not called and so several database fields were missing.