ATutor

Learning Management Tools







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


Content not showing Up


  • 2011-01-08 15:00:34

    Content not showing Up

    Hello,
    I am an university student and have to hold a lecture about eLearning in one of my courses.
    However, I have decided to use ATutor as an example and i wanted to give the Course also in this ATutor system, so that all teh other students get to know an eLearning Platform (of course many of them have already seen and used one, they might get a better idea of what I am talking about when they see it live in ATutor).

    Installation went fine, and now I am in the stage of getting used to the system myself and I realised something seems wrong with my installation.

    I can set up courses, I can create folders and upload files into the folders, all seems fine. But I wanted to create a Page with Informations about the Course, went fine too, got to the editor. Wrote some text and saved.

    After that, all that shows up is the title, not the text I wrote. When i go back to edit the Page, the text is in the Editor, so it has been saved, but it simply doesn't show upwhen viewing the page.

    Thanks in advance, I hope the Problem is easily resolvable.

    If you are asking for help, provide lots of detail so problems can be reproduced.

    ATutor Version:
    2.0.2(r10589 - 2010-12-21 16:47:09). Check Latest Version.
    PHP Version:
    5.1.6
    MySQL Version:
    5.0.77
    OS:
    Linux 2.6.9-023stab052.4-smp

  • 2011-01-08 16:20:53

    Re: Content not showing Up

    I'm unable to reproduce this on any of our systems. My guess is it's a browser related issue. Try a different browser. Also see if you can reproduce the problem on our demo site:

    http://www.atutor.ca/atutor/demo.php

  • 2011-01-08 17:09:58

    Re: Content not showing Up

    It seems to me not to be a browser or template error, tried chrome, firefox and ie, all the same.

    your demo site works well for me.

  • 2011-01-08 17:41:08

    Re: Content not showing Up

    Switch themes and see if there's a difference.

    Try without using the visual editor. using plain HTML or text.

    Try a fresh install.

    Try a fresh install on a different system.

  • 2011-01-24 20:01:08

    Re: Content not showing Up

    Operating system ATutor is installed on - Debian 4
    ATutor version -Apache/2.2
    Patch #s applied - Fresh install of 2.02
    ATutor theme name - default
    PHP version - 5.2.13
    MySQL version - 5

    I am having the same problem. The production version of our site works (Atutor v 2.0 all patches except 3and 9) but after copying all files and DB to a new server the title of each page shows but the content does not. So, I did a fresh install of 2.02 onto the new server and it doesn't show the content either.

    I poked around and found that the content will show if I comment out line 210 in content.php it:

    //$content = format_content($content, $content_row['formatting'], $glossary);

    But, the Glossary, Course Properties and Announcements no longer work.

  • 2011-01-25 04:00:03

    Re: Content not showing Up

    Might be a problem related to PHP or MySQL version. What are their versions on the old server?

  • 2011-01-25 07:48:36

    Re: Content not showing Up

    The versions are pretty close.

    This works:
    ATutor Version: 2.0
    PHP Version: 5.2.14
    MySQL Version: 5.0.91-log
    OS: Linux 2.4.21-63.ELsmp


    This doesn't:
    ATutor Version: 2.0. Check Latest Version.
    PHP Version: 5.2.13
    MySQL Version: 5.0.77-log
    OS: Linux 2.6.18-194.26.1.el5

  • 2011-01-27 11:18:12

    Re: Content not showing Up

    As a follow up to this issue I have verified that there is a problem with the configuration that I mentioned above. Specifically, I have traced this issue to a line in the \include\lib\output.inc.php file in the make_clickable method that makes email addresses clickble URLs. If I comment out this line of code then everything else works fine:


    [php]
    // convert email address to clickable URL that pops up "send email" interface with the address filled in
    $text = preg_replace('/(?|<a href="mailto[\s]*:[\s]*([_a-zA-Z0-9\-]+(\.[_a-zA-Z0-9\-]+)*'.'\@'
    .'[_a-zA-Z0-9\-]+(\.[_a-zA-Z0-9\-]+)*'.'(\.[a-zA-Z]{1,6})+)">(.*)<\/a>'
    .'|((((([_a-zA-Z0-9\-]+(\.[_a-zA-Z0-9\-]+)*'.'\@'
    .'[_a-zA-Z0-9\-]+(\.[_a-zA-Z0-9\-]+)*'.'(\.[a-zA-Z]{1,6})+))))))/i',
    "<a href=\"mailto:\\1\">\\5</a>",
    $text);

    [/php]