Announcement

Collapse
No announcement yet.

Initialization ... Please wait...

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Initialization ... Please wait...

    Hi,

    I have installed open-xchange using the community installer on Ubuntu 7.04 and all seemed to go pretty well once I got the .sh getting stable versions of some parts from the cvs repository.

    When I try to log in though everything seems to go well until the "Loading: bar gets to 90% saying "Initialization ... Please wait ...

    I have tried to make /etc/apache2/conf.d/ox.conf look like the one in the wiki and when I look at /var/log/open-xchange/open-xchange.log.0 I keep getting the following types of logs repeating:

    Code:
    Dec 27, 2007 6:15:36 PM com.openexchange.database.Pools run
    FINEST: Starting cleaner run.
    Dec 27, 2007 6:15:36 PM com.openexchange.database.Pools run
    FINEST: Cleaner run ending.
    Dec 27, 2007 6:15:36 PM com.openexchange.pooling.ReentrantLockPool run
    FINEST: Starting cleaner run.
    Dec 27, 2007 6:15:36 PM com.openexchange.pooling.ReentrantLockPool run
    FINEST: Clean run ending. Time: 0
    Dec 27, 2007 6:15:37 PM com.openexchange.push.udp.PushOutputQueue action
    FINE: get push objects from queue: 0
    Dec 27, 2007 6:15:38 PM com.openexchange.tools.ajp13.AJPv13Watcher$Task run
    FINEST:
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    AJP-Watcher's run done:     Waiting=0    Running=0    Exceeded=0    Total=100
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    and one of these in /var/log/apache2/mod_jk.log for each time I try to view the page:
    Code:
    [Thu Dec 27 18:08:19 2007] ajp13_worker 192.168.6.131 0.110397
    [Thu Dec 27 18:08:19 2007] ajp13_worker 192.168.6.131 0.003976
    My worker.properties file is like this:

    Code:
    workers.java_home=/usr/lib/jvm/java-1.5.0-sun
    ps=/
    
    worker.list=ajp13_worker
    worker.ajp13_worker.port=8009
    worker.ajp13_worker.host=localhost
    worker.ajp13_worker.type=ajp13
    while my /etc/apache2/conf.d/ox.conf looks like this:


    Code:
    <IfModule mod_jk.c>
    JkWorkersFile /etc/libapache2-mod-jk/workers.properties
    JkLogFile     /var/log/apache2/mod_jk.log
    JkLogLevel    error
    JkLogStampFormat "[%a %b %d %H:%M:%S %Y] "
    JkRequestLogFormat     "%w %V %T"
    JkMount /ajax/* ajp13_worker
    JkMount /servlet/* ajp13_worker
    JkMount /infostore ajp13_worker
    JkMount /infostore/ ajp13_worker
    JkMount /infostore/* ajp13_worker
    JkOptions +ForwardURICompatUnparsed
    </IfModule>
    From the forum I get the feeling it's a mod_jk problem, but I'm not sure. Any ideas?

  • #2
    Hi,

    for my feeling this is a javascript problem with the GUI. please install firebug and check if there are any errors reported while logging in. If it were modjk/ox-server related you'd get a HTTP404 or 503 Error while logging in. The "90%" indicator only shows up if the credentials for the user are already checked which implies a working apache->mod_jk->ox->database connection.

    Greetings.

    Comment


    • #3
      I am also seeing this same problem. Initialization stuck at 90%. This occurs during 'OX_Login' execution

      here is my dump from firebug.... there are 2 errors:

      GET */ajax/config/?session=*
      (579ms)concat_init.js (line 1384)
      ComboBoxSpecial is not defined
      (no name)(Object enable_action=true aMonthNames=[12])ox.html (line 696)
      cMiniCalendar(null, div#container_mini.calminimainCSS, fn_minicalendar_action(), true, "mini_subcontainer_0", div#header_mini_month, div#header_mini_year, Thu Dec 27 2007 13:38:58 GMT-0500 (EST), undefined)ox.html (line 567)
      cMini3XCalendar(fn_minicalendar_action(), null)ox.html (line 286)
      loadMiniCalendar()ox.html (line 33)
      triggerEvent()concat_init.js (line 137)
      loggedIn()concat_init.js (line 1865)
      final_resize()concat_init.js (line 4233)
      (no name)()concat_init.js (line 240)
      [Break on this error] undefined

      and then


      PUT */ajax/multiple?session=*
      (441ms)concat_init.js (line 1384)
      popupwindow has no properties
      addOnClose(undefined, function())ox.html (line 1226)
      (no name)()ox.html (line 2064)
      triggerEvent()concat_init.js (line 137)
      (no name)(Object data=Object)concat_init.js (line 1937)
      callback()concat_init.js (line 1424)
      [Break on this error] undefined

      Comment


      • #4
        Hi,

        With firebug I get the following error:

        Code:
        OXTaskHover is not defined
        makeGrid("listeTasks")ox.html (line 772)
        (no name)()ox.html (line 547)
        triggerEvent()concat_init.js (line 137)
        final_resize()concat_init.js (line 4232)
        (no name)()concat_init.js (line 240)
        [Break on this error] undefined
        Thank you for the reply!

        Comment


        • #5
          Hi,

          what branch of the open-xchange-gui repository did you checked out?
          Please try bf_6_4 or bf_6_4_2

          Greetings

          Comment


          • #6
            I've tried it with both 6_4 and 6_4_2... the above error is with 6_4_2

            Comment


            • #7
              Did you clear your browsers cache after changing the gui on the server? This is really really important because the javascript code is cached by the browser and may cause such problems too.

              Comment


              • #8
                Hi,

                I used:

                Code:
                cvs -Q -d:$CVS_URL co -r bf_6_4 open-xchange-gui

                I used bf_6_4 for all except:

                Code:
                cvs -Q -d:$CVS_URL co open-xchange-admin-console-ee
                cvs -Q -d:$CVS_URL co json-jdk15
                cvs -Q -d:$CVS_URL co open-xchange-admin-gui-ee
                Perhaps some of these need to be bf_6_4. Is bf_6_4_2 more recent?

                Thanks for the help.

                Comment


                • #9
                  Hmmm... still seems to be stuck at 90% with cache cleared...

                  Comment


                  • #10
                    I tried installing 6_4_2 and still it seems to be stuck at 90% when installing.

                    There was a mistake in cyrus.conf which wouldn't allow adding of a user, but changing to this allowed mw to add the user:
                    Code:
                    sieve           cmd="/usr/lib/cyrus/bin/timsieved" listen="localhost:sieve" prefork=0 maxchild=100
                    However I still can not log in. Does anyone know if this is a "user" problem or if it is likely to be solved any time?

                    Vielen Dank.

                    Comment


                    • #11
                      It's working! Don't ask me how, but I can get in now... It is 6_4_2 and the manually added user works.

                      Comment


                      • #12
                        same here
                        after updating with installer script (and workaround) on current stable the frontend gets stuck at 90% when login in. after clearing cache and restarted firefox and use of browser that never logged in any ox at all before...

                        firebug means:
                        Code:
                        node has no properties:
                        addHideTreeNode(undefined, div#contentarea, undefined)nodemapping.js (line 6)
                        rebuildTree()nodemapping.js (line 85)
                        triggerEvent()concat_init.js (line 137)
                        final_resize()concat_init.js (line 4338)
                        (no name)()concat_init.js (line 240)
                        [Break on this error] hidetreeelements[node.id]={ "node" : node , "parent" : parent };
                        Last edited by toastbrot; 02-11-2008, 03:52 PM.

                        Comment


                        • #13
                          Got the same problem. No solution for that until now?

                          Comment

                          Working...
                          X