I have had my site, TowTalk.net since Aug of 05. In that time, I have gained a working knowledge and can fix most small problems I run across. I cannot create new code in asp but can reason my way through to find problems in existing code. I gained this knowledge with the help of a community a lot like this one.
If I was moving my site to another ASP based community, I could probably figure out how to move the existing data to the new server (as long as it was MsSql 2000, that is) and maybe even write a rudimentary set of scripts to get it done.
My problem is this. I need to find a way to move 1800+ members and many many thousands of posts and other information into this new format and I have no idea where to begin. I have so little experience with PHP and mysql that I am afraid I will be relegated to moving each individual piece of information 1 piece at a time.
I am looking for a direction, or maybe even someone who has the skill to move that much stuff all at once between two completely different languages. Does anyone have any ideas on how I might get this done?
I have been watching here for months (actually, almost a year) and only recently made myself visible by joining. I like Boonex and I especially like Dolphin. The only drawback I have right now is I don't know my Cron job from my RMS server.
they deal with that would be to export your mssql file as tab delimited or CSV(comma separated), then you loaded the dbase tables from the dolphin install
you will need to match up your data from db1 to db2, what is not there, you would have to add the column to the dolphin database or eliminate that data. its a lot of physical work, but can be done.
Regards,
DosDawg
b)It ain't easy but it can be done, just not easily with Win applications and certainly can not be automated soon.
But I strongly believe that PHP is more efficient that ASP.
Just read through a basic PHP & MySQL tutorial, learn the syntax, learn basic string functions, learn how to get stuff out of and into a database, and then connect from PHP to your old database, scoop in the entries, and stick them into your new MySQL database in the order and format you want them to go in.
This is how see more