Author |
Topic  |
|
PohlDan
Starting Member
5 Posts |
Posted - 11 July 2001 : 00:45:35
|
If your user base exceeds 32,000 members (or your members table begins generating member_id's higher than 32,000 for any reason), you will start experiencing the following errors:
1. Overflow errors when users post
2. Cint() vbscript errors in multiple areas including deletions of postings
3. Member posting counts not incrementing
To correct these problems, you must manually change the "CInt()" function to "Clng()" in lines that deal with members in the following files:
a. Inc_functions.asp b. Pop_delete.asp
What is happening is that the Snitz code assumes that you have less than 32,000 users. The code attempts to convert the member_id into an integer, and fails if the member_id is greater than approximately 32,000 - thereby generating the above errors. |
|
sijo
Starting Member
16 Posts |
Posted - 11 July 2001 : 06:08:25
|
I do not have greater than 32,000 members yet but can I make the alteration anyway in preparation of hopefully reaching that number?
|
 |
|
HuwR
Forum Admin
    
United Kingdom
20595 Posts |
Posted - 11 July 2001 : 06:37:48
|
quote:
I do not have greater than 32,000 members yet but can I make the alteration anyway in preparation of hopefully reaching that number?
Yes, it shouldn't be a problem
|
 |
|
bjlt
Senior Member
   
1144 Posts |
Posted - 11 July 2001 : 06:47:36
|
other than the members, are there other similiar problems? I'm not sure which line to edit.
TIA.
|
 |
|
SalmanKhana
Average Member
  
USA
961 Posts |
Posted - 11 July 2001 : 08:37:26
|
i'll be chillin out here till the development team makes a fix cuz i guess my members wont reach that number so soon. I hope they do 
|
 |
|
|
Topic  |
|