•  
      request #7357 Blank page while browsing svn repository
    Infos
    #7357
    Nicolas Terray (nterray)
    2014-08-20 08:00
    2014-08-19 14:10
    7362
    Details
    Blank page while browsing svn repository
    When I browse the svn repository I got a blank page without any error in error_log.
    SCM/Subversion
    development
    CentOS 5 + php53
    • [ ] enhancement
    • [ ] internal improvement
    Empty
    Stage
    Empty
    Closed
    2014-08-20
    Attachments
    Empty
    References
    Referencing request #7357

    Follow-ups

    User avatar

    This comes from the fact that while viewvc was parsing /etc/tuleap/conf/local.inc, it encountered a syntax error:

    Traceback (most recent call last):
      File "/var/www/cgi-bin/viewvc.cgi", line 57, in ?
        import viewvc
      File "/usr/share/viewvc/lib/viewvc.py", line 62, in ?
        import include
      File "/usr/share/codendi/src/www/../utils/include.py", line 58, in ?
        load_local_config(db_include)
      File "/usr/share/codendi/src/www/../utils/include.py", line 45, in load_local_config
        exec n in globals()
      File "<string>", line 1
        sys_max_size_upload = 4194304000;// 67108864

    By editing local.inc to add a space between the semicolon and the comment, all went fine:

    # Before
    $sys_max_size_upload = 4194304000;// 67108864;
    # After
    $sys_max_size_upload = 4194304000; // 67108864;

     


    • Status changed from New to Closed
    • Close date set to 2014-08-20