How many searches done on a website?
-
Hi guys Was wondering if there were any articles/links to find out how it is possible to see how many searches are done on a website and what they are searching for? Tried looking but most are 3rd party tools which is not really an option for me. Any help would be greatly appreciated. Thanks NL
-
Hi guys Was wondering if there were any articles/links to find out how it is possible to see how many searches are done on a website and what they are searching for? Tried looking but most are 3rd party tools which is not really an option for me. Any help would be greatly appreciated. Thanks NL
You can buy Live Stats, awesome to check the traffic in your website. Cheers Al
-
You can buy Live Stats, awesome to check the traffic in your website. Cheers Al
Nice looking thing but i need something that actually monitors whats happening on the site. For eg. There is a search function that talks to the DB and returns results. Need to know what they are searching for. I dont think Live Stats can do that can it?
-
Nice looking thing but i need something that actually monitors whats happening on the site. For eg. There is a search function that talks to the DB and returns results. Need to know what they are searching for. I dont think Live Stats can do that can it?
Then you are going to have to create a Log table inside your SQL to log every single page and SQL statement.
-
Then you are going to have to create a Log table inside your SQL to log every single page and SQL statement.
So I assume then that when a search is done on the page aside from doing the select statement that returns the results, I'll have to do an INSERT INTO statement that logs the info into some log table. Does that sound about right?
-
So I assume then that when a search is done on the page aside from doing the select statement that returns the results, I'll have to do an INSERT INTO statement that logs the info into some log table. Does that sound about right?
That's actually what I would do, make sure you grab the QueryString and store it with the IP. Good luck Al