Salve,
ho provato ad aggiornare il database del mio Snitz Forum da Access a MySql seguendo una guida, tutto OK.
Solo che quando clicco sui vari forum appare questo messaggio di errore:

Microsoft VBScript runtime error '800a000d'

Type mismatch

/forum/forum.asp, line 296
La stringa di codice a cui si riferisce è questa:
Codice PHP:
If iPageTotal 0 then
inttotaltopics 
iPageTotal
maxpages 
= (iPageTotal strPageSize 
Il contesto più ampio è questo:
Codice PHP:
## Forum_SQL - Get the total pagecount
    
strSql1 "SELECT COUNT(TOPIC_ID) AS PAGECOUNT "

    
set rsCount my_Conn.Execute(strSql1 strSql2 strSql3)
    
iPageTotal rsCount(0).value
    rsCount
.close
    set rsCount 
nothing

    
If iPageTotal 0 then
        inttotaltopics 
iPageTotal
        maxpages 
= (iPageTotal strPageSize )
        if 
iPageTotal mod strPageSize <> 0 then
            maxpages 
maxpages 1
        end 
if
        if 
iPageTotal < (strPageSize 1then
            intGetRows 
iPageTotal
        
elseif (mypage strPageSize) > iPageTotal then
            intGetRows 
strPageSize - ((mypage strPageSize) - iPageTotal)
        else
            
intGetRows strPageSize
        end 
if
    else
        
iPageTotal 0
        inttotaltopics 
iPageTotal
        maxpages 
0
    end 
if 
Lo stesso errore me lo da quando clicco su utenti e topic:
Microsoft VBScript runtime error '800a000d'

Type mismatch

/forum/members.asp, line 197


Microsoft VBScript runtime error '800a000d'

Type mismatch

/forum/topic.asp, line 347
corrispondente alle linee:
Codice PHP:
if iPageTotal 0 then
maxpages 
= (iPageTotal strPageSize 
Chi mi può aiutare? Ho letto che l'errore potrebbe non dipendere dal database o dall'applicazione, ma dalle impostazione del server, dalla versione MDAC (Microsoft Data Access Components) installata sui server Aruba che non e' aggiornata.
Si veda: http://support.microsoft.com/default...b;EN-US;219160

Il forum è in hosting su Aruba con server Windows IIS e DB MySql aggiuntivo.

Grazie