• Session Tracking

    By Brett van Gelder 2 decades ago

    I cannot get the session tracking to work. When I enable it I see a section of the domBulletin interface below the threads saying:



    The page cannot be found

    The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.



    ——————————————————————————–



    Please try the following:



    If you typed the page address in the Address bar, make sure that it is spelled correctly.



    Open the webhiker.ey.net home page, and then look for links to the information you want.

    Click the Back button to try another link.

    Click Search to look for information on the Internet.







    HTTP 404 - File not found

    Internet Explorer



    Any ideas? I believe I have followed all of the instructions.

    • Did you set up the session db

      By Michael Bourak 2 decades ago

      based on the template provided with domBulletin.

      you must point to this database in the domBulletin configuration

      • Yes...

        By Brett van Gelder 2 decades ago

        … what is interesting is that if I go to the URL that is referenced in the domBulletin application (http://server.domain.com/domBulletinsession.nsf/StatsCategory?ReadForm) then I still get a page not found. I can, however, navigate to other design elements. The issue seems to be related to something in the first computed field:



        Lookup:=@DbLookup("Notes":"NoCache" ; "":"" ; "(LookupGuestsByCategoryFlat)" ; Filter; 2);

        Pseudos := @Implode(@Unique(@Trim(@Replace(Lookup ; "null" ; ""))) ; ", ");



        @If(Lookup!="" ; @Text(@Elements(Lookup)) +" "+@If(Pseudos!="" ; " ("+Pseudos+"…)
        " ; "") ; "")



        I view referenced above excludes anything but anonymous logins….

        • Strange...

          By Michael Bourak 2 decades ago

          Are u ACL ok ?

          Maybe also turn OFF the http friendly error message from IE so we can know what domino sends as error message (Tools/Options/Advance…)



          Ping me via aim/yahoo for further help : mbourak

          • Interesting...

            By Brett van Gelder 2 decades ago

            I turned OFF friendly http messages and the problem has disappeared. If it turn ON friendly HTTP messages it is back. When turned off I do not see anything else in this area of the screen though. Advice?

        • same issue

          By Christian Brandlehner 2 decades ago

          Hi!



          I can see the same issue with one of my databases. This can be caused by having more than one domBulletin database on the same server. The database creates sort of a profile document for each user. If your cookie points to a not existing profile document, you will see this issue.

          Deleting all cookies for your domain may fix the problem.



          Christian

          • By Jonathan Torres 2 decades ago

            I just setup dombulletin 1.1a and I have the same issue.



            On the main/home page I get the activity page. But when I go to any of the categories (views) it gives me the "page not found."

            • Fixed

              By Jonathan Torres 2 decades ago





              Removing the Computed Value that has this code from the Form "StatsCategory":

              ——–

              Lookup:=@DbLookup("Notes":"NoCache" ; "" ; "(LookupGuestsByCategoryFlat)" ; Filter; 2);

              Pseudos := @Implode(@Unique(@Trim(@Replace(Lookup ; "null" ; ""))) ; ", ");

              @If(Lookup!="" ; @Text(@Elements(Lookup)) +" "+@If(Pseudos!="" ; " ("+Pseudos+"…)
              " ; "") ; "")

              ——–



              Seems to fix it.



              Im guessing because I do NOT allow anonymous access there are no Guests. Guess that DbLookup is failing and causing that page to not load.