rails is ridiculously easy for this kind of application, sorry I'll try to read mor of this and post some pointers, but wiki.rubyonrails.org is amazing.
i've started the work. i've been fixing up me schema a lot, and i've got some of the basic functions of the site up and running locally. in a few days, i'll be ready to check the code into SVN o...
yeah. that's the most important part. make sure your relationships are good. Also you should look into "Single Table Inheritance" for example class Topic end class ForumThread 'my journa...
i definitely gotta do it that way! i do it like that in the current Java code now, to a certain degree. but if i clean up the schema a bit more, this could really shine.
you should be able to turn that into some Model classes pretty easily. at least with some of the relationships
Yeah. I've only made some of the models so far. Like, I've got the homepage working with news stories, and forums and threads all working. Comments come up in a basic layout (no threading yet). Login is (was) working. And Journals are working.
I haven't gone through and done much more than what the scaffolding provides for most parts, yet. Have to make the forms pretty, and fill in all the needed stuff on saves that shouldn't be entered by form.
I think my next step is to set up Migrations to make the db part easier.