Snitz Forums 2000
Snitz Forums 2000
Home | Profile | Register | Active Topics | Members | Search | FAQ
Username:
Password:
Save Password
Forgot your Password?

 All Forums
 Help Groups for Snitz Forums 2000 Users
 Help: General / Previous versions
 compacting
 New Topic  Topic Locked
 Printer Friendly
Next Page
Author Previous Topic Topic Next Topic
Page: of 2

Croatia
New Member

53 Posts

Posted - 03 July 2005 :  16:30:42  Show Profile  Visit Croatia's Homepage
after compacting my forum doesn't work.
Compacted database is in folder: www/cgi-bin/forum/tools/Snitz_compacted.mdb

my original database was in folder www/fdp

what do to forum works?

forum link: http://www.kohorta.net/cgi-bin/forum/default.asp

Croatia
New Member

53 Posts

Posted - 03 July 2005 :  17:18:11  Show Profile  Visit Croatia's Homepage
now I'm upload back old database and forum work, but how compact database, 65MB is to big and forum is very slow (page generated 10-70sec)..

Edited by - Croatia on 03 July 2005 17:47:09
Go to Top of Page

ruirib
Snitz Forums Admin

Portugal
26364 Posts

Posted - 03 July 2005 :  19:59:46  Show Profile  Send ruirib a Yahoo! Message
You should have just renamed Snitz_compacted.mdb to the normal name of your mdb file. The compacting process should have done it automatically, though. Did you get any error message?


Snitz 3.4 Readme | Like the support? Support Snitz too
Go to Top of Page

Croatia
New Member

53 Posts

Posted - 04 July 2005 :  09:44:50  Show Profile  Visit Croatia's Homepage
yes, i moved Snitz_Compacted.mdb to folder where is my DB, and renamed to normal name of mdb and then forum doesn't work, this error is on default.asp :

Microsoft JET Database Engine error '80004005'

Could not delete from specified tables.

/cgi-bin/forum/inc_func_common.asp, line 161


Well i don't remember if there was any error message during the compacting process... :(
Go to Top of Page

ruirib
Snitz Forums Admin

Portugal
26364 Posts

Posted - 04 July 2005 :  09:57:37  Show Profile  Send ruirib a Yahoo! Message
Keep a backup of the normal database (the compacting process does it as well) and try to compact it again. Pay attention to error messages and post back for help if you need it.


Snitz 3.4 Readme | Like the support? Support Snitz too
Go to Top of Page

Croatia
New Member

53 Posts

Posted - 04 July 2005 :  12:06:06  Show Profile  Visit Croatia's Homepage
do you reccomended me to change something in admin_compacted.asp before comapting?
i read topic http://forum.snitz.com/forum/topic.asp?TOPIC_ID=31540

i ask this because is very slow to downlaod and upload my original database few times.
Go to Top of Page

ruirib
Snitz Forums Admin

Portugal
26364 Posts

Posted - 04 July 2005 :  12:44:05  Show Profile  Send ruirib a Yahoo! Message
If the topic applies to your situation, then change whatever you need to change.


Snitz 3.4 Readme | Like the support? Support Snitz too
Go to Top of Page

Croatia
New Member

53 Posts

Posted - 04 July 2005 :  12:49:44  Show Profile  Visit Croatia's Homepage
I think that may be problem, but i'm not sure before new compacting.. and I don't unterstadt in what would I change Server.MapPath(tools/Snitz_compacted.mdb") in my case?
Go to Top of Page

ruirib
Snitz Forums Admin

Portugal
26364 Posts

Posted - 04 July 2005 :  14:08:02  Show Profile  Send ruirib a Yahoo! Message
Is your database located in the tools folder?


Snitz 3.4 Readme | Like the support? Support Snitz too
Go to Top of Page

Croatia
New Member

53 Posts

Posted - 04 July 2005 :  14:08:27  Show Profile  Visit Croatia's Homepage
no, it is www.kohorta.net/fpdb/Kohorta_Online.mdb

Edited by - Croatia on 04 July 2005 14:09:49
Go to Top of Page

ruirib
Snitz Forums Admin

Portugal
26364 Posts

Posted - 04 July 2005 :  14:32:48  Show Profile  Send ruirib a Yahoo! Message
So change it to have the same look as the connection string in config.asp.


Snitz 3.4 Readme | Like the support? Support Snitz too
Go to Top of Page

Croatia
New Member

53 Posts

Posted - 04 July 2005 :  14:49:20  Show Profile  Visit Croatia's Homepage
like this!? and than compact agian?

Server.MapPath(../fpdb/Snitz_compacted.mdb")

sorry if i'm harass you, I don't know much about this.
Go to Top of Page

ruirib
Snitz Forums Admin

Portugal
26364 Posts

Posted - 04 July 2005 :  16:59:40  Show Profile  Send ruirib a Yahoo! Message
If that's similar to what you have in your conn string in config.asp, yes.


Snitz 3.4 Readme | Like the support? Support Snitz too
Go to Top of Page

Croatia
New Member

53 Posts

Posted - 04 July 2005 :  17:09:53  Show Profile  Visit Croatia's Homepage
i have this in config.asp
i would first know is it correct before comapacting again, DB is big 65mb and is not pleasant to upload again with 384/64 dsl.

'#################################################################################
'## SELECT YOUR DATABASE TYPE AND CONNECTION TYPE (access, sqlserver or mysql)
'#################################################################################
'strDBType = "sqlserver"
strDBType = "access"
'strDBType = "mysql"

'## Make sure to uncomment one of the strConnString lines and edit it so that it points to where your database is!
'strConnString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & Server.MapPath("snitz_forums_2000.mdb") '## MS Access 2000 using virtual path
'strConnString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & Server.MapPath("/USERNAME/db/snitz_forums_2000.mdb") '## MS Access 2000 on Brinkster
strConnString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Webspace\resadmin\kohorta\kohorta.net\www\fpdb\Kohorta_Online.mdb" '## MS Access 2000
'strConnString = "DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=" & Server.MapPath("snitz_forums_2000.mdb") '## MS Access 97 using virtual path
'strConnString = "DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=" & Server.MapPath("/USERNAME/db/snitz_forums_2000.mdb") '## MS Access 97 on Brinkster
'strConnString = "DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=C:\Webspace\resadmin\kohorta\kohorta.net\www\cgi-bin\forum\tools\Kohorta_Online.mdb" '## MS Access 97
'strConnString = "Provider=SQLOLEDB;Data Source=SERVER_NAME;database=DB_NAME;uid=UID;pwd=PWD;" '## MS SQL Server 6.x/7.x/2000 (OLEDB connection)
'strConnString = "driver={SQL Server};server=SERVER_NAME;uid=UID;pwd=PWD;database=DB_NAME" '## MS SQL Server 6.x/7.x/2000 (ODBC connection)
'strConnString = "driver=MySQL;server=SERVER_IP;uid=UID;pwd=PWD;database=DB_NAME" '## MySQL
'strConnString = "DSN_NAME" '## DSN

strTablePrefix = "FORUM_"
strMemberTablePrefix = "FORUM_"




Go to Top of Page

ruirib
Snitz Forums Admin

Portugal
26364 Posts

Posted - 04 July 2005 :  18:43:12  Show Profile  Send ruirib a Yahoo! Message
What Snitz version are you using? There should be no need for that with a 3.4.x version...


Snitz 3.4 Readme | Like the support? Support Snitz too
Go to Top of Page

Croatia
New Member

53 Posts

Posted - 05 July 2005 :  01:53:25  Show Profile  Visit Croatia's Homepage
3.4.02
how then, comapcting create Snitz_compacted.mdb in Tools folder and backup of original database in folder /fpdb, but forum doesn't work, I try to renamed Snitz_compacted.mdb in to original DB name, but forum then doesn't work, I must upload back original DB.

error is like this one:

quote:
Databasen är nu komprimerad. (The database is now compressed)
Microsoft VBScript runtime error '800a0035'

File not found

/forum/admin_compactdb.asp, line 141



Edited by - Croatia on 05 July 2005 04:23:30
Go to Top of Page
Page: of 2 Previous Topic Topic Next Topic  
Next Page
 New Topic  Topic Locked
 Printer Friendly
Jump To:
Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.8 seconds. Powered By: Snitz Forums 2000 Version 3.4.07