ATutor

Learning Management Tools







Pages:1 2 3 4 5 6 7 8 9 10 11 12 13 14 15


Firefox 10 issue


  • 2012-02-06 17:25:36

    Firefox 10 issue

    Hi. I have ATutor 2.0 installed. After "updating" to FF10, a certain part of the way I use ATutor began to fail.

    After investigating the page source info. I found a difference that may be a problem. Same line of code for each browser below...

    FF10:
    [php]<a href="/go.php/4/content.php/cid/1031/ib/1/#content" accesskey="c">[/php]

    FF10 (different ATutor installation):
    [php]<a href="/go.php/4/content.php/cid/1200/#content" accesskey="c">[/php]

    FF9:
    [php]<a href="/go.php/4/content.php/cid/1031/#content" accesskey="c">[/php]

    Any ideas on what's up with the "/ib/1" part of the first link?

    Thanks.

  • 2012-02-06 17:42:15

    Re: Firefox 10 issue?

    Update...

    When I delete the following section from /ATutor/themes/default/include/header.tmpl.php, things work.

    [php]
    <script language="javascript" type="text/javascript">
    //<!--
    jQuery.noConflict();
    //-->
    </script>
    <script src="<?php echo $this->base_path; ?>jscripts/ATutor.js" type="text/javascript"></script>
    <?php echo $this->custom_css; ?>
    <style id="pref_style" type="text/css"></style>
    [/php]


    Any ideas?

  • 2012-02-06 18:02:42

    Re: Firefox 10 issue?

    Completely guessing.

    Try dumping cookies and reopening the browser.

    Not sure what the /ib/1 is, unless it is somehow using the course directory name option. Though thats not generally how you see course directory displayed.

    I'm using FF10 myself. Not experiencing any problem.

    You'll want to add back the lines you deleted.

    Can reproduce the problem on our demo site, and if so what steps so we can also reproduce it.

  • 2012-02-07 09:19:18

    Re: Firefox 10 issue?

    "ib" is an internal flag that is to prevent the infinite redirection. I can confirm it's generated by the ATutor script but cannot tell if it's related to your ff10 issue without seeing the issue in action.

    In terms of the javascript of "jQuery.noConflict();", it was originally introduced to prevent the conflict between jQuery and another javascript library for networking module and also uses $ as a function. Without this chunk of code, the visits to some of the networking module pages are likely throwing javascript error.

    The jQuery.noConflict() documentation in case you are interested:

    http://api.jquery.com/jQuery.noConflict/

  • 2012-02-08 17:28:03

    Re: Firefox 10 issue?

    Thanks for the replies. It appears to be isolated to my computer as other FF10 users haven't reported the issue.

    Greg: Dump all cookies, or just the ones associated with my installation of ATutor?

  • 2012-02-08 17:44:05

    Re: Firefox 10 issue?

    Should just need to delete all ATutor related cookies.

  • 2012-02-08 17:51:28

    Re: Firefox 10 issue?

    Hmmm... I don't know. I did that and the issue still persists. The problem is that a "Thickbox" (a Lightbox kind of thing) won't display.

    If you have any other ideas, I'd appreciate it. If not, I understand that this is not an ATutor support issue.

  • 2012-02-08 18:06:21

    Re: Firefox 10 issue?

    Not sure where to send you on that one. Try Google for FF10, javascript, bugs etc.

  • 2012-02-11 21:32:59

    Re: Firefox 10 issue?

    Lol... Apparently the issue was with FF 10.0. I was just updated to 10.0.1 and the issue is resolved.

    :)

  • 2012-02-14 16:32:53

    Re: Firefox 10 issue?

    Good to know.