sto tentando di installare lo snitz forum.![]()
questi sono gli errori. ho la sensazione che la causa sia sempre la stessa.
premetto che conosco molto poco ASP.
errori:
Microsoft JET Database Engine error '80040e10'
No value given for one or more required parameters.
/snitzforum/admin_forums.asp, line 243
Linea 243:
set drs = my_conn.execute(strsql)
------------------------------------
Microsoft JET Database Engine error '80040e37'
The Microsoft Jet database engine cannot find the input table or query 'FORUM_A_TOPICS'. Make sure it exists and that its name is spelled correctly.
/snitzforum/admin_forums.asp, line 366
Linea 366:
set drs = my_conn.execute(strsql)
----------------------------------------------------
Microsoft JET Database Engine error '80040e10'
No value given for one or more required parameters.
/snitzforum/admin_forums_schedule.asp, line 148
linea148:
set drs = my_conn.execute(strsql)
----------------------------
Microsoft JET Database Engine error '80040e10'
No value given for one or more required parameters.
/snitzforum/admin_forums.asp, line 149
Linea 149:
set drs = my_conn.execute(strsql)
-----------------------
Microsoft VBScript compilation error '800a0400'
Expected statement
/snitzforum/admin_compactdb.asp, line 84
End if
^
Codive:
<%
End If
else
my_conn.close
strTempConnString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & Server.MapPath("tools/Snitz_compacted.mdb")
if BackupDB(strForumDB) then
set jro = server.createobject("jro.JetEngine")
jro.CompactDatabase strConnString, strTempConnString
if err <> 0 then
bError = True
response.write "Error Compacting:
" & err.description
else
response.write "
<div align=""center"">Compattazzione Database Riuscita!.</div>"
end if
if not bError then
if not RenameFile( strTempFile, strForumDB) then
response.write "Errore Rimpiazzato:
" & err.description
else
response.write "
<div align=""center"">Database Rinominato con successo.</div>
"
end if
end if
else
response.write "
<div align=""center"">Inpossibile tornare al Database</div>
"
end if
set my_Conn = Server.CreateObject("ADODB.Connection")
my_Conn.Open strConnString
End If
End if
%>

Rispondi quotando