Jump to content

Tom

Members
  • Posts

    1517
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Tom

  1. Wouldn't be too keen on a direct connection to the database... Other than that looking good
  2. Tom

    Contact.tpl

    http://forum.phpvms.net/topic/1317-request-contact-form-mod/#entry8116
  3. Tom

    Forum Module

    Evidently there are many more features I wrote into my own forum that aren't in VAForum. This will be in there
  4. Tom

    Forum Module

    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?
  5. Tom

    Forum Module

    I thought it had quotes... either way it'll be in there 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.
  6. Tom

    VAForum 2

    Yep, will be in the next one! If you have any more suggestions could you post them here: http://forum.phpvms....ule/ - discussing rewriting it
  7. 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.
  8. Tom

    VAForum 2

    Does this editor output HTML or BBCode? If it's HTML it'll be stripped by the BBCode parser... (Allowing people to post whatever HTML they want is somewhat dangerous)
  9. Tom

    PilotShop - Preview

    Apparently Serbia was added to PayPal about 2 weeks ago. Reading through their terms and conditions Serbia appears in their lists of countries for both sending and receiving money. When was the last time you tried to use it? Perhaps worth another try now.
  10. The reason I rewrote VAForum to begin with was because exploits were found, so I would guess you'll want to fix that one up soon before people start using it phpVMS on it's own is quite secure. As an alternative you can always use SimpleNews: https://github.com/tomsterritt/SimpleNews
  11. Tom

    VAForum 2

    No you don't need to edit files you need to edit the database settings. Go into phpMyAdmin and change the charset on all the forum_ tables. And TAV1702 sorry I missed your post, best place to get me is on skype That's not a problem I've heard of before, and it's hard to work out why it would ever happen without seeing it. Add me on skype and we can talk it through
  12. It automatically scales based on the routes it's showing. If one of the routes doesn't fit in the smaller flat map then it'll display a globe.
  13. The idea sounds alright but unless you can get a lot of VAs on board it won't be massive. Also I wouldn't feel like it was worth a lot if you awarded them more than 1/2 times per year. It's more impressive if it's only once a year.
  14. Nice video, but I'd suggest a change in wording to "Come see for yourself" - "Come see yourself" would mean look in a mirror. Also the spelling of "difference"
  15. .me is quite a popular and cheap now. Plus TLDs don't often actually reflect where the owner is based anymore. It's just because it's short/convenient/cool looking... I use .tt but I've never been to Trinidad and Tobago in my life, let alone live there.
  16. Not with the automatic linking thing. If you just write the HTML yourself then sure.
  17. Tom

    VAForum 2

    Is it the first post in a topic? You need to delete the topic else it's trying to take you into a topic with no posts.
  18. If you visit the url in the screenshot you'll see it's working, so I think we can assume he got it fixed
  19. Sure it was the right one?
  20. Inside the content for that page you'll have a </div> missing which means the leftContent isn't closed.
  21. Your divs are closed incorrectly. On the example given rightcontent is inside leftcontent.
  22. Oh ok that's wrong. You have to do the header() before you output anything on the page... so move all your echos to after that.
  23. Just make everything inside the php: <?php include('/home/freshjet/public_html/core/codon.config.php'); echo '<title>Page title</title> <link href="styles.css" rel="stylesheet" type="text/css" />'; function logout(){ $ret = Auth::LogOut(); if($ret == true){ echo 'You are now logged out'; } } logout(); ?>
×
×
  • Create New...