Ruirib,
Yes the new error was a result of the changes to the DB. It is fine now as there was a fix as listed:
quote:
Originally posted by masterao
quote:
Originally posted by Rasyr
where did you make all these changes at?
I made the following change in the function chkAURecord(intTotalActiveUsers), a part of the code that is added in inc_func_common.asp for active users 4. There is two instances where CInt is to be added:
Look for
if intTotalActiveUsers > intAURecrod then 'We have a new record!!! :)
and change to
if CInt(intTotalActiveUsers) > CInt(intAURecrod) then 'We have a new record!!! :)
Then look for
if intOldRecrod > intTotalActiveUsers then
and change it to
if CInt(intOldRecrod) > CInt(intTotalActiveUsers) then
The other change is made in the database, in table CONFIG_NEW. The change should be for the C_VALUE (from 0) to 00000000000000, were C_VARIABLE is strAURecordDate.