| Author |  Topic  | 
              
                | mvsouzaStarting Member
 
 
 
                3 Posts | 
                    
                      |  Posted - 15 April 2002 :  14:01:19   
 |  
                      | Thanks, boy 
 i was
  !!! 
 
 
 
 |  
                      |  |  | 
              
                | NathanHelp Moderator
 
      
 
                USA7664 Posts
 |  | 
              
                | nomad_2kJunior Member
 
   
 
                United Kingdom173 Posts
 | 
                    
                      |  Posted - 15 April 2002 :  18:44:43   
 |  
                      | Could I make a suggestion. When you view the active user panel as a guest and there are no members only it justs says 'Members Online:'. It doesn't look right, if you add 
 strActiveMemberList = "None"
 
 at line 57 of inc_activeusers.asp it will say 'Members Online: None' if there are no members online. Nothing big just makes it look nicer.
 
 
  Good things come to those who wait.
 http://www.freeasphost.co.uk/evolution/
 |  
                      |  |  | 
              
                | RichardKinserSnitz Forums Admin
 
      
 
                USA16655 Posts
 | 
                    
                      |  Posted - 15 April 2002 :  19:43:55   
 |  
                      | Nathan, 
 found 2 small typos in the code to add to inc_profile.asp
 
 you have trDefaultFontFace instead of strDefaultFontFace on the 6th and 9th line of code that is to be added to inc_profile.asp
 
 also, in admin_config_activeusers.asp
 
 this line:
 
 
       Application(strCookieURL & "ConfigLoaded") 
 should be:
 
 
       Application(strCookieURL & "ConfigLoaded") = "" 
 |  
                      |  |  | 
              
                | NathanHelp Moderator
 
      
 
                USA7664 Posts
 | 
                    
                      |  Posted - 15 April 2002 :  22:25:39     
 |  
                      | Thanks nomad and Richard, I have fixed these small issues and uploaded 4.0.05 
 
  Nathan Bales Snitz Exchange | Do's and Dont's
 |  
                      |  |  | 
              
                | ImageAverage Member
 
    
 
                Canada574 Posts
 | 
                    
                      |  Posted - 16 April 2002 :  11:17:14     
 |  
                      | Nathan 
 I have this error when a member wants to register
 
 Microsoft OLE DB Provider for ODBC Drivers erreur '80040e14'
 
 [Microsoft][Pilote ODBC Microsoft Access] The consequentive number of the request should coincide with the number of fields destination.
 
 /skin/register.asp, ligne 303
 
 
 end if
 strSql = strSql & ", ''"
 end if
 
 strSql = strSql & ")"
 
 my_Conn.Execute (strSql) <-- 303
 
 docount
 
 regHomepage = ""
 
 if lcase(strEmail) = "1" then
 
 Image
 
 ~ Image Forum 2001 ~
 |  
                      |  |  | 
              
                | nomad_2kJunior Member
 
   
 
                United Kingdom173 Posts
 | 
                    
                      |  Posted - 16 April 2002 :  11:28:13   
 |  
                      | You've missed one of the lines in the install instructions. Go back and check that you've added both blocks of code for register.asp 
 
  Good things come to those who wait.
 http://www.freeasphost.co.uk/evolution/
 |  
                      |  |  | 
              
                | ImageAverage Member
 
    
 
                Canada574 Posts
 | 
                    
                      |  Posted - 16 April 2002 :  12:08:41     
 |  
                      | Thank you nomad 2k 
 Here is the error that I had made
 
 if strQuote = "1" then
 strSql = strSql & ", '" & ChkString(Request.Form("Quote"),"message") & "'"
 else
 if strAUAnon = "1" then
 strSql = strSql & ", '" & ChkString(Request.Form("AUHide"),"") & "'"
 else
 strSql = strSql & ", '1'"
 end if
 strSql = strSql & ", ''"
 end if
 
 strSql = strSql & ")"
 
 my_Conn.Execute (strSql)
 
 
 
 
 And I changed for this
 
 
 if strQuote = "1" then
 strSql = strSql & ", '" & ChkString(Request.Form("Quote"),"message") & "'"
 else
 strSql = strSql & ", ''"
 end if
 if strAUAnon = "1" then
 strSql = strSql & ", '" & ChkString(Request.Form("AUHide"),"") & "'"
 else
 strSql = strSql & ", '1'"
 end if
 
 strSql = strSql & ")"
 
 my_Conn.Execute (strSql)
 
 Thank you nomad 2k
 
 ~ Image Forum 2001 ~
 |  
                      |  |  | 
              
                | ImageAverage Member
 
    
 
                Canada574 Posts
 | 
                    
                      |  Posted - 16 April 2002 :  13:10:24     
 |  
                      | But now I have this error in the homepage 
 Microsoft VBScript runtime error '800a000d'
 Type mismatch: 'arrAM(...)'
 
 /image4/skins/inc_activeusers.asp, line 66
 
 
  
 ~ Image Forum 2001 ~
 |  
                      |  |  | 
              
                | ImageAverage Member
 
    
 
                Canada574 Posts
 | 
                    
                      |  Posted - 16 April 2002 :  14:27:58     
 |  
                      | quote:
 Nathan,
 
 found 2 small typos in the code to add to inc_profile.asp
 
 you have trDefaultFontFace instead of strDefaultFontFace on the 6th and 9th line of code that is to be added to inc_profile.asp
 
 also, in admin_config_activeusers.asp
 
 this line:
 
 
       Application(strCookieURL & "ConfigLoaded") 
 should be:
 
 
       Application(strCookieURL & "ConfigLoaded") = "" 
 
 
 
 and
 
 this line: 3
 
 size=""" & strDefaultFontSize & """" & fLang(strLangMOD_Ls3kAU_04000) & "
 
 
 should be:
 
 size=""" & strDefaultFontSize & """>" & fLang(strLangMOD_Ls3kAU_04000) & "
 
 ~ Image Forum 2001 ~
 |  
                      |  |  | 
              
                | RascoAdvanced Member
 
      
 
                Germany3192 Posts
 | 
                    
                      |  Posted - 16 April 2002 :  16:24:32   
 |  
                      | Will download it tomorrow for the German translation  
 
 |  
                      |  |  | 
              
                | ImageAverage Member
 
    
 
                Canada574 Posts
 | 
                    
                      |  Posted - 18 April 2002 :  09:27:01     
 |  
                      | Nathan, it is normal that in the active_users that there are two following </tr>. 
 at the line  138 et 139
 
 and at the line  196 et 197
 
 ~ Image Forum 2001 ~
 |  
                      |  |  | 
              
                | NathanHelp Moderator
 
      
 
                USA7664 Posts
 |  | 
              
                | milkiJunior Member
 
   
 
                Israel320 Posts
 | 
                    
                      |  Posted - 22 April 2002 :  05:00:11     
 |  
                      | Nathan it will work if i download it ? our he have bugs ?
 becose i wont the new version and i see ther are bugs !
 so if need to update the file tell me our i can doenload it ... ?
 tanks !
 
 
 |  
                      |  |  | 
              
                | NathanHelp Moderator
 
      
 
                USA7664 Posts
 | 
                    
                      |  Posted - 22 April 2002 :  11:43:42     
 |  
                      | There are currently at liest 2 bugs and possibly 3 in the mod.  I will release an update when I have confirmed the third. 
 It will not work on a version 3.1
 
 
  Nathan Bales Snitz Exchange | Do's and Dont's
 |  
                      |  |  | 
              
                
                |  Topic  |  |