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 / Classic ASP versions(v3.4.XX)
 phpBB2 --> Snitz
 New Topic  Topic Locked
 Printer Friendly
Author Previous Topic Topic Next Topic  

jrountree
Starting Member

20 Posts

Posted - 15 May 2003 :  15:43:28  Show Profile
I want to convert a phpBB2 to Snitz...
please someone help, i'm begging!

Edited by - ruirib on 04 July 2003 14:09:43

OneWayMule
Dev. Team Member & Support Moderator

Austria
4969 Posts

Posted - 15 May 2003 :  19:04:46  Show Profile  Visit OneWayMule's Homepage  Send OneWayMule an ICQ Message
There's currently no phpBB2 to Snitz conversion script that I know of, sorry.

My MODs:
Birthdays - Custom Policy - F.A.Q. Administration - Forum Rules - Guestbook
Links Manager - MyOwnGoogle - Profile Views - Search Log - WebSearch

Useful stuff:
Forum and MOD Installation - MOD Installation Guide - Snitz v3.4.05 Readme - Free ASP Hosts - Support Snitz
Go to Top of Page

Steve D.
Average Member

USA
640 Posts

Posted - 15 May 2003 :  23:53:23  Show Profile  Visit Steve D.'s Homepage  Send Steve D. a Yahoo! Message
There are scripts that go the other way I noticed on phpbb's forum. You might want to download one and try to reverse it.

Swing Dancing Video Clips - It's All Swing! Forum
Go to Top of Page

surfsteve
New Member

90 Posts

Posted - 21 May 2003 :  12:08:38  Show Profile
I would love to be able to convert my PHPBB forum over to Snitz. Who in their right mind would want to go the other way? Please email me if anyone reads this thread in the future and comes across an easy way to do this.

If there were some way to get all the member names and passwords from PHPBB and automaticaly register everyone to the new snitz forum that would be just about as good and probably a hell of a lot easier.

Edited by - surfsteve on 21 May 2003 12:21:07
Go to Top of Page

jrountree
Starting Member

20 Posts

Posted - 29 May 2003 :  12:24:43  Show Profile
yes, I hope we can find something - I got a guy wanting to do it!
Go to Top of Page

snaayk
Senior Member

USA
1061 Posts

Posted - 29 May 2003 :  15:05:16  Show Profile  Visit snaayk's Homepage  Send snaayk an AOL message  Send snaayk an ICQ Message  Send snaayk a Yahoo! Message
does phpbb use a database backend or a flat file?
Go to Top of Page

Classicmotorcycling
Development Team Leader

Australia
2085 Posts

Posted - 29 May 2003 :  17:02:47  Show Profile
The ones I have played with have been DB back-end.
quote:
Originally posted by snaayk

does phpbb use a database backend or a flat file?

It depends on the DB you are asking about as well. I have had it running under both MySQL and Access 2000.

Cheers,

David Greening
Go to Top of Page

snaayk
Senior Member

USA
1061 Posts

Posted - 29 May 2003 :  23:15:12  Show Profile  Visit snaayk's Homepage  Send snaayk an AOL message  Send snaayk an ICQ Message  Send snaayk a Yahoo! Message
In that case, if the data is similat to Snitz's it should not be too diffulcult. Then again, it depends on their schema.

Not that I'm volunteering, just noting :)]
Go to Top of Page

subliminalmuzik
Starting Member

9 Posts

Posted - 04 July 2003 :  08:40:53  Show Profile  Visit subliminalmuzik's Homepage
im in desperate need of help..
i have a snitz forum on online but on my old server which wirks but i had to mave servers due to bandwidth problems...
now i'm stuck with a blasted php bb forum noone likes and my server hasn't got asp installed on it...
if anyone comes accross a way of my forum displaying without active server pages it would be most appriciated as my whole site is lost with the whack forum we got at the mo
www.subliminalmuzik.com but www.subliminalmuzik.com/forum/default.asp won't have it.. no asp bollox

Dizzy@dnbstreet.co.uk
Go to Top of Page

Nikkol
Forum Moderator

USA
6907 Posts

Posted - 04 July 2003 :  08:44:50  Show Profile
Snitz forums cannot be run without ASP.

Nikkol ~ Help Us Help You | ReadMe | 3.4.03 fixes | security fixes ~
Go to Top of Page

jrountree
Starting Member

20 Posts

Posted - 07 July 2003 :  22:41:04  Show Profile
phpBB2 does not use the ID schemes that Snitz uses which is why it is so difficult.

For instance, the REPLY_ID and such referring to other tables is not done with phpBB2.
phpBB2 has one table for all of it's posts and the database is much more compressed.

Snitz is a much more intense application than phpBB2.
You would think it would be the other way around.
Go to Top of Page

Doug G
Support Moderator

USA
6493 Posts

Posted - 08 July 2003 :  00:30:07  Show Profile
quote:
Originally posted by jrountree

phpBB2 does not use the ID schemes that Snitz uses which is why it is so difficult.

For instance, the REPLY_ID and such referring to other tables is not done with phpBB2.
phpBB2 has one table for all of it's posts and the database is much more compressed.

Snitz is a much more intense application than phpBB2.
You would think it would be the other way around.


The phpBB board I set up on MySQL uses id's in every table, and there are a lot more tables than snitz. All in all phpbb has a quite comprehensive database schema. There are 28 tables in my database.

======
Doug G
======
Computer history and help at www.dougscode.com
Go to Top of Page

ASP.Confused
Starting Member

16 Posts

Posted - 17 June 2004 :  09:09:25  Show Profile
Hey...in case anyone still wants to do the conversion, here is the T-SQL commands for migrating *only* user names. I'm still working on migrating the entire user structure, but there's issues with column types, and that's the reason why I'm not releasing that script.

Here's the commands to be executed. First, clear out the snitz user table (ALSO MAKE SURE TO BACK UP YOUR ADMINISTRATOR ACCOUNT, OR AT LEAST THE PASSWORD OUT OF THE M_PASSWORD FIELD, OR YOU WILL NOT BE ABLE TO ADMINISTER IT!!!) Edit the code so that it fits your specific needs. When you are finished, find your account within the snitz user table (the migrated account), and paste your password back into the M_PASSWORD field. Then, there should be a field for what type of user you are. By default, it is set to 1. It will need to be changed to 3, to give you administrative privledges.


SET IDENTITY_INSERT forum_members ON;
INSERT INTO FORUM_MEMBERS(MEMBER_ID, M_STATUS, M_NAME, M_USERNAME) SELECT user_id AS member_id, user_active AS m_status, CONVERT(nvarchar(256), username) AS m_name, CONVERT(nvarchar(256), username) AS m_username FROM phpbb_users ORDER BY user_id DESC;
Go to Top of Page
  Previous Topic Topic Next Topic  
 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.43 seconds. Powered By: Snitz Forums 2000 Version 3.4.07