Announcement

Collapse
No announcement yet.

search logs?

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

    search logs?

    Hi,

    Is there any way to save the searches that people make when they search on your site with Actinic? A search log perhaps?

    Cheers for any help,

    Paul

    #2
    See the knowledge base

    http://knowledge.actinic.com/users/k...nges.html#a857

    Comment


      #3
      Cheers, thought I'd searched that properly..........

      Comment


        #4
        Hi,

        Just thought I'd post a followup to this as I think I've found an error. In the Knowlage base it says the following:

        - Edit SearchScript.pl with a text editor such as Notepad.
        - Search for 'sub SearchText'.
        - Scroll down to the line…

        $$psSearchString =~ s/s+/ /go;

        - add the following after the above line…

        open (LOGFILE, ">>" . $sPath . "search.log");
        print LOGFILE $$psSearchString, "
        ";
        close LOGFILE;

        - Save the file and update the site.



        However there is no such line as:
        $$psSearchString =~ s/s+/ /go;

        There is however a line that says:
        $$psSearchString =~ s/\s+/ /go;

        Is this the line that is being refered to?

        Cheers,

        Paul

        Comment


          #5
          Hi again (is there anyway of modding your own posts on this forum?)

          Also, in the knowlage base, although this is meant to be a solution for v6 it actually only works for v5, the SearchScript.pl for v6 is quite different to the one described in the knowlage base.

          Paul

          Added:
          For anyone else that has this problem I've just found the solution to v6 in a different place on the same page.

          Comment


            #6
            Thanks for the heads up here - I'll update the knowledge base.

            With regards to editing - you should be able to edit posts up to 10 mins after you have posted.

            Comment

            Working...
            X