Tom Posted May 6, 2013 Report Share Posted May 6, 2013 I've been saying for quite some time (probably almost 2 years) in the VAForum thread that it needs rewriting and that I'll do it soon, so I had better make a start. I'm posting here to get an idea of what features people expect to see in a Forum module; what would make it worth using over an external forum such as phpBB etc. My thoughts so far are based on being an update of the current VAForum: Admin in the phpVMS admin section Permissions by pilot group Board categories, visibility set by pilot group Editable signature fields Per-user timezone for post time display Use of a WYSIWYG editor Codes to display useful things (latest posts) elsewhere on the site Indication of new posts/threads (possibly not enabled as default, potentially resource intensive) So does anyone have any suggestions to add on to that? I'll be making a start soon. 3 Quote Link to comment Share on other sites More sharing options...
freshJet Posted May 6, 2013 Report Share Posted May 6, 2013 Awesome, look forward to it Quote Link to comment Share on other sites More sharing options...
International0001 Posted May 8, 2013 Report Share Posted May 8, 2013 I would definitely use this module for my va. I have one suggestion; possibly have the option to have a calendar within the module that uses Simpilot's event add-on to show events for the va. Somewhat like the birthday calendar on phpBB. Quote Link to comment Share on other sites More sharing options...
Moderators Kyle Posted May 8, 2013 Moderators Report Share Posted May 8, 2013 Possibility of a Report Topic/Post System? 1 Quote Link to comment Share on other sites More sharing options...
Moderators servetas Posted May 8, 2013 Moderators Report Share Posted May 8, 2013 Also, you can create a system which will tranfer the posts and the topics from other forums such as SMF, phpBB, etc. Quote Link to comment Share on other sites More sharing options...
freshJet Posted May 8, 2013 Report Share Posted May 8, 2013 Quotes would be nice too... 1 Quote Link to comment Share on other sites More sharing options...
Tom Posted May 8, 2013 Author Report Share Posted May 8, 2013 Quotes would be nice too... I thought it had quotes... either way it'll be in there Also, you can create a system which will tranfer the posts and the topics from other forums such as SMF, phpBB, etc. I may be able to do it but it'll be done after the release, it'll require a script for each type to convert tables. 1 Quote Link to comment Share on other sites More sharing options...
TAV1702 Posted May 8, 2013 Report Share Posted May 8, 2013 The need to move posts accordingly ( category to category). Now the way it is, I think something is not right with trying to move posts. It won't allow to choose another category. 1 Quote Link to comment Share on other sites More sharing options...
freshJet Posted May 8, 2013 Report Share Posted May 8, 2013 WYSIWYG and quotes are my two biggies 1 Quote Link to comment Share on other sites More sharing options...
Tom Posted May 8, 2013 Author Report Share Posted May 8, 2013 The need to move posts accordingly ( category to category). Now the way it is, I think something is not right with trying to move posts. It won't allow to choose another category. I think the way I'll end up writing it is that you can move or archive threads, and only archive individual posts. Archive essentially being delete, but the data is retained in the database for records, just not visible. Does that work for you? Quote Link to comment Share on other sites More sharing options...
freshJet Posted May 9, 2013 Report Share Posted May 9, 2013 Pinned threads would be nice! That was my original thought, couldn't remember it though. Not too hard to do actually, could do it myself. 1 Quote Link to comment Share on other sites More sharing options...
Tom Posted May 9, 2013 Author Report Share Posted May 9, 2013 Pinned threads would be nice! That was my original thought, couldn't remember it though. Not too hard to do actually, could do it myself. Evidently there are many more features I wrote into my own forum that aren't in VAForum. This will be in there 1 Quote Link to comment Share on other sites More sharing options...
HighFlyerPL185 Posted May 11, 2013 Report Share Posted May 11, 2013 Maybe a possibility of creating redirecting links? A feature similar is available in SMF, where you create a board with a redirect link. Quote Link to comment Share on other sites More sharing options...
TAV1702 Posted May 18, 2013 Report Share Posted May 18, 2013 I think the way I'll end up writing it is that you can move or archive threads, and only archive individual posts. Archive essentially being delete, but the data is retained in the database for records, just not visible. Does that work for you? Yeah actually that would work out. The move part is a concern. I have had folks posting in the wrong places and it gets a forum out of shape real fast. Quote Link to comment Share on other sites More sharing options...
CedGauche Posted April 8, 2014 Report Share Posted April 8, 2014 Hey Tom, is this project still alive? I am very interested in an update. The indication for new posts would be a nice feature... Quote Link to comment Share on other sites More sharing options...
Tom Posted April 9, 2014 Author Report Share Posted April 9, 2014 I made a start but there's not been any progress on this in a long time. I might continue it this summer. Quote Link to comment Share on other sites More sharing options...
CedGauche Posted July 25, 2014 Report Share Posted July 25, 2014 Are there any news Tom? Hope there is some progress . Quote Link to comment Share on other sites More sharing options...
Tom Posted July 25, 2014 Author Report Share Posted July 25, 2014 No progress since my last post. Will possibly pick this up again if there's still interest. I've added a poll to the first post, please answer if you would be interested in this forum and would require data import from another forum. If you select "Other" please specify in a post, otherwise the import you need won't be built for ages. 1 Quote Link to comment Share on other sites More sharing options...
CedGauche Posted July 25, 2014 Report Share Posted July 25, 2014 Okay no problem Tom, thx for reply:) I have modded and build some new code to your Version 2 of VA-Forum, it shows the 10 newest Post and Threads in the Forum Index. If it's okay I can post the code here to give you some developing support Quote Link to comment Share on other sites More sharing options...
freshJet Posted July 25, 2014 Report Share Posted July 25, 2014 I have a moderately heavily modified version of VAForum, from layout through. Is this going to be a complete rebuild? Quote Link to comment Share on other sites More sharing options...
Tom Posted July 25, 2014 Author Report Share Posted July 25, 2014 Okay no problem Tom, thx for reply:) I have modded and build some new code to your Version 2 of VA-Forum, it shows the 10 newest Post and Threads in the Forum Index. If it's okay I can post the code here to give you some developing support I have a moderately heavily modified version of VAForum, from layout through. Is this going to be a complete rebuild? If the database structure hasn't changed then it should be alright. Yes this will be completely different. Quote Link to comment Share on other sites More sharing options...
CedGauche Posted July 26, 2014 Report Share Posted July 26, 2014 This is my code to add a table under the forum, it shows the 10 newest posts sorted by date. You have to add it in forum_index.tpl at the bottom <tbody><?php $query="SELECT DATE_FORMAT (topic_dateupdated, '%d.%m.%Y at %H:%i:%s') AS date, topic_title, firstname, lastname, id, topic_forumid FROM forum_topics left join phpvms_pilots on forum_topics.topic_updatedby=phpvms_pilots.pilotid group by topic_title order by topic_dateupdated desc limit 10 "; $list=DB::get_results($query); foreach ($list as $flight) { echo '<tr><td width="10%"><left>'.$flight->date.'</td><td><a href="'.SITE_URL.'/index.php/Forum/get_topic_posts?id='.$flight->id.'&forum_id='.$flight->topic_forumid.'" > '.$flight->topic_title.'</a> </td><td><center>'.$flight->firstname.' '.$flight->lastname.'</td></tr>'; } echo '</table>' ?> Quote Link to comment Share on other sites More sharing options...
mseiwald Posted July 26, 2014 Report Share Posted July 26, 2014 Hi Cedric, you might want to change the "um" in the DATE_FORMAT guess most VAs here dont want it in german haha Quote Link to comment Share on other sites More sharing options...
CedGauche Posted July 26, 2014 Report Share Posted July 26, 2014 Hi, you're right , thx. I've edited the code Quote Link to comment Share on other sites More sharing options...
Toyuko Posted July 27, 2014 Report Share Posted July 27, 2014 JALV is certainly interested in this development. Keep us posted! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.