[quote=Commander] Is it possible to have the ability to edit older posts? For example in a PM role play I'm in (less than 30 days old) I wanted to go in and copy some IMG code but I have no ability to edit that post, and thus get in to get the code. I always thought we had the ability to edit older posts. Thank you. [/quote] Can't you "View Raw" on old posts to at least see the old QQCode? At the very least, you can right-click images and select "Copy image URL" or something. [quote=yoshua171] Mahz, I tried to edit a post today and it won't let me. It says it's saving and then never actually finishes editing the post. Also, what is the current character count for a given post? [/quote] Hmm, thought I had edit-legacy-posts working as a feature. Maybe it's a permissions error that I didn't realize since I'm usually an admin while testing. I'll revisit the code. I work during the week so I generally don't have energy to work on code til the weekends though. Post/PM max character length is currently 65,536 chars (2[sup]16[/sup]). I need to add a counter to the editor to express this. Added an issue: [url]https://github.com/danneu/guild/issues/23[/url] - Thanks. [quote=Alamantus] I have background in web development. My biggest problem is jumping into an already-huge project and my newness at Github and pull requests... I don't even know where to start or how to really help effectively. Plus, I don't really have a way to test the database stuff myself, so that makes it harder, too... But I'll probably dip my toe into the code and maybe eventually I'll feel comfortable enough to help with some of the bugs/features. [/quote] Yeah, I need to write a quick-start overview to the codebase. I also need to update the README with better instructions on getting it setup. Anyone can add me on Skype via "dan_neu" if they need help getting up and running. When you add me as a contact, just let me know you're from the guild and what your username is since I get a lot of bot spam. - All the server routes/URLs are defined in one massive file: [url=https://github.com/danneu/guild/blob/master/server/index.js]server/index.js[/url]. I think the best way to figure out how the guild works is to look at the URL in the browser and see which route it matches in that file. From there you'll see which database query is being executed and which view is being rendered. - All the HTML templates are in the [url=https://github.com/danneu/guild/tree/master/views]views directory[/url]. - All the SQL queries are in [url=https://github.com/danneu/guild/blob/master/server/db.js]server/db.js[/url]. I will begin writing top-level comments in the files to describe what they're for. That's pretty much the basis of how things work. All the other files offer supporting functionality.