Forum Replies Created

Viewing 15 replies - 1 through 15 (of 150 total)
  • Forum: Plugins
    In reply to: [Challonge] Plugin Dead?
    Plugin Author zavaboy

    (@zavaboy)

    First off, I don’t want to understate how much I appreciate your support. Thank you!

    The state of things at the moment has a lot to be desired. I want to assure you, I want to get back to developing this plugin. It was a nice hobby and it was pretty rewarding seeing people using it and contributing to it.

    There are many reasons I haven’t been as active as I would like to be. A lot has changed in my personal life that has caused this project (among others) to fall off to the side because I no longer have the time for it. As they say, there are bigger fish to fry. It’s a priority thing, not a lack of interest thing.

    For the foreseeable future, this project will remain in the void. When I have time for hobbies like this again, I will consider reviving this project, giving it new life. In the meantime, anyone with the proper programming skillset may modify and distribute it according to the MIT license included with it, hopefully to make it better for everyone.

    I know this isn’t what you were hoping for, but to be truthful, I’m right there with you. I really hope opportunities to continue this project show up soon. I’m confident they will show up, I’m just unsure when.

    Thanks again for all your patience and support! ??

    Forum: Plugins
    In reply to: [Challonge] Date format
    Plugin Author zavaboy

    (@zavaboy)

    The date format used is whatever you set in your general WordPress settings:
    SettingsGeneralDate Format

    HTH

    Plugin Author zavaboy

    (@zavaboy)

    I’m glad you got it resolved! ??

    May you please share the lines you added to your .htaccess so it may help out someone else experiencing the same problem? (Also, I’m curious.)

    Thanks!

    Plugin Author zavaboy

    (@zavaboy)

    It sounds like this issue here:
    https://www.ads-software.com/support/topic/iframe-displaying-blank-content/

    I give directions in that thread on how to resolve it. Please let me know if that doesn’t work.

    Also, I’ll note that this will be resolved in the next update.

    Thanks for your feedback! ??

    Plugin Author zavaboy

    (@zavaboy)

    That is a bit odd. :/

    Please double-check your API key in your settings and make sure it matches your current API key on your Challonge account exactly.

    The API key input field has validation on it. What does it say when your API key is entered?

    Try clearing the API key, saving, then entering it again. I don’t expect that to fix the issue, but it’s worth a try.

    Another suggestion would be to generate a new API key on Challonge and see if that works.

    Sorry for the inconvenience this is causing. Thanks for the feedback and I hope I’ve been some help. ??

    Forum: Plugins
    In reply to: [Challonge] Blank page
    Plugin Author zavaboy

    (@zavaboy)

    @sjorsmetz, please try the solution I offer here:
    https://www.ads-software.com/support/topic/iframe-displaying-blank-content/

    Sorry, I forgot about that one. Like I said in that topic, this will be fixed in the next update. With more and more sites going secure, it will become a very common issue until I release the next update.

    HTH

    Forum: Plugins
    In reply to: [Challonge] Blank page
    Plugin Author zavaboy

    (@zavaboy)

    The only instance I know of this issue is when you have too few participants in your tournament bracket. From memory, I believe you need at least two participants in the bracket before it shows anything.

    If this was not the case for @pytchoun, I’d like to know what the problem was and how they fixed it.

    HTH

    Cheers! ??

    Plugin Author zavaboy

    (@zavaboy)

    You will have to ask the fine folks at Challonge. The ads are not handled by this plugin, so I can not help you with them.

    Plugin Author zavaboy

    (@zavaboy)

    Thanks for your feedback! ??

    Ads are handled by Challonge and not this plugin. You will have to pay for Challonge Premier in order to remove ads.

    Plugin Author zavaboy

    (@zavaboy)

    Thanks for the feedback! ??

    To allow the iframe to load HTTPS:
    Search for http: in jquery.challonge.min.js and remove it. It should look like this now:
    ...+".":"";return"//"+t+"challonge.com/"+...

    Sorry for the inconvenience. This will be fixed in the next update.

    HTH

    Plugin Author zavaboy

    (@zavaboy)

    I’m going to mark this topic resolved because it is a duplicate of:
    https://www.ads-software.com/support/topic/challonge-sign-up/

    Please continue discussion there.

    Thank you! ??

    Plugin Author zavaboy

    (@zavaboy)

    My apologies, I’ve been preoccupied with other projects as of late. I’ll try to get back to working on this plugin this weekend.

    Are you using one of WordPress’s default themes? If not, does the Challonge plugin work when using an default theme?

    Most issues now are usually conflicts with other themes or plugins. If the Challonge plugin works nicely on a clean WP install, but not so well with all your themes and plugins installed, then there must be a conflict. If you could narrow down which theme or plugin it may be, that could help me tremendously on getting the issue resolved, or at very least identified.

    Thank you for the feedback! ??

    Plugin Author zavaboy

    (@zavaboy)

    Nice detective work! ?? That makes sense now that you mention it.

    Plugin Author zavaboy

    (@zavaboy)

    $pmisc[0] will be equal to a 32 character string or null. The first condition is met if it’s null and if it’s a string, $this->oLnk->usrkey must match it to meet the second condition. If you look a little higher up in the code, you will find $this->oLnk->usrkey should be true and not a string unless you are a logged in.

    // User key hash
    if ( is_user_logged_in() && current_user_can( 'challonge_signup' ) )
    	$this->oLnk->usrkey = md5( $tourny->url . ' ' . $this->oUsr->user_login . ' <' . $this->oUsr->user_email . '>' ); // Shows signup
    elseif ( ! is_user_logged_in() && $this->aOptions['public_widget_signup'] )
    	$this->oLnk->usrkey = true; // Shows signup to login
    else
    	$this->oLnk->usrkey = false; // Shows nothing

    There may be an error happening somewhere there causing $this->oLnk->usrkey to have an incorrect value.

    I remember there were some challenges involved with checking valid logins over AJAX, perhaps I’ve forgotten something.

    I will try more testing when I have a chance later today.

    Thanks for your help! It is appreciated. ??

    Plugin Author zavaboy

    (@zavaboy)

    Thanks for confirming this! I will take another look at this issue.

Viewing 15 replies - 1 through 15 (of 150 total)