User login

MetaTraffic 2.0 Boxshot

Stop showing statistics

Posted by Ahmad [October 16, 2003]

Hi All,
I have installed MateTraffic before 1 month and about 2 weeks it's stop showing statistics, Frist time I thought this problem because I didn't purchase the full version .
I purchased the MateTraffic and install it again with new DB but the problem still faced to me .
Ahmad

Stop showing statistics

Hi All!
Sorry, for my english... :oops:
I've almost same problem. I've installed MetaTraffic and it work so fine 2 months, but when I changed database name and path to another directory MetaTraffic stop count my entries. Entries another users count is perfectly.
I'm stuck. I try different variations, but nothing change.
File config.asp - is correct. I check my settings in MetaTraffic directory and IIS - all fine. I using MetaTraffic v1.301 on Non-Commercial Site in Intranet. I read FAQ first, but not find answer for my question.
Please answer and help me...
Thanks!

Stop showing statistics

You will need to provide more detailed information. What type of logging are you using (javascript, asp, etc.)? If you are using javascript logging, check your web logs for any error messages that are occuring.

Regards,
~Chad

Stop showing statistics

Chad,

I'm using ASP logging with the defualt MS Access database (db.mdb). And I didn't enable javascript logging.

-Robert

Stop showing statistics

Good day,

There are only 2 places to adjust the database and script directory.

In "config.asp" : (Database Specification)

strDatabaseName = "db.mdb"
strDatabaseLocation = "/metatraffic"

In "track.js" : (Script Specification)

var scriptlocation = "/metatraffic/track.asp";

If your scripts or your database are not located as per the defaults, you will need to adjust them accordingly.

If your include for the "track.asp" script is at the bottom of your page and you have an error, a response.redirect or a response.end in another script prior to it on the page, then the page may not be logged as expected.

If the utility was tracking entries at any point of time, then stopped suddently, obviously something was added on your page above the point at which the tracking would normally take place.

Check for any addition that may prevent all scripts of the page to run as expected.

You may add an "alert('Logging');" in your track.js script and a
'Response.Write("Logging")' in track.asp. If you don't see the messages, you'll know for sure that the logging is not taking place because something else prevented the execution of the code up to that point.

HTH