inherit
215754
0
Aug 22, 2024 8:27:20 GMT -8
Gator
All ways building something
575
November 2014
jason777
|
Post by Gator on Jul 19, 2018 18:13:56 GMT -8
Whats making this happen?? We was playing it got near the end and now every time i try to make a move its keeping on popping this up.
|
|
inherit
Official Code Helper
65613
0
1
Oct 22, 2024 1:56:19 GMT -8
Chris
"'Oops' is the sound we make when we improve"
9,017
December 2005
horace
RedBassett's Mini-Profile
|
Post by Chris on Jul 19, 2018 22:41:27 GMT -8
Generally, when you are having a problem with a particular plugin you can go to the support thread for that plugin to see if people have had similar problems to yours and have had it resolved in that thread. If the plugin author has created a support thread for the plugin and linked it in the plugin you can easily get to the support thread for that plugin by clicking the "Need Help?" link located next to the Save Changes button Hi, @ gibby , @ omega222 , I saw this on another post here - it may help you Steve thanks but unfortunately i can't see any green book under the board? have you the latest version 2.6.0 you as the admin should see a green book under their board
Here you go added a screenshot - how it looked on my forum notice the green book at the bottom of the screenshot of the board it will show a popup clicking on that will archive the moves thus helping to free up some space
Just curious @ gibby and @ omega222 - I apologize if either (or both) of you have answered this (I just don't recall seeing it answered), but are both of you using the most recent version that @xsteveuk had pointed out: have you the latest version 2.6.0 It is working now thanks, had to up date it , I didnt even know there was another version out , are we supposed to be notified when plugins get updated do you know?
|
|
inherit
215754
0
Aug 22, 2024 8:27:20 GMT -8
Gator
All ways building something
575
November 2014
jason777
|
Post by Gator on Jul 20, 2018 6:35:59 GMT -8
Same here i having the same prob, no green book..dose it got to be the owner admin acct or any admin, right now i having the prob is other persons forum but i got full admin
|
|
inherit
217348
0
Jul 27, 2022 7:26:44 GMT -8
Lynx
5,846
January 2015
msg
|
Post by Lynx on Jul 20, 2018 8:11:07 GMT -8
Same here i having the same prob, no green book..dose it got to be the owner admin acct or any admin, right now i having the prob is other persons forum but i got full admin It may require the main / root admin - I don't use that plugin, so not sure. Did you check to make sure it's the most recent version installed? Compare the version number from your Admin > Plugins > Manage page to that shown in the library. I was going to check the forum link in your signature, but it takes me back to this thread, rather than your forum. May want to fix that.
|
|
#e61919
Support Staff
224482
0
1
Nov 22, 2024 17:59:24 GMT -8
Scott
“Asking for help isn't giving up... it's refusing to give up.”
24,521
August 2015
socalso
|
Post by Scott on Jul 20, 2018 11:41:51 GMT -8
Gator, if you have sufficient admin rights you would be able to access the admin panel and the plugins section. If you are unable to access that area then you don't have the appropriate permissions and the main admin would need to assign you the additional powers.
|
|
inherit
215754
0
Aug 22, 2024 8:27:20 GMT -8
Gator
All ways building something
575
November 2014
jason777
|
Post by Gator on Jul 22, 2018 6:45:22 GMT -8
Well lested i got the link in my signature fix, I found out it was only acting up with the one game i was playing, still able to play with the other person
|
|
inherit
Official Code Helper
65613
0
1
Oct 22, 2024 1:56:19 GMT -8
Chris
"'Oops' is the sound we make when we improve"
9,017
December 2005
horace
RedBassett's Mini-Profile
|
Post by Chris on Jul 22, 2018 8:29:41 GMT -8
Well lested i got the link in my signature fix, I found out it was only acting up with the one game i was playing, still able to play with the other person The plugin uses thread keys (each game has its own thread and the key simply saves the moves already made in that thread) meaning an overflowing key in one game would have no effect on another game having ample room in the key for its thread. Proboards offers a way to CLEAR ALL THE KEYS for the plugin in the admin panel meaning ALL GAMES WILL BE WIPED OUT which might not be ideal so what that green book allows is to clear the key for a game (up to 25 full moves) to make room for more moves (it archives the old moves from the key into a post in that thread). You might be able to utilize the archive feature via the javascript console even if you are not the main admin provided you have the correct key permissions and ability to edit a post in the thread but you would need to get a bit more specific by providing a link to the thread that has the overflowing key. code for reference: function moveKeystuffToPost() {
// extract first 50 moves from key EPD
var keynum=pb.data('page').thread.id;
var keystuff=pb.plugin.key('wormocodes_chessplay').get(keynum);
var keyextract=keystuff.EPD.splice(0,25);
// append to post content surrounded by [chess_archive] tags
gfrm=$('form.form_thread_edit');
var currContent= $('#'+gfrm.attr('id')+'_message_input').wysiwyg('getContent');
currContent+='[p][i][b][b]\n\n[chess_archive]'+keyextract.join(',')+'[/chess_archive][/b][/b][/i][/p]';
$('#'+gfrm.attr('id')+'_message_input').wysiwyg('setContent',currContent);
// remember to have it remove those tags from displaying
alert('25 moves have been archived into post content.');
pb.plugin.key('wormocodes_chessplay').set_on('thread_edit',keynum,keystuff);
gfrm.submit();
}
|
|