+ Reply to Thread
Results 1 to 10 of 10

Thread: Group Management Page gone white

  1. #1

    Default Group Management Page gone white

    I downloaded Mindtouch_Core_9.02.2_VM.zip (VM image) yesterday, and setup some network environment for evaluation.
    It seemed working fine but Group Mng, Role Mng, and Configureation in control panel don't work. Those pages gone white and nothing displayed...

    My IE version is 7.0.5730.13 on Windows XP Japanese.

    When I try to view html source of the white page, I can get the html image.
    So, I saved it into my PC as a html file and open it, then I can see some dashboard images but not formatted correctly.

    And also found 2 links, Group and Add Group.

    When I click Group, the page went white again, but Add Group works correctly and the Add Group page was shown correctly.

    I cannot find the reason because I'm not good at php.
    But, I think group_management.php#listing() is suspicious...

    Please somebody tell me how to fix this matter.

    Thanks

  2. #2
    Join Date
    Oct 2007
    Location
    San Diego, CA
    Posts
    1,237

    Default

    sounds like your php memory limit is too low. see here: http://forums.developer.mindtouch.co...ead.php?t=5815

  3. #3

    Unhappy Thanks, but it doesnt work

    Thank you very much for you suggestion.

    I couldn't find that page since my keyword was "white", not "blank"...

    So, I referred to the page and changed php.ini as below;
    memory_limit = 512M
    But it doesn't work.

    Of course, I gathered E_ALL logs but no clue was found.

    I also checked http access log, and found that the response status of such kind of request is 200. Is this means not a php error?

    Hmm... I'll check the html source again.

  4. #4

    Default

    Bit of a silly thing, but did you remember to restart everything after making that change?

  5. #5

    Default

    By changing IE setting, it worked.

    Initially, Auto-detect of encoding of my IE7 was unchecked.
    Then I check it and open the Group Manegement page, it worked!
    Also the other unworked pages can be seen.

    I think this might be a problem of utf-8 encoded Japanese character.

    In my experiences, one white-space will be required between Japanese character and "<" (left bracket).

    So, I tried to add white-space in resources.ja.txt but it doesn't effect to html.

    If somebody is interested in this matter, please tell me how to add a space before left bracket.

    Thanks,

  6. #6
    Join Date
    Oct 2007
    Location
    San Diego, CA
    Posts
    1,237

    Default

    I haven't heard of that problem before. Have users in the japanese forums reported this issue?

    http://forums.developer.mindtouch.co...splay.php?f=23

  7. #7

    Thumbs up It's solved!

    I've tried to change resouces.ja.txt and got some result.

    Originally, line 412 of resources.ja.txt is as below;
    title.group_management.listing={xx xx xx}
    ({xx xx xx} is Japanese character.)

    And generated html was;

    <head>
    <title>MindTouch Deki - {zz zz zz} - {yy yy yy} - {xx xx xx}</title>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    Today, I've changed resources.ja.txt as;
    title.group_management.listing={xx xx xx}a
    (Added "a" at the end of the line.)

    Then generated html is;

    <head>
    <title>MindTouch Deki - {zz zz zz} - {yy yy yy} - {xx xx xx}a</title>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    Finally, this page is shown correctly in non-auto-detect mode!!

    I think, IE engine cannot define the tag "</title>" in the original html because it is just after Japanese character, and the following "<meta>" tag might be ignored.
    But now, by adding "a" between Japanese character and "</title>", it can be delimited by the engine.

    I'll report this matter to Japanese forum.

    P.S.
    I've tried to add white-space instead of "a", but it didn't work.
    White spaces might be removed automatically...
    Last edited by ieiri; 06-19-2009 at 04:40 AM.

  8. #8

    Default

    I found the point.

    Line 241 of {Mimdtouch-root}/www/deki/cp/templates/template.php

    ?></title>
    to

    ?> </title>
    Adding one white-space resolved this problem.

    Can anybody commit this patch?

  9. #9
    Join Date
    Oct 2007
    Location
    San Diego, CA
    Posts
    1,237

    Default

    Looks like a reasonable fix. Can you file a bug? http://bugs.developer.mindtouch.com

  10. #10

    Default

    Okay, I'll report this bug.

    Thanks for your follow-up.

+ Reply to Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts