Welcome, Guest

Bugs & Issues - Please report here
(0 viewing) 
Getting out of Isolation and connecting with others is an important part of recovery. This board is for non-addiction related threads, where members exchange jokes, have fun - and drink Lechayim Together!

TOPIC: Bugs & Issues - Please report here 70452 Views

Re: Bugs & Issues - Please report here 23 Dec 2016 05:36 #300956

  • Markz
  • OFFLINE
  • Platinum Boarder
  • Posts: 8203
  • Karma: 426
Sometimes it can be a freak rare bug that only affects 1 person's device 

Once a 2nd person reports, that confirms that there's a crisis of epic proportions 

But in order to report it, could everyone that has the "stutter bug" please share here on what device and version this is occurring 
My Story---------Dov Quotes




FREE LUST TRUCK TOWING
Click HERE to checkout;
100 Day Success Stories: cordnoy, Dov, Gevura and more...
• Awesome Threads Saved for You
• Cast Your Vote

GYE Plenty Solutions
➣ The Mark of Torah - Lust Chizuk

➣ Nice Trucking Story

Re: Bugs & Issues - Please report here 23 Dec 2016 14:13 #300978

  • cordnoy
  • OFFLINE
  • Moderator
  • Posts: 12063
  • Karma: 653
Markz wrote on 23 Dec 2016 05:36:
Sometimes it can be a freak rare bug that only affects 1 person's device 

Once a 2nd person reports, that confirms that there's a crisis of epic proportions 

But in order to report it, could everyone that has the "stutter bug" please share here on what device and version this is occurring 

SSsamsung 6
My email: thenewme613@hotmail.com
My threads: Mikvah Night - Page 1Page 2Page 3Last Page

https://guardyoureyes.com/forum/1-Break-Free/210029-Tryin
:pinch: Warning: Spoiler!
My job: Punchin' bag of GYE - "NeshamaInCharge"
Quote from the chevra: "Is Cordnoy truly a Treasure Island pirate from the Southern Seas?"

MY POSTS ARE NOT WRITTEN AS A MODERATOR UNLESS EXPLICITLY STATED.

Re: Bugs & Issues - Please report here 23 Dec 2016 16:30 #301002

  • shua73
  • Current streak: 133 days
  • OFFLINE
  • Gold Boarder
  • Posts: 263
  • Karma: 7
Markz wrote on 23 Dec 2016 05:36:
Sometimes it can be a freak rare bug that only affects 1 person's device 

Once a 2nd person reports, that confirms that there's a crisis of epic proportions 

But in order to report it, could everyone that has the "stutter bug" please share here on what device and version this is occurring 

BBlu r1 HD
smile

You can't make everyone happy, you are not pizza.

Re: Bugs & Issues - Please report here 23 Dec 2016 19:14 #301006

  • jewishfiltergeek
  • Current streak: 9 days
  • OFFLINE
  • Expert Boarder
  • Posts: 86
  • Karma: 7
That issue is probably due to the person starting to type before the javascript that loads the editor code is ready. Should be an option to define the textarea after DOM has been loaded.

Re: Bugs & Issues - Please report here 23 Dec 2016 19:17 #301007

  • jewishfiltergeek
  • Current streak: 9 days
  • OFFLINE
  • Expert Boarder
  • Posts: 86
  • Karma: 7
Can someone with access to the source add the new domain where the videos are hosted to the list of domains in the noexternallink script? Please see attached.
Thanks!
Attachments:
  • Attachment This attachment is hidden for guests. Please log in or register to see it.
Last Edit: 23 Dec 2016 19:19 by jewishfiltergeek. Reason: couldn't attach .js

Re: Bugs & Issues - Please report here 23 Dec 2016 19:38 #301008

  • jewishfiltergeek
  • Current streak: 9 days
  • OFFLINE
  • Expert Boarder
  • Posts: 86
  • Karma: 7
jewishfiltergeek wrote on 23 Dec 2016 19:17:
Can someone with access to the source add the new domain where the videos are hosted to the list of domains in the noexternallink script? Please see attached.
Thanks!

/**
 * Main js file.
 *
 * @category   plugin
 * @package    noexternallink
 * @subpackage js
 * @author     vkarpenko@mindk.com
 * @copyright  2011-2015 mindk (mindk.com). All rights reserved.
 * @license    mindk.com Commercial
 * @link       mindk.com
 */

/**
 * Gye domains
 *
 * @type {string[]}
 */
var GyeDomains = ['guardyoureyes.com', 'guardyoureyes.org', 'guardureyes.com', 'gye.org.es', 'gye.org.il'];

/**
 * Add events on document ready.
 */
jQuery(document).ready(function () {
    blockExternal();
});

/**
 * Add events on ajax complete.
 */
jQuery(document).ajaxComplete(function () {
    blockExternal();
});

/**
 * Add events on click for external link.
 */
function blockExternal() {
    var links = jQuery('a[href]').not('[rel^="lightbox"]');
    links.unbind('click');
    links.click('click', function (event) {

        var url = jQuery(this).attr("href");

        if (isExternal(url)) {
            event.preventDefault();
            jQuery("

" + ExtLinkConfig.messages.MESSAGE + "

").dialog({
                modal: true,
                resizable: false,
                buttons: {
                    "Ok": function () {
                        jQuery(this).dialog('close');
                    }
                }
            });
        }
    });
}

/**
 * Make external link not clickable.
 */
function disableExternal() {
    var links = jQuery('a[href]').not('[rel^="lightbox"]');

    links.each(function () {
        var url = jQuery(this).attr("href");

        if (isExternal(url)) {
            jQuery(this).removeAttr("href");
        }
    });

}

/**
 * Check is url external.
 *
 * @param {string} url
 *
 * @returns {boolean}
 */
function isExternal(url) {
    var result = false;
    if (url) {
        var match = url.match(/^([^:\/?#]+?(?:\/\/([^\/?#]*))?([^?#]+)?(\?[^#]*)?(#.*)?/);
        if (typeof match[2] === "string" && match[2].length > 0 && jQuery.inArray(match[2].replace(new RegExp("" + {
                "http:": 80,
                "https:": 443
            }[location.protocol] + ")?$"), "").replace("www.", ""), GyeDomains) === -1) {
            result = true;
        }

    }
    return result;
}

Re: Bugs & Issues - Please report here 23 Dec 2016 19:49 #301009

  • cordnoy
  • OFFLINE
  • Moderator
  • Posts: 12063
  • Karma: 653
jewishfiltergeek wrote on 23 Dec 2016 19:14:
That issue is probably due to the person starting to type before the javascript that loads the editor code is ready. Should be an option to define the textarea after DOM has been loaded.

Thank you.

So, theoretically, if one waits a few seconds, it shouldn't happen.

And also, it will only happen in first letters of posts.

Doesn't explain the extra character that appearsI in my words at times (such as after the word appears).

Thank you so much
My email: thenewme613@hotmail.com
My threads: Mikvah Night - Page 1Page 2Page 3Last Page

https://guardyoureyes.com/forum/1-Break-Free/210029-Tryin
:pinch: Warning: Spoiler!
My job: Punchin' bag of GYE - "NeshamaInCharge"
Quote from the chevra: "Is Cordnoy truly a Treasure Island pirate from the Southern Seas?"

MY POSTS ARE NOT WRITTEN AS A MODERATOR UNLESS EXPLICITLY STATED.

Re: Bugs & Issues - Please report here 23 Dec 2016 21:08 #301010

  • jewishfiltergeek
  • Current streak: 9 days
  • OFFLINE
  • Expert Boarder
  • Posts: 86
  • Karma: 7
Sorry, I guess my theory is wrong. I personally never experienced this issue, so can't really know what causes it.
Git Shabbos!

Re: Bugs & Issues - Please report here 26 Dec 2016 04:42 #301162

  • jewishfiltergeek
  • Current streak: 9 days
  • OFFLINE
  • Expert Boarder
  • Posts: 86
  • Karma: 7
Love the new app update released today. Handbook is beautiful with real ebook reader controls, plus offline support. Can't wait for the proper mapping of the back buttons and offline forums, etc...

Re: Bugs & Issues - Please report here 26 Dec 2016 04:54 #301163

  • Markz
  • OFFLINE
  • Platinum Boarder
  • Posts: 8203
  • Karma: 426
You mentioned earlier that you're not a karma guy, but with your gratitude and positivity you'll get far

KOTT

Keep
on 
Tech
Trucking
My Story---------Dov Quotes




FREE LUST TRUCK TOWING
Click HERE to checkout;
100 Day Success Stories: cordnoy, Dov, Gevura and more...
• Awesome Threads Saved for You
• Cast Your Vote

GYE Plenty Solutions
➣ The Mark of Torah - Lust Chizuk

➣ Nice Trucking Story

Re: Bugs & Issues - Please report here 26 Dec 2016 11:36 #301174

  • jewishfiltergeek
  • Current streak: 9 days
  • OFFLINE
  • Expert Boarder
  • Posts: 86
  • Karma: 7
Mark,
Thanks for the karma. I'm now bubbling with positivity. My added positive energy caused an overflow of your karma too!

Re: Bugs & Issues - Please report here 26 Dec 2016 12:12 #301175

  • Markz
  • OFFLINE
  • Platinum Boarder
  • Posts: 8203
  • Karma: 426
jewishfiltergeek wrote:
Mark,
Thanks for the karma. I'm now bubbling with positivity. My added positive energy caused an overflow of your karma too!

No make sense
When your positive energy is emulated by me then we can start talking.  I have many miles to go till then
My Story---------Dov Quotes




FREE LUST TRUCK TOWING
Click HERE to checkout;
100 Day Success Stories: cordnoy, Dov, Gevura and more...
• Awesome Threads Saved for You
• Cast Your Vote

GYE Plenty Solutions
➣ The Mark of Torah - Lust Chizuk

➣ Nice Trucking Story

Re: Bugs & Issues - Please report here 26 Dec 2016 13:01 #301182

  • jewishfiltergeek
  • Current streak: 9 days
  • OFFLINE
  • Expert Boarder
  • Posts: 86
  • Karma: 7
In plain english, I meant to say that I upped your karma here on the forum. I can't really affect your true karma. You gotta work the system yourself,

One
Karma
At
A
Time!

Re: Bugs & Issues - Please report here 03 Jan 2017 05:44 #301953

  • shlomo24
  • Current streak: 1 day
  • OFFLINE
  • Platinum Boarder
  • Posts: 2213
  • Karma: 134
I am having an issue with my computer on GYE. Recently one of these things has been happening frequently: 1) The script runs too long and I get the option to kill or wait for the script to load. 2) The script stalls and I need to refresh the page. 3) The script loads but I need to wait a little bit of time before I'm able to click on anything. 4) I click on something and it doesn't go at first, either I need to click it again or I need to click it another time.

It's not my computer because I have a new computer that works quite well and has an i7 processor. I also am not having this issue on any other sites. I can't blame a filter for causing these issues because I have no filter on my laptop.
If you're an LGBTQ or LGBTQ-questioning person and looking for someone who can understand you, feel free to reach out. I promise no judgement and to try and listen the best I can. 

Email: iam24zman@gmail.com

Re: Bugs & Issues - Please report here 06 Jan 2017 03:08 #302370

  • shlomo24
  • Current streak: 1 day
  • OFFLINE
  • Platinum Boarder
  • Posts: 2213
  • Karma: 134
Yeah, so the site keeps on crashing on me...
If you're an LGBTQ or LGBTQ-questioning person and looking for someone who can understand you, feel free to reach out. I promise no judgement and to try and listen the best I can. 

Email: iam24zman@gmail.com
Time to create page: 0.75 seconds

Are you sure?

Yes